Home
last modified time | relevance | path

Searched refs:co2 (Results 1 – 6 of 6) sorted by relevance

/netbsd-src/tests/crypto/opencrypto/
H A Dh_comp.c47 struct crypt_op co1, co2; in main() local
74 memset(&co2, 0, sizeof(co2)); in main()
75 co2.ses = cs.ses; in main()
76 co2.op = COP_DECOMP; in main()
77 co2.len = co1.dst_len; in main()
78 co2.src = buf1; in main()
79 co2.dst = buf2; in main()
80 co2.dst_len = sizeof(buf2); in main()
82 res = ioctl(fd, CIOCCRYPT, &co2); in main()
86 fprintf(stderr, "len %d/%d\n", co2.len, co2.dst_len); in main()
[all …]
H A Dh_cbc3des.c56 struct crypt_op co, co2; in main() local
86 memset(&co2, 0, sizeof(co2)); in main()
88 co2.ses = cs.ses; in main()
89 co2.op = COP_DECRYPT; in main()
90 co2.len = sizeof(buf); in main()
91 co2.src = buf; in main()
92 co2.dst = buf2; in main()
93 co2.dst_len = sizeof(buf2); in main()
94 co2.iv = iv; in main()
95 res = ioctl(fd, CIOCCRYPT, &co2); in main()
[all …]
/netbsd-src/crypto/external/bsd/openssl/dist/crypto/ec/curve448/arch_64/
H A Df_impl.h33 uint64_t co1 = ((1ULL << 56) - 1) * 2, co2 = co1 - 2; in gf_sub_RAW() local
37 out->limb[i] = a->limb[i] - b->limb[i] + ((i == NLIMBS / 2) ? co2 : co1); in gf_sub_RAW()
/netbsd-src/crypto/external/bsd/openssl.old/dist/crypto/ec/curve448/arch_32/
H A Df_impl.h42 uint32_t co1 = ((1 << 28) - 1) * amt, co2 = co1 - amt; in gf_bias() local
45 a->limb[i] += (i == NLIMBS / 2) ? co2 : co1; in gf_bias()
/netbsd-src/crypto/external/bsd/openssl/dist/crypto/ec/curve448/arch_32/
H A Df_impl.h42 uint32_t co1 = ((1 << 28) - 1) * amt, co2 = co1 - amt; in gf_bias() local
45 a->limb[i] += (i == NLIMBS / 2) ? co2 : co1; in gf_bias()
/netbsd-src/external/bsd/openldap/dist/servers/slapd/
H A Dbconfig.c4645 const ConfigOCs *co2 = c2; in CfOc_cmp() local
4647 return ber_bvcmp( co1->co_name, co2->co_name ); in CfOc_cmp()