HomeSort by: relevance | last modified time | path
    Searched refs:sqr_toom8_threshold (Results 1 - 2 of 2) sorted by relevancy

  /src/external/lgpl3/gmp/dist/tune/
tuneup.c 177 mp_size_t sqr_toom8_threshold = SQR_TOOM8_THRESHOLD_LIMIT; variable
1718 if (sqr_toom8_threshold != 0)
1720 param.name = "SQR_TOOM8_THRESHOLD";
1721 sqr_toom8_threshold = SQR_TOOM8_THRESHOLD_LIMIT;
1724 one (&sqr_toom8_threshold, &param);
1726 if (next_toom_start * 1.05 >= sqr_toom8_threshold)
1728 sqr_toom8_threshold = 0;
1737 print_define ("SQR_TOOM8_THRESHOLD", SQR_TOOM8_THRESHOLD);
  /src/external/lgpl3/gmp/dist/
gmp-impl.h 2109 #ifndef SQR_TOOM8_THRESHOLD
2110 #define SQR_TOOM8_THRESHOLD MUL_TOOM8H_THRESHOLD
4838 #undef SQR_TOOM8_THRESHOLD
4839 #define SQR_TOOM8_THRESHOLD sqr_toom8_threshold
4840 extern mp_size_t sqr_toom8_threshold;
5158 ((((n)*15)>>3) - ((SQR_TOOM8_THRESHOLD*15)>>3) + \
5159 MAX(((SQR_TOOM8_THRESHOLD*15)>>3) + GMP_NUMB_BITS*6, \
5160 mpn_toom6_sqr_itch(SQR_TOOM8_THRESHOLD)))

Completed in 20 milliseconds