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

  /xsrc/external/mit/xedit/dist/lisp/mp/
mp.c 496 /* Toom method (partially based on GMP documentation)
555 * Toom method would do 10*10*5=500 multiplications
556 * Toom method has a larger overhead if compared with Karatsuba method,
562 * Toom method, i.e:
773 else if (len1 < TOOM && len2 < TOOM && len2 > ((len1 + 1) >> 1))
775 else if (len1 >= TOOM && len2 >= TOOM && (len2 + 2) / 3 == (len1 + 2) / 3)
mp.h 67 * At least this length to use Toom multiplication method
69 #define TOOM 128
177 /* use Toom method

Completed in 5 milliseconds