HomeSort by: relevance | last modified time | path
    Searched defs:matrix_scratch (Results 1 - 3 of 3) sorted by relevancy

  /src/external/lgpl3/gmp/dist/mpn/generic/
jacobi.c 164 mp_size_t matrix_scratch; local
184 matrix_scratch = MPN_HGCD_MATRIX_INIT_ITCH (n - p);
188 dc_scratch = matrix_scratch + MAX(hgcd_scratch, update_scratch);
200 mp_size_t matrix_scratch = MPN_HGCD_MATRIX_INIT_ITCH (n - p); local
205 tp + matrix_scratch);
211 n = mpn_hgcd_matrix_adjust (&M, p + nn, ap, bp, p, tp + matrix_scratch);
gcd.c 84 mp_size_t matrix_scratch; local
116 matrix_scratch = MPN_HGCD_MATRIX_INIT_ITCH (n);
120 matrix_scratch = MPN_HGCD_MATRIX_INIT_ITCH (n - p);
124 scratch = matrix_scratch + MAX(hgcd_scratch, update_scratch);
154 mp_size_t matrix_scratch = MPN_HGCD_MATRIX_INIT_ITCH (n - p); local
157 nn = mpn_hgcd (up + p, vp + p, n - p, &M, tp + matrix_scratch);
163 n = mpn_hgcd_matrix_adjust (&M, p + nn, up, vp, p, tp + matrix_scratch);
gcdext.c 203 mp_size_t matrix_scratch; local
239 matrix_scratch = MPN_HGCD_MATRIX_INIT_ITCH (n - min_p);
243 scratch = matrix_scratch + MAX(hgcd_scratch, update_scratch);
303 nn = mpn_hgcd (ap + p, bp + p, n - p, &M, tp + matrix_scratch);
310 n = mpn_hgcd_matrix_adjust (&M, p + nn, ap, bp, p, tp + matrix_scratch);
350 nn = mpn_hgcd (ap + p, bp + p, n - p, &M, tp + matrix_scratch);
355 t0 = tp + matrix_scratch;

Completed in 16 milliseconds