Lines Matching refs:group_top
143 int i, cardinality_bits, group_top, kbit, pbit, Z_is_one; in ossl_ec_scalar_mul_ladder() local
208 group_top = bn_get_top(cardinality); in ossl_ec_scalar_mul_ladder()
209 if ((bn_wexpand(k, group_top + 2) == NULL) in ossl_ec_scalar_mul_ladder()
210 || (bn_wexpand(lambda, group_top + 2) == NULL)) { in ossl_ec_scalar_mul_ladder()
247 BN_consttime_swap(kbit, k, lambda, group_top + 2); in ossl_ec_scalar_mul_ladder()
249 group_top = bn_get_top(group->field); in ossl_ec_scalar_mul_ladder()
250 if ((bn_wexpand(s->X, group_top) == NULL) in ossl_ec_scalar_mul_ladder()
251 || (bn_wexpand(s->Y, group_top) == NULL) in ossl_ec_scalar_mul_ladder()
252 || (bn_wexpand(s->Z, group_top) == NULL) in ossl_ec_scalar_mul_ladder()
253 || (bn_wexpand(r->X, group_top) == NULL) in ossl_ec_scalar_mul_ladder()
254 || (bn_wexpand(r->Y, group_top) == NULL) in ossl_ec_scalar_mul_ladder()
255 || (bn_wexpand(r->Z, group_top) == NULL) in ossl_ec_scalar_mul_ladder()
256 || (bn_wexpand(p->X, group_top) == NULL) in ossl_ec_scalar_mul_ladder()
257 || (bn_wexpand(p->Y, group_top) == NULL) in ossl_ec_scalar_mul_ladder()
258 || (bn_wexpand(p->Z, group_top) == NULL)) { in ossl_ec_scalar_mul_ladder()
348 EC_POINT_CSWAP(kbit, r, s, group_top, Z_is_one); in ossl_ec_scalar_mul_ladder()
362 EC_POINT_CSWAP(pbit, r, s, group_top, Z_is_one); in ossl_ec_scalar_mul_ladder()