(root)/
gmp-6.3.0/
tests/
mpn/
t-toom42.c
       1  #define mpn_toomMN_mul mpn_toom42_mul
       2  #define mpn_toomMN_mul_itch mpn_toom42_mul_itch
       3  
       4  #define MIN_AN 10
       5  #define MIN_BN(an) (((an) + 7) >> 2)
       6  #define MAX_BN(an) ((2*(an)-5) / (size_t) 3)
       7  
       8  #include "toom-shared.h"