Searched refs:testmodf (Results 1 – 3 of 3) sorted by relevance
/third_party/optimized-routines/math/test/rtest/ |
D | intern.h | 29 typedef char * (*testmodf)(uint32 *, uint32 *, uint32 *); typedef
|
D | dotest.c | 1821 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/ |
D | test_math.py | 1176 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))
|