Searched refs:testmodf (Results 1 – 6 of 6) sorted by relevance
/external/llvm-project/libc/AOR_v20.02/math/test/rtest/ |
D | intern.h | 30 typedef char * (*testmodf)(uint32 *, uint32 *, uint32 *); typedef
|
D | dotest.c | 1822 errstr = ((testmodf)(fn->func))(args, result, result+2); in docase() 1825 errstr = ((testmodf)(fn->func))(args, result, result+2); in docase()
|
/external/arm-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()
|
/external/python/cpython2/Lib/test/ |
D | test_math.py | 634 def testmodf(name, result, expected): function 640 testmodf('modf(1.5)', math.modf(1.5), (0.5, 1.0)) 641 testmodf('modf(-1.5)', math.modf(-1.5), (-0.5, -1.0))
|
/external/python/cpython3/Lib/test/ |
D | test_math.py | 1117 def testmodf(name, result, expected): function 1123 testmodf('modf(1.5)', math.modf(1.5), (0.5, 1.0)) 1124 testmodf('modf(-1.5)', math.modf(-1.5), (-0.5, -1.0))
|