Home
last modified time | relevance | path

Searched refs:mp_int_root (Results 1 – 7 of 7) sorted by relevance

/llvm-project-15.0.7/polly/lib/External/isl/imath/
H A Dimath.h306 mp_result mp_int_root(mp_int a, mp_small b, mp_int c);
311 mp_result mp_int_sqrt(mp_int a, mp_int c) { return mp_int_root(a, 2, c); } in mp_int_sqrt()
H A DChangeLog294 Also at Hal Finkel's request, added mp_int_root() to compute the
296 mp_int_sqrt() function with a call to mp_int_root() via a macro.
H A Ddoc.md.in138 mp_int_root mp_int_sqrt
H A Dimdrover.c828 ECHECK(mp_int_root(in[0], v, in[2])); in test_root()
H A Dimath.c1346 mp_result mp_int_root(mp_int a, mp_small b, mp_int c) { in mp_int_root() function
/llvm-project-15.0.7/polly/lib/External/isl/imath_wrap/
H A Dwrap.h112 #define mp_int_root isl_mp_int_root macro
/llvm-project-15.0.7/polly/lib/External/isl/imath/examples/
H A Dimcalc.c816 return mp_int_root(a, b, a); in cf_root()