Home
last modified time | relevance | path

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

/external/boringssl/src/crypto/hrss/
Dhrss.c728 const size_t low_len = n / 2; in poly3_mul_aux() local
729 const size_t high_len = n - low_len; in poly3_mul_aux()
730 const struct poly3_span a_high = {&a->s[low_len], &a->a[low_len]}; in poly3_mul_aux()
731 const struct poly3_span b_high = {&b->s[low_len], &b->a[low_len]}; in poly3_mul_aux()
737 poly3_span_add(&a_cross_sum, a, &a_high, low_len); in poly3_mul_aux()
738 poly3_span_add(&b_cross_sum, b, &b_high, low_len); in poly3_mul_aux()
739 if (high_len != low_len) { in poly3_mul_aux()
740 a_cross_sum.s[low_len] = a_high.s[low_len]; in poly3_mul_aux()
741 a_cross_sum.a[low_len] = a_high.a[low_len]; in poly3_mul_aux()
742 b_cross_sum.s[low_len] = b_high.s[low_len]; in poly3_mul_aux()
[all …]