Searched refs:testfrexp (Results 1 – 6 of 6) sorted by relevance
/external/arm-optimized-routines/math/test/rtest/ |
D | intern.h | 28 typedef char * (*testfrexp)(uint32 *, uint32 *, uint32 *); typedef
|
D | dotest.c | 1815 errstr = ((testfrexp)(fn->func))(args, result, result+2); in docase() 1818 errstr = ((testfrexp)(fn->func))(args, result, result+2); in docase()
|
/external/llvm-project/libc/AOR_v20.02/math/test/rtest/ |
D | intern.h | 29 typedef char * (*testfrexp)(uint32 *, uint32 *, uint32 *); typedef
|
D | dotest.c | 1816 errstr = ((testfrexp)(fn->func))(args, result, result+2); in docase() 1819 errstr = ((testfrexp)(fn->func))(args, result, result+2); in docase()
|
/external/python/cpython2/Lib/test/ |
D | test_math.py | 442 def testfrexp(name, result, expected): function 448 testfrexp('frexp(-1)', math.frexp(-1), (-0.5, 1)) 449 testfrexp('frexp(0)', math.frexp(0), (0, 0)) 450 testfrexp('frexp(1)', math.frexp(1), (0.5, 1)) 451 testfrexp('frexp(2)', math.frexp(2), (0.5, 2))
|
/external/python/cpython3/Lib/test/ |
D | test_math.py | 582 def testfrexp(name, result, expected): function 588 testfrexp('frexp(-1)', math.frexp(-1), (-0.5, 1)) 589 testfrexp('frexp(0)', math.frexp(0), (0, 0)) 590 testfrexp('frexp(1)', math.frexp(1), (0.5, 1)) 591 testfrexp('frexp(2)', math.frexp(2), (0.5, 2))
|