| /NextBSD/contrib/netbsd-tests/crypto/opencrypto/ |
| HD | h_aesctr2.c | 54 struct crypt_op co; in main() local 71 memset(&co, 0, sizeof(co)); in main() 72 co.ses = cs.ses; in main() 73 co.op = COP_ENCRYPT; in main() 74 co.len = sizeof(ibuf); in main() 75 co.src = ibuf; in main() 76 co.dst = obuf; in main() 77 co.dst_len = sizeof(obuf); in main() 78 res = ioctl(fd, CIOCCRYPT, &co); in main() 82 memset(&co, 0, sizeof(co)); in main() [all …]
|
| HD | h_gcm.c | 56 struct crypt_op co; in main() local 75 memset(&co, 0, sizeof(co)); in main() 78 co.ses = cs.ses; in main() 79 co.op = COP_ENCRYPT; in main() 80 co.len = sizeof(plaintx); in main() 81 co.src = plaintx; in main() 82 co.dst = databuf; in main() 83 co.mac = macbuf; in main() 84 co.iv = iv; in main() 85 res = ioctl(fd, CIOCCRYPT, &co); in main() [all …]
|
| HD | h_camellia.c | 57 struct crypt_op co; in main() local 71 memset(&co, 0, sizeof(co)); in main() 72 co.ses = cs.ses; in main() 73 co.op = COP_ENCRYPT; in main() 74 co.len = sizeof(plaintx); in main() 75 co.src = plaintx; in main() 76 co.dst = buf; in main() 77 co.dst_len = sizeof(buf); in main() 78 co.iv = iv; in main() 79 res = ioctl(fd, CIOCCRYPT, &co); in main() [all …]
|
| HD | h_cbcdes.c | 52 struct crypt_op co; in main() local 66 memset(&co, 0, sizeof(co)); in main() 67 co.ses = cs.ses; in main() 68 co.op = COP_ENCRYPT; in main() 69 co.len = sizeof(plaintx); in main() 70 co.src = plaintx; in main() 71 co.dst = buf; in main() 72 co.dst_len = sizeof(buf); in main() 73 co.iv = iv; in main() 74 res = ioctl(fd, CIOCCRYPT, &co); in main() [all …]
|
| HD | h_null.c | 47 struct crypt_op co; in main() local 61 memset(&co, 0, sizeof(co)); in main() 62 co.ses = cs.ses; in main() 63 co.op = COP_ENCRYPT; in main() 64 co.len = sizeof(plaintx); in main() 65 co.src = plaintx; in main() 66 co.dst = buf; in main() 67 co.dst_len = sizeof(buf); in main() 68 res = ioctl(fd, CIOCCRYPT, &co); in main() 72 if (memcmp(co.dst, plaintx, sizeof(plaintx))) in main()
|
| HD | h_arc4.c | 51 struct crypt_op co; in main() local 65 memset(&co, 0, sizeof(co)); in main() 66 co.ses = cs.ses; in main() 67 co.op = COP_ENCRYPT; in main() 68 co.len = sizeof(plaintx); in main() 69 co.src = plaintx; in main() 70 co.dst = buf; in main() 71 co.dst_len = sizeof(buf); in main() 72 res = ioctl(fd, CIOCCRYPT, &co); in main() 76 if (memcmp(co.dst, ciphertx, sizeof(ciphertx))) in main()
|
| HD | h_aesctr1.c | 212 struct crypt_op co; in main() local 227 memset(&co, 0, sizeof(co)); in main() 228 co.ses = cs.ses; in main() 229 co.op = COP_ENCRYPT; in main() 230 co.len = tests[i].len; in main() 231 co.src = __UNCONST(&tests[i].plaintx); in main() 232 co.dst = buf; in main() 233 co.dst_len = sizeof(buf); in main() 234 co.iv = __UNCONST(&tests[i].iv); in main() 235 res = ioctl(fd, CIOCCRYPT, &co); in main() [all …]
|
| HD | h_md5.c | 76 struct crypt_op co; in main() local 90 memset(&co, 0, sizeof(co)); in main() 92 co.ses = cs.ses; in main() 93 co.op = COP_ENCRYPT; in main() 94 co.len = tests[i].len; in main() 95 co.src = __UNCONST(&tests[i].plaintx); in main() 96 co.mac = buf; in main() 97 res = ioctl(fd, CIOCCRYPT, &co); in main() 101 if (memcmp(co.mac, tests[i].digest, sizeof(tests[i].digest))) in main()
|
| HD | h_md5hmac.c | 144 struct crypt_op co; in main() local 162 memset(&co, 0, sizeof(co)); in main() 164 co.ses = cs.ses; in main() 165 co.op = COP_ENCRYPT; in main() 166 co.len = tests[i].len; in main() 167 co.src = __UNCONST(&tests[i].data); in main() 168 co.mac = buf; in main() 169 res = ioctl(fd, CIOCCRYPT, &co); in main() 173 if (memcmp(co.mac, tests[i].mac, sizeof(tests[i].mac))) in main()
|
| HD | h_sha1hmac.c | 154 struct crypt_op co; in main() local 172 memset(&co, 0, sizeof(co)); in main() 174 co.ses = cs.ses; in main() 175 co.op = COP_ENCRYPT; in main() 176 co.len = tests[i].len; in main() 177 co.src = __UNCONST(&tests[i].data); in main() 178 co.mac = buf; in main() 179 res = ioctl(fd, CIOCCRYPT, &co); in main() 183 if (memcmp(co.mac, &tests[i].mac, sizeof(tests[i].mac))) in main()
|
| HD | h_xcbcmac.c | 78 struct crypt_op co; in main() local 93 memset(&co, 0, sizeof(co)); in main() 97 co.ses = cs.ses; in main() 98 co.op = COP_ENCRYPT; in main() 99 co.len = tests[i].len; in main() 100 co.src = plaintx; in main() 101 co.mac = buf; in main() 102 res = ioctl(fd, CIOCCRYPT, &co); in main()
|
| /NextBSD/sbin/ipfw/ |
| HD | main.c | 229 if (!co.do_force) in ipfw_main() 230 co.do_force = !isatty(STDIN_FILENO); in ipfw_main() 272 co.comment_only = 1; in ipfw_main() 273 co.do_compact = 1; in ipfw_main() 277 co.do_compact = 1; in ipfw_main() 281 co.do_dynamic = 1; in ipfw_main() 285 co.do_expired = 1; in ipfw_main() 289 co.do_force = 1; in ipfw_main() 298 co.do_value_as_ip = 1; in ipfw_main() 302 co.test_only = 1; in ipfw_main() [all …]
|
| HD | ipfw2.c | 58 struct cmdline_opts co; /* global options */ variable 372 static int ipfw_get_config(struct cmdline_opts *co, struct format_opts *fo, 374 static int ipfw_show_config(struct cmdline_opts *co, struct format_opts *fo, 550 if (co.test_only) in do_cmd() 587 if (co.test_only) in do_set3() 615 if (co.test_only) in do_get3() 823 if (co.do_resolv && (s = match_value(ether_types, port)) ) in print_port() 829 if (co.do_resolv) { in print_port() 1227 if (mb == 32 && co.do_resolv) in print_ip() 1357 if (co.comment_only) in show_prerequisites() [all …]
|
| /NextBSD/contrib/llvm/projects/libunwind/src/ |
| HD | libunwind.cpp | 72 AbstractUnwindCursor *co = (AbstractUnwindCursor *)cursor; in unw_init_local() local 73 co->setInfoBasedOnIPRegister(); in unw_init_local() 166 AbstractUnwindCursor *co = (AbstractUnwindCursor *)cursor; in unw_get_reg() local 167 if (co->validReg(regNum)) { in unw_get_reg() 168 *value = co->getReg(regNum); in unw_get_reg() 181 AbstractUnwindCursor *co = (AbstractUnwindCursor *)cursor; in unw_set_reg() local 182 if (co->validReg(regNum)) { in unw_set_reg() 183 co->setReg(regNum, (pint_t)value); in unw_set_reg() 187 co->setInfoBasedOnIPRegister(false); in unw_set_reg() 200 AbstractUnwindCursor *co = (AbstractUnwindCursor *)cursor; in unw_get_fpreg() local [all …]
|
| /NextBSD/contrib/ofed/libsdp/ |
| HD | ChangeLog | 1 2010-12-26 18:14:02 +0200 Amir Vadai <amirv@mellanox.co.il> 4 2010-11-29 11:43:51 +0200 Amir Vadai <amirv@mellanox.co.il> 7 2010-11-08 14:41:27 +0200 Amir Vadai <amirv@mellanox.co.il> 10 2010-11-08 14:31:13 +0200 Amir Vadai <amirv@mellanox.co.il> 13 2010-11-02 15:28:06 +0200 Amir Vadai <amirv@mellanox.co.il> 19 2010-10-04 11:49:46 +0200 Amir Vadai <amirv@mellanox.co.il> 22 2010-10-04 11:22:23 +0200 Amir Vadai <amirv@mellanox.co.il> 25 2010-10-04 11:20:49 +0200 Amir Vadai <amirv@mellanox.co.il> 28 2010-09-13 10:31:52 +0200 Amir Vadai <amirv@mellanox.co.il> 31 2010-09-13 10:45:40 +0200 Amir Vadai <amirv@mellanox.co.il> [all …]
|
| /NextBSD/release/picobsd/mfs_tree/etc/ |
| HD | rc.serial | 19 co=$1; shift # call out device identifier 26 stty </dev/cuai$co$i -clocal crtscts hupcl 9600 reprint ^R 27 stty </dev/cual$co$i -clocal -crtscts -hupcl 0 35 co=$1; shift 41 stty </dev/cuai$co$i reprint undef 47 stty </dev/cual$co$i 300 55 co=$1; shift 65 stty </dev/cuai$co$i crtscts 57600 66 stty </dev/cual$co$i crtscts 74 co=$1; shift [all …]
|
| /NextBSD/gnu/usr.bin/rcs/ |
| HD | rcstest | 102 co $l $q a.c && 104 $diff a.11 a.c || { echo '#ci' followed by co $l is not a no-op; exit 1; } 109 co $q a.c && 113 co -r1.1 $q a.c && 119 co -r1.1.1.1 $q a.c && 123 co -l $q a.c && 125 co -r1.3 $q a.c && 129 co -l $q a.c && 136 co -l $q a.c && 146 co -u $q a.c || { echo "#rcs -l + co -u failed"; exit 1; } [all …]
|
| /NextBSD/lib/libgeom/ |
| HD | geom_xml2tree.c | 367 struct gconsumer *co; in geom_xml2tree() local 420 LIST_FOREACH(co, &ge->lg_consumer, lg_consumer) { in geom_xml2tree() 421 gmp->lg_ident[i].lg_id = co->lg_id; in geom_xml2tree() 422 gmp->lg_ident[i].lg_ptr = co; in geom_xml2tree() 437 LIST_FOREACH(co, &ge->lg_consumer, lg_consumer) { in geom_xml2tree() 438 co->lg_geom = in geom_xml2tree() 439 geom_lookupid(gmp, co->lg_geom)->lg_ptr; in geom_xml2tree() 440 if (co->lg_provider != NULL) { in geom_xml2tree() 441 co->lg_provider = in geom_xml2tree() 443 co->lg_provider)->lg_ptr; in geom_xml2tree() [all …]
|
| /NextBSD/crypto/openssl/doc/crypto/ |
| HD | EC_POINT_new.pod | 68 The affine co-ordinates for a point describe a point in terms of its x and y position. The functions 69 …dinates_GFp and EC_POINT_set_affine_coordinates_GF2m set the B<x> and B<y> co-ordinates for the po… 72 As well as the affine co-ordinates, a point can alternatively be described in terms of its Jacobian 73 projective co-ordinates (for Fp curves only). Jacobian projective co-ordinates are expressed as thr… 74 this co-ordinate system provides more efficient point multiplication operations. 75 …co-ordinates and affine co-ordinates. A Jacobian projective co-ordinate (x, y, z) can be written a… 76 mapped to (x, y, 1). To set or get the projective co-ordinates use EC_POINT_set_Jprojective_coordin… 79 Points can also be described in terms of their compressed co-ordinates. For a point (x, y), for any… 81 and EC_POINT_set_compressed_coordinates_GF2m functions where B<x> is the x co-ordinate and B<y_bit>…
|
| /NextBSD/sys/arm/amlogic/aml8726/ |
| HD | aml8726_rng.c | 56 struct callout co; member 82 callout_reset(&sc->co, sc->ticks, aml8726_rng_harvest, sc); in aml8726_rng_harvest() 118 callout_init(&sc->co, 1); in aml8726_rng_attach() 119 callout_reset(&sc->co, sc->ticks, aml8726_rng_harvest, sc); in aml8726_rng_attach() 129 callout_drain(&sc->co); in aml8726_rng_detach()
|
| /NextBSD/etc/ |
| HD | termcap.small | 39 :co#80:li#25:pa#64:Co#8:it#8:\ 76 :co#132:tc=cons25: 78 :co#132:tc=cons30: 80 :co#132:tc=cons43: 82 :co#132:tc=cons50: 84 :co#132:tc=cons60: 110 :co#90:tc=cons25r: 112 :co#90:tc=cons25r-m: 114 :co#90:tc=cons30r: 116 :co#90:tc=cons30r-m: [all …]
|
| /NextBSD/lib/libedit/TEST/ |
| HD | tc1.c | 177 int ac, cc, co; in main() local 201 ac = cc = co = 0; in main() 202 ncontinuation = tok_line(tok, li, &ac, &av, &cc, &co); in main() 210 ncontinuation, ac, cc, co); in main() 241 co, av[i], av[i] + co); in main()
|
| HD | wtc1.c | 161 int ac, cc, co, rc; in main() local 184 ac = cc = co = 0; in main() 185 ncontinuation = tok_wline(tok, li, &ac, &av, &cc, &co); in main() 194 ncontinuation, ac, cc, co); in main() 210 co, av[i], av[i] + co); in main()
|
| /NextBSD/share/termcap/ |
| HD | termcap | 119 :bs:hc:os:pl:co#132:do=^J:kb=^H:up=\E\n:\ 124 :kb=^H:le=^H:bs:co#132:hc:hu=\EU:hd=\ED:os:pt:up=\E\n: 126 :do=^J:co#124:is=\r \E9:tc=1620: 133 :co#124:us=\EE:ue=\ER:so=\EW:se=\E&:tc=1620: 148 :bs:co#80:ce=^P^U:cl=20^P^]:cm=%r^P^Q%.%.:dc=^X:\ 155 :kb=^h:le=^H:bs:co#132:hc:hu=\EH:hd=\Eh:os:pt:up=^Z: 157 :le=^H:bs:co#132:hc:hd=\Eh:hu=\EH:os:pt:up=^Z:do=^J: 164 :dl=2*\E&D:ue=\E"U:co#80:li#24:se=\E"I:al=2*\E&I:im=\E'I:ei=\E'J:\ 170 :ct=\E3:st=\E1:do=^J:kb=^h:le=^H:bs:co#132:hc:hu=\E]s\E9\E]W:\ 174 :kb=^h:le=^H:bs:co#80:hc:hu=\EH:hd=\Eh:os:pt:up=^Z: [all …]
|
| /NextBSD/contrib/ofed/libmthca/ |
| HD | ChangeLog | 47 2006-08-09 Michael S. Tsirkin <mst@mellanox.co.il> 52 2006-08-03 Jack Morgenstein <jackm@mellanox.co.il> 56 2006-08-03 Michael S. Tsirkin <mst@mellanox.co.il> 77 2006-07-04 Dotan Barak <dotanb@mellanox.co.il> 88 2006-06-13 Michael S. Tsirkin <mst@mellanox.co.il> 105 2006-05-24 Michael S. Tsirkin <mst@mellanox.co.il> 117 2006-05-18 Michael S. Tsirkin <mst@mellanox.co.il> 122 2006-05-08 Jack Morgenstein <jackm@mellanox.co.il> 146 2006-02-27 Dotan Barak <dotanb@mellanox.co.il> 168 2006-02-13 Dotan Barak <dotanb@mellanox.co.il> [all …]
|