Searched refs:matrix_scratch (Results 1 – 2 of 2) sorted by relevance
/dflybsd-src/contrib/gmp/mpn/generic/ |
H A D | gcd.c | 59 mp_size_t matrix_scratch; in mpn_gcd() local 87 matrix_scratch = MPN_HGCD_MATRIX_INIT_ITCH (n); in mpn_gcd() 91 matrix_scratch = MPN_HGCD_MATRIX_INIT_ITCH (n - p); in mpn_gcd() 95 scratch = matrix_scratch + MAX(hgcd_scratch, update_scratch); in mpn_gcd() 123 mp_size_t matrix_scratch = MPN_HGCD_MATRIX_INIT_ITCH (n - p); in mpn_gcd() local 126 nn = mpn_hgcd (up + p, vp + p, n - p, &M, tp + matrix_scratch); in mpn_gcd() 132 n = mpn_hgcd_matrix_adjust (&M, p + nn, up, vp, p, tp + matrix_scratch); in mpn_gcd()
|
H A D | gcdext.c | 194 mp_size_t matrix_scratch; in mpn_gcdext() local 228 matrix_scratch = MPN_HGCD_MATRIX_INIT_ITCH (n - min_p); in mpn_gcdext() 232 scratch = matrix_scratch + MAX(hgcd_scratch, update_scratch); in mpn_gcdext() 288 nn = mpn_hgcd (ap + p, bp + p, n - p, &M, tp + matrix_scratch); in mpn_gcdext() 295 n = mpn_hgcd_matrix_adjust (&M, p + nn, ap, bp, p, tp + matrix_scratch); in mpn_gcdext() 334 nn = mpn_hgcd (ap + p, bp + p, n - p, &M, tp + matrix_scratch); in mpn_gcdext() 339 t0 = tp + matrix_scratch; in mpn_gcdext()
|