Home
last modified time | relevance | path

Searched refs:testmodf (Results 1 – 3 of 3) sorted by relevance

/third_party/optimized-routines/math/test/rtest/
Dintern.h29 typedef char * (*testmodf)(uint32 *, uint32 *, uint32 *); typedef
Ddotest.c1821 errstr = ((testmodf)(fn->func))(args, result, result+2); in docase()
1824 errstr = ((testmodf)(fn->func))(args, result, result+2); in docase()
/third_party/python/Lib/test/
Dtest_math.py1176 def testmodf(name, result, expected): function
1182 testmodf('modf(1.5)', math.modf(1.5), (0.5, 1.0))
1183 testmodf('modf(-1.5)', math.modf(-1.5), (-0.5, -1.0))