| /netbsd-src/external/gpl3/gcc.old/dist/gcc/d/dmd/ |
| H A D | optimize.c | 24 Expression *semantic(Expression *e, Scope *sc); 35 Expression *e = NULL; in expandVar() local 37 return e; in expandVar() 45 return e; in expandVar() 119 e = ei->copy(); in expandVar() 126 if (e->type != v->type) in expandVar() 128 e = e->castTo(NULL, v->type); in expandVar() 131 e = e->optimize(result); in expandVar() 137 return e; in expandVar() 148 Expression *e = e1; in fromConstInitializer() local [all …]
|
| H A D | apply.c | 36 bool doCond(Expression *e) in doCond() argument 38 if (!stop && e) in doCond() 39 e->accept(this); in doCond() 42 bool doCond(Expressions *e) in doCond() argument 44 if (!e) in doCond() 46 for (size_t i = 0; i < e->dim && !stop; i++) in doCond() 47 doCond((*e)[i]); in doCond() 50 bool applyTo(Expression *e) in applyTo() argument 52 e->accept(v); in applyTo() 57 void visit(Expression *e) in visit() argument [all …]
|
| /netbsd-src/external/bsd/unbound/dist/testdata/ |
| H A D | test_packets.4 | 4 2e 15 85 00 00 01 00 01 00 03 00 05 09 6e 6c 6e 65 74 6c 61 ; 1- 20 5 62 73 02 6e 6c 00 00 01 00 01 09 6e 6c 6e 65 74 6c 61 62 73 ; 21- 40 6 02 6e 6c 00 00 01 00 01 00 01 51 80 00 04 d5 9a e0 01 09 6e ; 41- 60 7 6c 6e 65 74 6c 61 62 73 02 6e 6c 00 00 02 00 01 00 01 51 80 ; 61- 80 8 00 18 03 6e 73 37 0f 64 6f 6d 61 69 6e 2d 72 65 67 69 73 74 ; 81- 100 9 72 79 02 6e 6c 00 09 6e 6c 6e 65 74 6c 61 62 73 02 6e 6c 00 ; 101- 120 10 00 02 00 01 00 01 51 80 00 13 04 6f 70 65 6e 09 6e 6c 6e 65 ; 121- 140 11 74 6c 61 62 73 02 6e 6c 00 09 6e 6c 6e 65 74 6c 61 62 73 02 ; 141- 160 12 6e 6c 00 00 02 00 01 00 01 51 80 00 11 05 6f 6d 76 61 6c 06 ; 161- 180 13 74 65 64 6e 65 74 02 6e 6c 00 04 6f 70 65 6e 09 6e 6c 6e 65 ; 181- 200 [all …]
|
| /netbsd-src/external/bsd/libarchive/dist/libarchive/test/ |
| H A D | test_write_format_tar_ustar.c | 53 char *buff, *e; in DEFINE_TEST() local 207 e = buff; in DEFINE_TEST() 210 myAssertEqualMem(e + 0, "file", 5); /* Filename */ in DEFINE_TEST() 211 myAssertEqualMem(e + 100, "000664 ", 8); /* mode */ in DEFINE_TEST() 212 myAssertEqualMem(e + 108, "000120 ", 8); /* uid */ in DEFINE_TEST() 213 myAssertEqualMem(e + 116, "000132 ", 8); /* gid */ in DEFINE_TEST() 214 myAssertEqualMem(e + 124, "00000000012 ", 12); /* size */ in DEFINE_TEST() 215 myAssertEqualMem(e + 136, "00000000001 ", 12); /* mtime */ in DEFINE_TEST() 216 myAssertEqualMem(e + 148, "010034\0 ", 8); /* checksum */ in DEFINE_TEST() 217 myAssertEqualMem(e + 156, "0", 1); /* linkflag */ in DEFINE_TEST() [all …]
|
| H A D | test_write_format_cpio_newc.c | 53 char *buff, *e, *file; in DEFINE_TEST() local 117 e = buff; in DEFINE_TEST() 120 file = e; in DEFINE_TEST() 121 assert(is_hex(e, 110)); /* Entire header is hex digits. */ in DEFINE_TEST() 122 assertEqualMem(e + 0, "070701", 6); /* Magic */ in DEFINE_TEST() 123 assert(memcmp(e + 6, "00000000", 8) != 0); /* ino != 0 */ in DEFINE_TEST() 124 assertEqualMem(e + 14, "000081b4", 8); /* Mode */ in DEFINE_TEST() 125 assertEqualMem(e + 22, "00000050", 8); /* uid */ in DEFINE_TEST() 126 assertEqualMem(e + 30, "0000005a", 8); /* gid */ in DEFINE_TEST() 127 assertEqualMem(e + 38, "00000001", 8); /* nlink */ in DEFINE_TEST() [all …]
|
| H A D | test_write_format_cpio_odc.c | 47 char *buff, *e, *file; in DEFINE_TEST() local 143 e = buff; in DEFINE_TEST() 146 file = e; /* Remember where this starts... */ in DEFINE_TEST() 147 assert(is_octal(e, 76)); /* Entire header is octal digits. */ in DEFINE_TEST() 148 assertEqualMem(e + 0, "070707", 6); /* Magic */ in DEFINE_TEST() 149 assertEqualMem(e + 6, "000014", 6); /* dev */ in DEFINE_TEST() 150 assert(memcmp(e + 12, "000000", 6) != 0); /* ino must be != 0 */ in DEFINE_TEST() 151 assertEqualMem(e + 18, "100664", 6); /* Mode */ in DEFINE_TEST() 152 assertEqualMem(e + 24, "000120", 6); /* uid */ in DEFINE_TEST() 153 assertEqualMem(e + 30, "000132", 6); /* gid */ in DEFINE_TEST() [all …]
|
| /netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/ |
| H A D | optimize.d | 51 Expression initializerReturn(Expression e) in expandVar() 53 if (e.type != v.type) in expandVar() 55 e = e.castTo(null, v.type); in expandVar() 58 e = e.optimize(result); in expandVar() 61 return e; in expandVar() 167 auto e = v.type.defaultInit(); in expandVar() local 168 e.loc = e1.loc; in expandVar() 169 return initializerReturn(e); in expandVar() 182 Expression e = e1; in fromConstInitializer() local 186 e = expandVar(result, v); in fromConstInitializer() [all …]
|
| H A D | printast.d | 27 void printAST(Expression e, int indent = 0) 30 e.accept(pav); 46 override void visit(Expression e) in visit() argument 49 auto s = EXPtoString(e.op); in visit() 50 printf("%.*s %s\n", cast(int)s.length, s.ptr, e.type ? e.type.toChars() : ""); in visit() 53 override void visit(IntegerExp e) in visit() argument 56 printf("Integer %lld %s\n", e.toInteger(), e.type ? e.type.toChars() : ""); in visit() 59 override void visit(RealExp e) in visit() argument 66 floatToBuffer(e.type, e.value, &buf, false); in visit() 67 printf("Real %s %s\n", buf.peekChars(), e.type ? e.type.toChars() : ""); in visit() [all …]
|
| H A D | apply.d | 21 bool walkPostorder(Expression e, StoppableVisitor v) in walkPostorder() argument 24 e.accept(pv); in walkPostorder() 82 bool doCond(Expression e) in doCond() argument 84 if (!stop && e) in doCond() 85 e.accept(this); in doCond() 89 bool doCond(Expressions* e) in doCond() argument 91 if (!e) in doCond() 93 for (size_t i = 0; i < e.dim && !stop; i++) in doCond() 94 doCond((*e)[i]); in doCond() 98 bool applyTo(Expression e) in applyTo() argument [all …]
|
| /netbsd-src/sys/dev/pci/cxgb/ |
| H A D | cxgb_l2t.c | 75 vlan_prio(const struct l2t_entry *e) in vlan_prio() argument 77 return e->vlan >> 13; in vlan_prio() 87 neigh_replace(struct l2t_entry *e, struct rtentry *rt) in neigh_replace() argument 93 if (e->neigh) { in neigh_replace() 94 RT_LOCK(e->neigh); in neigh_replace() 95 RT_REMREF(e->neigh); in neigh_replace() 96 RT_UNLOCK(e->neigh); in neigh_replace() 98 e->neigh = rt; in neigh_replace() 108 struct l2t_entry *e) in setup_l2e_send_pending() argument 121 OPCODE_TID(req) = htonl(MK_OPCODE_TID(CPL_L2T_WRITE_REQ, e->idx)); in setup_l2e_send_pending() [all …]
|
| /netbsd-src/crypto/external/bsd/heimdal/dist/doc/doxyout/wind/html/ |
| H A D | jquery.js | 2 …e,t){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=e.docume… argument 8 …e(t){for(var e=t.css("visibility");"inherit"===e;)t=t.parent(),e=t.css("visibility");return"hidden… argument
|
| /netbsd-src/crypto/external/bsd/heimdal/dist/doc/doxyout/hdb/html/ |
| H A D | jquery.js | 2 …e,t){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=e.docume… argument 8 …e(t){for(var e=t.css("visibility");"inherit"===e;)t=t.parent(),e=t.css("visibility");return"hidden… argument
|
| /netbsd-src/crypto/external/bsd/heimdal/dist/doc/doxyout/gssapi/html/ |
| H A D | jquery.js | 2 …e,t){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=e.docume… argument 8 …e(t){for(var e=t.css("visibility");"inherit"===e;)t=t.parent(),e=t.css("visibility");return"hidden… argument
|
| /netbsd-src/crypto/external/bsd/heimdal/dist/doc/doxyout/ntlm/html/ |
| H A D | jquery.js | 2 …e,t){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=e.docume… argument 8 …e(t){for(var e=t.css("visibility");"inherit"===e;)t=t.parent(),e=t.css("visibility");return"hidden… argument
|
| /netbsd-src/crypto/external/bsd/heimdal/dist/doc/doxyout/krb5/html/ |
| H A D | jquery.js | 2 …e,t){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=e.docume… argument 8 …e(t){for(var e=t.css("visibility");"inherit"===e;)t=t.parent(),e=t.css("visibility");return"hidden… argument
|
| /netbsd-src/crypto/external/bsd/heimdal/dist/doc/doxyout/hx509/html/ |
| H A D | jquery.js | 2 …e,t){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=e.docume… argument 8 …e(t){for(var e=t.css("visibility");"inherit"===e;)t=t.parent(),e=t.css("visibility");return"hidden… argument
|
| /netbsd-src/crypto/external/bsd/heimdal/dist/doc/doxyout/hcrypto/html/ |
| H A D | jquery.js | 2 …e,t){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=e.docume… argument 8 …e(t){for(var e=t.css("visibility");"inherit"===e;)t=t.parent(),e=t.css("visibility");return"hidden… argument
|
| /netbsd-src/crypto/external/bsd/heimdal/dist/doc/doxyout/base/html/ |
| H A D | jquery.js | 2 …e,t){"use strict";"object"==typeof module&&"object"==typeof module.exports?module.exports=e.docume… argument 8 …e(t){for(var e=t.css("visibility");"inherit"===e;)t=t.parent(),e=t.css("visibility");return"hidden… argument
|
| /netbsd-src/lib/libc/gdtoa/test/ |
| H A D | testnos3 | 4 9e0306 7fa9a202 8368022e 5 4e-079 2fa7b6d7 1d20b96c 6 7e-261 9eb8d7e 32be6396 7 6e-025 3ae7361c b863de62 8 7e-161 1eaf7e0d b3799aa3 12 7e-303 1333391 31c46f8b 16 7e-141 22d5570f 59bd178c 17 4e-192 18323ff0 6eea847a 20 95e-089 2dde3cbc 9907fdc8 23 97e-019 3c665dde 8e688ba6 [all …]
|
| H A D | dd.out | 5 dd[1] = 1.7763568394002496e-17 = #3c747ae1 47ae1478 10 = 1.23 + 1.7763568394002496e-17 12 = 1.23 + 1.776356839400252e-17 16 Input: 1.23e+20 18 dd[0] = 1.23e+20 = #441aabdf 2145b430 20 g_ddfmt(0) gives 8 bytes: "1.23e+20" 26 Input: 1.23e-20 28 dd[0] = 1.2299999999999999e-20 = #3bcd0ae4 cf767530 29 dd[1] = 9.304023318521521e-37 = #3873c997 955b2691 30 g_ddfmt(0) gives 8 bytes: "1.23e-20" [all …]
|
| H A D | ddsi.out | 5 dd[1] = 1.7763568394002496e-17 = #3c747ae1 47ae1478 10 = 1.23 + 1.7763568394002496e-17 12 = 1.23 + 1.776356839400252e-17 16 Input: 1.23e+20 18 dd[0] = 1.23e+20 = #441aabdf 2145b430 20 g_ddfmt(0) gives 8 bytes: "1.23e+20" 26 Input: 1.23e-20 28 dd[0] = 1.2299999999999999e-20 = #3bcd0ae4 cf767530 29 dd[1] = 9.304023318521521e-37 = #3873c997 955b2691 30 g_ddfmt(0) gives 8 bytes: "1.23e-20" [all …]
|
| /netbsd-src/external/lgpl3/mpfr/dist/tests/ |
| H A D | tget_str.c | 30 mpfr_exp_t e; in check3() local 34 str = mpfr_get_str (NULL, &e, 10, 5, x, rnd); in check3() 50 mpfr_exp_t e; in check_small() local 58 s = mpfr_get_str (NULL, &e, 4, 2, x, MPFR_RNDU); in check_small() 59 if (strcmp (s, "20") || (e != 1)) in check_small() 70 s = mpfr_get_str (NULL, &e, 3, 0, x, MPFR_RNDN); in check_small() 72 s = mpfr_get_str (NULL, &e, 36, 0, x, MPFR_RNDN); in check_small() 74 s = mpfr_get_str (NULL, &e, 62, 0, x, MPFR_RNDN); in check_small() 82 s = mpfr_get_str (NULL, &e, 3, 21, x, MPFR_RNDU); in check_small() 83 if (strcmp (s, "102002022201221111211") || (e != 21)) in check_small() [all …]
|
| /netbsd-src/crypto/external/bsd/openssl.old/dist/crypto/engine/ |
| H A D | eng_lib.c | 52 void engine_set_all_null(ENGINE *e) in engine_set_all_null() argument 54 e->id = NULL; in engine_set_all_null() 55 e->name = NULL; in engine_set_all_null() 56 e->rsa_meth = NULL; in engine_set_all_null() 57 e->dsa_meth = NULL; in engine_set_all_null() 58 e->dh_meth = NULL; in engine_set_all_null() 59 e->rand_meth = NULL; in engine_set_all_null() 60 e->ciphers = NULL; in engine_set_all_null() 61 e->digests = NULL; in engine_set_all_null() 62 e->destroy = NULL; in engine_set_all_null() [all …]
|
| /netbsd-src/crypto/external/bsd/openssl/dist/crypto/engine/ |
| H A D | eng_lib.c | 50 void engine_set_all_null(ENGINE *e) in engine_set_all_null() argument 52 e->id = NULL; in engine_set_all_null() 53 e->name = NULL; in engine_set_all_null() 54 e->rsa_meth = NULL; in engine_set_all_null() 55 e->dsa_meth = NULL; in engine_set_all_null() 56 e->dh_meth = NULL; in engine_set_all_null() 57 e->rand_meth = NULL; in engine_set_all_null() 58 e->ciphers = NULL; in engine_set_all_null() 59 e->digests = NULL; in engine_set_all_null() 60 e->destroy = NULL; in engine_set_all_null() [all …]
|
| /netbsd-src/crypto/external/bsd/openssl.old/dist/include/openssl/ |
| H A D | engine.h | 314 ENGINE *ENGINE_get_next(ENGINE *e); 315 ENGINE *ENGINE_get_prev(ENGINE *e); 317 int ENGINE_add(ENGINE *e); 319 int ENGINE_remove(ENGINE *e); 358 int ENGINE_register_RSA(ENGINE *e); 359 void ENGINE_unregister_RSA(ENGINE *e); 362 int ENGINE_register_DSA(ENGINE *e); 363 void ENGINE_unregister_DSA(ENGINE *e); 366 int ENGINE_register_EC(ENGINE *e); 367 void ENGINE_unregister_EC(ENGINE *e); [all …]
|