Searched refs:co1 (Results 1 - 5 of 5) sorted by relevance

/freebsd-13-stable/contrib/netbsd-tests/crypto/opencrypto/
H A Dh_comp.c47 struct crypt_op co1, co2; local
59 memset(&co1, 0, sizeof(co1));
60 co1.ses = cs.ses;
61 co1.op = COP_COMP;
62 co1.len = sizeof(text);
63 co1.src = text;
64 co1.dst = buf1;
65 co1.dst_len = sizeof(buf1);
66 res = ioctl(fd, CIOCCRYPT, &co1);
[all...]
H A Dh_comp_zlib.c46 struct crypt_op co1; local
59 memset(&co1, 0, sizeof(co1));
60 co1.ses = cs.ses;
61 co1.op = COP_COMP;
62 co1.len = sizeof(text);
63 co1.src = text;
64 co1.dst = buf1;
65 co1.dst_len = sizeof(buf1);
66 co1
[all...]
H A Dh_comp_zlib_rnd.c48 struct crypt_op co1; local
64 memset(&co1, 0, sizeof(co1));
65 co1.ses = cs.ses;
66 co1.op = COP_COMP;
67 co1.len = sizeof(text);
68 co1.src = text;
69 co1.dst = buf1;
70 co1.dst_len = sizeof(buf1);
71 res = ioctl(fd, CIOCCRYPT, &co1);
[all...]
/freebsd-13-stable/crypto/openssl/crypto/ec/curve448/arch_32/
H A Df_impl.h42 uint32_t co1 = ((1 << 28) - 1) * amt, co2 = co1 - amt; local
45 a->limb[i] += (i == NLIMBS / 2) ? co2 : co1;
/freebsd-13-stable/sys/contrib/openzfs/tests/zfs-tests/tests/functional/channel_program/lua_core/
H A Dtst.lib_coroutine.lua245 local co1, co2
246 co1 = coroutine.create(function () return co2() end) function
248 assert(coroutine.status(co1) == 'normal')
249 assert(not coroutine.resume(co1))
253 a,b = coroutine.resume(co1)
255 assert(coroutine.status(co1) == 'dead')

Completed in 111 milliseconds