HomeSort by: relevance | last modified time | path
    Searched refs:co (Results 1 - 25 of 288) sorted by relevancy

1 2 3 4 5 6 7 8 91011>>

  /src/games/trek/
getcodi.c 55 getcodi(int *co, double *di)
58 *co = getintpar("Course");
61 if (*co < 0 || *co > 360)
visual.c 74 int co; local
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_aesctr2.c 54 struct crypt_op co; local
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_cbcdes.c 52 struct crypt_op co; local
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_gcm.c 56 struct crypt_op co; local
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_arc4.c 51 struct crypt_op co; local
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_null.c 47 struct crypt_op co; local
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_camellia.c 57 struct crypt_op co; local
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_cbc3des.c 56 struct crypt_op co, co2; local
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_md5.c 76 struct crypt_op co; local
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_xcbcmac.c 78 struct crypt_op co; local
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_aescbc.c 126 struct crypt_op co; local
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
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...]
  /src/external/mit/lua/dist/src/
lcorolib.c 26 lua_State *co = lua_tothread(L, 1); local
27 luaL_argexpected(L, co, 1, "thread");
28 return co;
36 static int auxresume (lua_State *L, lua_State *co, int narg) {
38 if (l_unlikely(!lua_checkstack(co, narg))) {
42 lua_xmove(L, co, narg);
43 status = lua_resume(co, L, narg, &nres);
46 lua_pop(co, nres); /* remove results anyway */
50 lua_xmove(co, L, nres); /* move yielded values */
54 lua_xmove(co, L, 1); /* move error message *
61 lua_State *co = getco(L); local
78 lua_State *co = lua_tothread(L, lua_upvalueindex(1)); local
154 lua_State *co = getco(L); local
161 lua_State *co = lua_isnone(L, 1) ? L : getco(L); local
175 lua_State *co = getco(L); local
    [all...]
  /src/external/gpl2/rcs/bin/co/
Makefile 3 PROG= co
  /src/sys/external/bsd/drm2/dist/drm/nouveau/nvkm/core/
nouveau_nvkm_core_ramht.c 48 u32 co, ho; local
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
    [all...]
  /src/external/gpl2/rcs/bin/
Makefile 2 SUBDIR = ci co ident merge rcs rcsclean rcsdiff rcsfreeze rcsmerge rlog
  /src/sys/dev/pci/igma/
igmafb.c 378 const struct igma_chip_ops *co = cd->ops; local
382 r = co->read_reg(cd, PIPE_HTOTAL(pipe));
384 r = co->read_reg(cd, PIPE_VTOTAL(pipe));
392 r = co->read_reg(cd, PF_WINSZ(pipe));
409 const struct igma_chip_ops *co = cd->ops; local
417 b = co->read_vga(cd, 0x01);
418 co->write_vga(cd, 0x01, b | 0x20);
421 r = co->read_reg(cd, sc->sc_chip.vga_cntrl);
422 co->write_reg(cd, sc->sc_chip.vga_cntrl, r | VGA_CNTRL_DISABLE);
428 co->write_reg(cd, PF_WINPOS(pipe)
509 const struct igma_chip_ops *co = cd->ops; local
534 const struct igma_chip_ops *co = cd->ops; local
546 const struct igma_chip_ops *co = cd->ops; local
565 const struct igma_chip_ops *co = cd->ops; local
577 const struct igma_chip_ops *co = cd->ops; local
    [all...]
  /src/external/gpl3/gcc/dist/gcc/fortran/
frontend-passes.cc 250 gfc_code *co = *c; local
255 if (co->op != EXEC_ASSIGN)
258 expr1 = co->expr1;
267 expr2 = gfc_discard_nops (co->expr2);
302 co->expr2 = n;
1037 gfc_code *co = *c; local
1042 if (co->op != EXEC_DO_WHILE)
1045 if (co->expr1 == NULL || co->expr1->expr_type == EXPR_CONSTANT)
1048 e_cond = co->expr1
1111 gfc_code *co = *c; local
2384 gfc_code *co = *c; local
2533 gfc_code *co; local
3161 gfc_code *co; local
4118 gfc_code *co = *c; local
4670 gfc_code *co, *co_next; local
5163 gfc_code *co; local
5364 gfc_code *co; local
5783 gfc_code *co = *c; local
5911 gfc_code *co = *c; local
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/fortran/
frontend-passes.cc 250 gfc_code *co = *c; local
255 if (co->op != EXEC_ASSIGN)
258 expr1 = co->expr1;
267 expr2 = gfc_discard_nops (co->expr2);
302 co->expr2 = n;
1037 gfc_code *co = *c; local
1042 if (co->op != EXEC_DO_WHILE)
1045 if (co->expr1 == NULL || co->expr1->expr_type == EXPR_CONSTANT)
1048 e_cond = co->expr1
1111 gfc_code *co = *c; local
2384 gfc_code *co = *c; local
2533 gfc_code *co; local
3146 gfc_code *co; local
4103 gfc_code *co = *c; local
4655 gfc_code *co, *co_next; local
5148 gfc_code *co; local
5349 gfc_code *co; local
5767 gfc_code *co = *c; local
5891 gfc_code *co = *c; local
    [all...]
  /src/sbin/mount_portal/examples/
cvs.sh.sh 34 cvs co -p $rev $file
  /src/external/gpl3/gcc/dist/contrib/
git-commit-mklog.py 40 parser.add_argument('--co',
41 help='Add Co-Authored-By trailer (comma separated)')
55 if args.co:
56 for author in args.co.split(','):
57 unknown_args.append(f'--trailer "Co-Authored-By: {author}"')
  /src/external/gpl3/gcc.old/dist/contrib/
git-commit-mklog.py 40 parser.add_argument('--co',
41 help='Add Co-Authored-By trailer (comma separated)')
54 if args.co:
55 for author in args.co.split(','):
56 unknown_args.append(f'--trailer "Co-Authored-By: {author}"')
  /src/external/gpl2/rcs/dist/src/
rcstest 102 co $l $q a.c &&
103 test -f a.c || { echo '#co' $l did not create working file; exit 1; }
104 $diff a.11 a.c || { echo '#ci' followed by co $l is not a no-op; exit 1; }
109 co $q a.c &&
110 $diff a.12 a.c || { echo "#ci+co failed"; exit 1; }
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 &&
126 $diff a.12 a.c || { echo "#(co -l; ci -f) failed"; exit 1;
    [all...]
  /src/sys/dev/pci/
auixp.c 250 struct auixp_codec *co; local
253 co = (struct auixp_codec *) hdl;
254 sc = co->sc;
260 auixp_set_rate(struct auixp_codec *co, int mode, u_int srate)
267 ret = co->codec_if->vtbl->set_rate(co->codec_if,
273 ret = co->codec_if->vtbl->set_rate(co->codec_if,
279 ret = co->codec_if->vtbl->set_rate(co->codec_if
295 struct auixp_codec *co; local
380 struct auixp_codec *co; local
443 struct auixp_codec *co; local
479 struct auixp_codec *co; local
510 struct auixp_codec *co; local
521 struct auixp_codec *co; local
531 struct auixp_codec *co; local
724 struct auixp_codec *co; local
778 struct auixp_codec *co; local
799 struct auixp_codec *co; local
853 struct auixp_codec *co; local
1349 struct auixp_codec *co; local
1400 struct auixp_codec *co; local
1750 struct auixp_codec *co = addr; local
    [all...]

Completed in 24 milliseconds

1 2 3 4 5 6 7 8 91011>>