Searched refs:BC_NUM_KARATSUBA_LEN (Results 1 – 5 of 5) sorted by relevance
118 #ifndef BC_NUM_KARATSUBA_LEN119 #define BC_NUM_KARATSUBA_LEN (BC_NUM_BIGDIG_C(32)) macro120 #elif BC_NUM_KARATSUBA_LEN < 16121 #error BC_NUM_KARATSUBA_LEN must be at least 16.
20 number with `BC_NUM_KARATSUBA_LEN` digits or larger. `BC_NUM_KARATSUBA_LEN` has24 Brute force multiplication is used below `BC_NUM_KARATSUBA_LEN` digits. It is
158 BC_NUM_KARATSUBA_LEN = %%KARATSUBA_LEN%%164 CPPFLAGS5 = $(CPPFLAGS4) -DBC_NUM_KARATSUBA_LEN=$(BC_NUM_KARATSUBA_LEN)
1006 `BC_NUM_KARATSUBA_LEN` was added. It is set to a sane default, but the
786 if (a->len < BC_NUM_KARATSUBA_LEN || b->len < BC_NUM_KARATSUBA_LEN) { in bc_num_k()