/src/games/trek/ |
visual.c | 74 int co; local in function:visual 77 co = getintpar("direction"); 78 if (co < 0 || co > 360) 80 co = (co + 22) / 45; 81 v = &Visdelta[co]; 85 co = '?'; 87 co = Sect[ix][iy]; 88 printf("%d,%d %c ", ix, iy, co); [all...] |
/src/tests/crypto/opencrypto/ |
h_arc4.c | 51 struct crypt_op co; local in function:main 65 memset(&co, 0, sizeof(co)); 66 co.ses = cs.ses; 67 co.op = COP_ENCRYPT; 68 co.len = sizeof(plaintx); 69 co.src = plaintx; 70 co.dst = buf; 71 co.dst_len = sizeof(buf); 72 res = ioctl(fd, CIOCCRYPT, &co); [all...] |
h_camellia.c | 57 struct crypt_op co; local in function:main 71 memset(&co, 0, sizeof(co)); 72 co.ses = cs.ses; 73 co.op = COP_ENCRYPT; 74 co.len = sizeof(plaintx); 75 co.src = plaintx; 76 co.dst = buf; 77 co.dst_len = sizeof(buf); 78 co.iv = iv [all...] |
h_cbcdes.c | 52 struct crypt_op co; local in function:main 66 memset(&co, 0, sizeof(co)); 67 co.ses = cs.ses; 68 co.op = COP_ENCRYPT; 69 co.len = sizeof(plaintx); 70 co.src = plaintx; 71 co.dst = buf; 72 co.dst_len = sizeof(buf); 73 co.iv = iv [all...] |
h_null.c | 47 struct crypt_op co; local in function:main 61 memset(&co, 0, sizeof(co)); 62 co.ses = cs.ses; 63 co.op = COP_ENCRYPT; 64 co.len = sizeof(plaintx); 65 co.src = plaintx; 66 co.dst = buf; 67 co.dst_len = sizeof(buf); 68 res = ioctl(fd, CIOCCRYPT, &co); [all...] |
h_aescbc.c | 126 struct crypt_op co; local in function:main 141 memset(&co, 0, sizeof(co)); 142 co.ses = cs.ses; 143 co.op = COP_ENCRYPT; 144 co.len = tests[i].len; 145 co.src = __UNCONST(&tests[i].plaintx); 146 co.dst = buf; 147 co.dst_len = sizeof(buf); 148 co.iv = __UNCONST(&tests[i].iv) [all...] |
h_aesctr1.c | 212 struct crypt_op co; local in function:main 227 memset(&co, 0, sizeof(co)); 228 co.ses = cs.ses; 229 co.op = COP_ENCRYPT; 230 co.len = tests[i].len; 231 co.src = __UNCONST(&tests[i].plaintx); 232 co.dst = buf; 233 co.dst_len = sizeof(buf); 234 co.iv = __UNCONST(&tests[i].iv) [all...] |
h_aesctr2.c | 54 struct crypt_op co; local in function:main 71 memset(&co, 0, sizeof(co)); 72 co.ses = cs.ses; 73 co.op = COP_ENCRYPT; 74 co.len = sizeof(ibuf); 75 co.src = ibuf; 76 co.dst = obuf; 77 co.dst_len = sizeof(obuf); 78 res = ioctl(fd, CIOCCRYPT, &co); [all...] |
h_cbc3des.c | 56 struct crypt_op co, co2; local in function:main 70 memset(&co, 0, sizeof(co)); 72 co.ses = cs.ses; 73 co.op = COP_ENCRYPT; 74 co.len = sizeof(plaintx); 75 co.src = plaintx; 76 co.dst = buf; 77 co.dst_len = sizeof(buf); 78 co.iv = iv [all...] |
h_gcm.c | 56 struct crypt_op co; local in function:main 75 memset(&co, 0, sizeof(co)); 78 co.ses = cs.ses; 79 co.op = COP_ENCRYPT; 80 co.len = sizeof(plaintx); 81 co.src = plaintx; 82 co.dst = databuf; 83 co.mac = macbuf; 84 co.iv = iv [all...] |
h_md5.c | 76 struct crypt_op co; local in function:main 90 memset(&co, 0, sizeof(co)); 92 co.ses = cs.ses; 93 co.op = COP_ENCRYPT; 94 co.len = tests[i].len; 95 co.src = __UNCONST(&tests[i].plaintx); 96 co.mac = buf; 97 res = ioctl(fd, CIOCCRYPT, &co); 101 if (memcmp(co.mac, tests[i].digest, sizeof(tests[i].digest)) [all...] |
h_md5hmac.c | 144 struct crypt_op co; local in function:main 162 memset(&co, 0, sizeof(co)); 164 co.ses = cs.ses; 165 co.op = COP_ENCRYPT; 166 co.len = tests[i].len; 167 co.src = __UNCONST(&tests[i].data); 168 co.mac = buf; 169 res = ioctl(fd, CIOCCRYPT, &co); 173 if (memcmp(co.mac, tests[i].mac, sizeof(tests[i].mac)) [all...] |
h_sha1hmac.c | 154 struct crypt_op co; local in function:main 172 memset(&co, 0, sizeof(co)); 174 co.ses = cs.ses; 175 co.op = COP_ENCRYPT; 176 co.len = tests[i].len; 177 co.src = __UNCONST(&tests[i].data); 178 co.mac = buf; 179 res = ioctl(fd, CIOCCRYPT, &co); 183 if (memcmp(co.mac, &tests[i].mac, sizeof(tests[i].mac)) [all...] |
h_xcbcmac.c | 78 struct crypt_op co; local in function:main 93 memset(&co, 0, sizeof(co)); 97 co.ses = cs.ses; 98 co.op = COP_ENCRYPT; 99 co.len = tests[i].len; 100 co.src = plaintx; 101 co.mac = buf; 102 res = ioctl(fd, CIOCCRYPT, &co);
|
h_sha2hmac.c | 233 struct crypt_op co; local in function:main 248 memset(&co, 0, sizeof(co)); 250 co.ses = cs.ses; 251 co.op = COP_ENCRYPT; 252 co.len = tests[i].len; 253 co.src = __UNCONST(&tests[i].data); 254 co.mac = buf; 255 res = ioctl(fd, CIOCCRYPT, &co); 260 if (memcmp(co.mac, &tests[i].mac, sizeof(tests[i].mac)) [all...] |
/src/sys/dev/ic/ |
tea5757.c | 108 u_int co = 0; local in function:tea5757_search 119 } while ((reg & TEA5757_FREQ) == 0 && ++co < 200);
|
/src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/core/ |
nouveau_nvkm_core_ramht.c | 48 u32 co, ho; local in function:nvkm_ramht_search 50 co = ho = nvkm_ramht_hash(ramht, chid, handle); 52 if (ramht->data[co].chid == chid) { 53 if (ramht->data[co].handle == handle) 54 return ramht->data[co].inst; 57 if (++co >= ramht->size) 58 co = 0; 59 } while (co != ho); 65 nvkm_ramht_update(struct nvkm_ramht *ramht, int co, struct nvkm_object *object, 68 struct nvkm_ramht_data *data = &ramht->data[co]; 115 u32 co, ho; local in function:nvkm_ramht_insert [all...] |
/src/lib/libedit/TEST/ |
tc1.c | 176 int ac, cc, co; local in function:main 200 ac = cc = co = 0; 201 ncontinuation = tok_line(tok, li, &ac, &av, &cc, &co); 208 (void) fprintf(stderr, " > nc %d ac %d cc %d co %d\n", 209 ncontinuation, ac, cc, co); 240 co, av[i], av[i] + co);
|
wtc1.c | 158 int ac, cc, co, rc; local in function:main 181 ac = cc = co = 0; 182 ncontinuation = tok_wline(tok, li, &ac, &av, &cc, &co); 190 (void)fprintf(stderr, " > nc %d ac %d cc %d co %d\n", 191 ncontinuation, ac, cc, co); 207 co, av[i], av[i] + co);
|
/src/lib/libedit/ |
tokenizer.c | 210 int cc, co; local in function:FUN 212 cc = co = -1; 219 co = (int)(tok->wptr - tok->wstart); 438 if (cc == -1 && co == -1) { 440 co = (int)(tok->wptr - tok->wstart); 445 *cursoro = co;
|
/src/sys/arch/amiga/dev/ |
view.c | 194 int co, cs; local in function:view_setsize 196 co = 0; 199 co = 1; 205 if (cs == 0 && co == 0)
|
/src/sys/arch/atari/dev/ |
view.c | 201 int co, cs; local in function:view_setsize 203 co = 0; 206 co = 1; 212 if (cs == 0 && co == 0)
|
/src/sys/dev/pci/igma/ |
igmafb.c | 381 const struct igma_chip_ops *co = cd->ops; local in function:igmafb_guess_size 385 r = co->read_reg(cd, PIPE_HTOTAL(pipe)); 387 r = co->read_reg(cd, PIPE_VTOTAL(pipe)); 395 r = co->read_reg(cd, PF_WINSZ(pipe)); 412 const struct igma_chip_ops *co = cd->ops; local in function:igmafb_set_mode 420 b = co->read_vga(cd, 0x01); 421 co->write_vga(cd, 0x01, b | 0x20); 424 r = co->read_reg(cd, sc->sc_chip.vga_cntrl); 425 co->write_reg(cd, sc->sc_chip.vga_cntrl, r | VGA_CNTRL_DISABLE); 431 co->write_reg(cd, PF_WINPOS(pipe) 512 const struct igma_chip_ops *co = cd->ops; local in function:igmafb_planestart_quirk 537 const struct igma_chip_ops *co = cd->ops; local in function:igmafb_pfitdisable_quirk 549 const struct igma_chip_ops *co = cd->ops; local in function:igmafb_get_brightness_max 568 const struct igma_chip_ops *co = cd->ops; local in function:igmafb_get_brightness 580 const struct igma_chip_ops *co = cd->ops; local in function:igmafb_set_brightness [all...] |
/src/sys/dev/pci/ |
igma.c | 299 const struct igma_chip_ops *co = cd->ops; local in function:igma_adjust_chip 302 reg = co->read_reg(cd, cd->vga_cntrl); 517 const struct igma_chip_ops *co = cd->ops; local in function:igma_i2cbb_set_bits 520 reg = co->read_reg(cd, ii->ii_reg); 539 co->write_reg(cd, ii->ii_reg, reg); 541 reg = co->read_reg(cd, ii->ii_reg); 543 co->barrier(cd, ii->ii_reg); 561 const struct igma_chip_ops *co = cd->ops; local in function:igma_i2cbb_read 565 reg = co->read_reg(cd, ii->ii_reg);
|
/src/usr.bin/rpcgen/ |
rpc_parse.h | 149 const_def co; member in union:definition::__anon73fe6ec0010a
|