Searched refs:both_odd (Results 1 – 1 of 1) sorted by relevance
/external/boringssl/src/crypto/fipsmodule/bn/ |
D | gcd_extra.c | 84 BN_ULONG both_odd = word_is_odd_mask(u->d[0]) & word_is_odd_mask(v->d[0]); in bn_gcd_consttime() local 89 bn_select_words(u->d, both_odd & ~u_less_than_v, tmp->d, u->d, width); in bn_gcd_consttime() 91 bn_select_words(v->d, both_odd & u_less_than_v, tmp->d, v->d, width); in bn_gcd_consttime() 263 BN_ULONG both_odd = word_is_odd_mask(u->d[0]) & word_is_odd_mask(v->d[0]); in bn_mod_inverse_consttime() local 268 bn_select_words(v->d, both_odd & ~v_less_than_u, tmp->d, v->d, n_width); in bn_mod_inverse_consttime() 270 bn_select_words(u->d, both_odd & v_less_than_u, tmp->d, u->d, n_width); in bn_mod_inverse_consttime() 276 bn_select_words(A->d, both_odd & v_less_than_u, tmp->d, A->d, n_width); in bn_mod_inverse_consttime() 277 bn_select_words(C->d, both_odd & ~v_less_than_u, tmp->d, C->d, n_width); in bn_mod_inverse_consttime() 282 bn_select_words(B->d, both_odd & v_less_than_u, tmp->d, B->d, a_width); in bn_mod_inverse_consttime() 283 bn_select_words(D->d, both_odd & ~v_less_than_u, tmp->d, D->d, a_width); in bn_mod_inverse_consttime()
|