Searched refs:cond (Results 1 – 7 of 7) sorted by relevance
/openssl/crypto/ec/ |
H A D | ecp_nistp384.c | 864 int64_t tmp[NLIMBS], cond[5], a; in felem_contract() local 907 …cond[0] = ((tmp[6] | 0xff000000000000) & tmp[5] & tmp[4] & tmp[3] & (tmp[2] | 0x0000000001ffff)) +… in felem_contract() 909 cond[1] = (tmp[2] | ~0x00000000010000) + 1; in felem_contract() 911 cond[2] = ((tmp[2] | 0xffffffffff0000) & (tmp[1] | 0x0000ffffffffff)) + 1; in felem_contract() 913 cond[3] = (tmp[1] & ~0xffff0000000000) | (tmp[0] & ~((int64_t) 0x000000ffffffff)); in felem_contract() 915 cond[4] = (tmp[0] | 0xffffff00000000) + 1; in felem_contract() 922 cond[i] = ((cond[i] & 0x00ffffffffffffff) - 1) >> 63; in felem_contract() 930 a = cond[0] & (cond[1] | (cond[2] & (~cond[3] | cond[4]))); in felem_contract() 943 a = cond[0] & cond[1]; in felem_contract() 948 a = cond[0] & ~cond[1] & (cond[2] & (~cond[3] | cond[4])); in felem_contract() [all …]
|
/openssl/crypto/ |
H A D | ia64cpuid.S | 150 (p6) br.cond.dptk .Lot };; 156 (p6) br.cond.dptk .Little 161 (p6) br.cond.dptk .Laligned };; 172 (p6) br.cond.dptk .Laligned };; 175 (p7) br.cond.dpnt .Little 248 (p6) br.cond.dptk .Loop };; 284 (p6) br.cond.spnt .Ldone2 };; 293 (p7) br.cond.dptk .Loop2 };;
|
/openssl/util/ |
H A D | check-format-test-negatives.c | 294 #define IF(cond) if (cond) argument 299 #define CB_ERR_IF(cond, ctx, cert, depth, err) \ argument 300 if ((cond) && ((depth) < 0 || verify_cb_cert(ctx, cert, depth, err) == 0)) \
|
/openssl/crypto/bn/ |
H A D | bn_gcd.c | 585 int i, j, top, rlen, glen, m, delta = 1, cond = 0, pow2_shifts, ret = 0; in BN_gcd() local 657 cond = ((unsigned int)-delta >> (8 * sizeof(delta) - 1)) & g->d[0] & 1 in BN_gcd() 660 delta = (-cond & -delta) | ((cond - 1) & delta); in BN_gcd() 661 r->neg ^= cond; in BN_gcd() 663 BN_consttime_swap(cond, r, g, top); in BN_gcd()
|
/openssl/test/ |
H A D | bntest.c | 154 int top, cond, st = 0; in test_swap() local 181 cond = 1; in test_swap() 182 BN_consttime_swap(cond, a, b, top); in test_swap() 188 BN_consttime_swap(cond, a, a, top); in test_swap() 193 cond = 0; in test_swap() 194 BN_consttime_swap(cond, a, b, top); in test_swap() 200 BN_consttime_swap(cond, a, a, top); in test_swap() 214 cond = 1; in test_swap() 215 BN_consttime_swap(cond, a, b, top); in test_swap() 222 cond = 0; in test_swap() [all …]
|
/openssl/crypto/poly1305/asm/ |
H A D | poly1305-ia64.S | 161 (p8) br.cond.sptk .Loop };;
|
/openssl/crypto/x509/ |
H A D | x509_vfy.c | 170 #define CB_FAIL_IF(cond, ctx, cert, depth, err) \ argument 171 if ((cond) && verify_cb_cert(ctx, cert, depth, err) == 0) \
|
Completed in 45 milliseconds