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

  /src/external/lgpl3/gmp/dist/tune/
tuneup.c 171 mp_size_t sqr_basecase_threshold = MP_SIZE_T_MAX; variable
1609 print_define_remark ("SQR_BASECASE_THRESHOLD", 0, "always (native)");
1610 sqr_basecase_threshold = 0;
1615 param.name = "SQR_BASECASE_THRESHOLD";
1621 one (&sqr_basecase_threshold, &param);
1634 && sqr_toom2_threshold < sqr_basecase_threshold)
1641 SQR_BASECASE_THRESHOLD the toom2 threshold. */
1643 sqr_basecase_threshold = SQR_TOOM2_THRESHOLD;
1646 print_define_remark ("SQR_BASECASE_THRESHOLD", sqr_basecase_threshold,
    [all...]
  /src/external/lgpl3/gmp/dist/
gmp-impl.h 2153 /* SQR_BASECASE_THRESHOLD is where mpn_sqr_basecase should take over from
2158 before mpn_sqr_basecase does, then SQR_BASECASE_THRESHOLD is the toom2
2163 #ifndef SQR_BASECASE_THRESHOLD
2164 #define SQR_BASECASE_THRESHOLD 0 /* never use mpn_mul_basecase */
4809 /* A native mpn_sqr_basecase is not tuned and SQR_BASECASE_THRESHOLD should
4812 #undef SQR_BASECASE_THRESHOLD
4813 #define SQR_BASECASE_THRESHOLD sqr_basecase_threshold
4814 extern mp_size_t sqr_basecase_threshold;

Completed in 56 milliseconds