Searched refs:testfrexp (Results 1 – 3 of 3) sorted by relevance
/third_party/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()
|
/third_party/python/Lib/test/ |
D | test_math.py | 577 def testfrexp(name, result, expected): function 583 testfrexp('frexp(-1)', math.frexp(-1), (-0.5, 1)) 584 testfrexp('frexp(0)', math.frexp(0), (0, 0)) 585 testfrexp('frexp(1)', math.frexp(1), (0.5, 1)) 586 testfrexp('frexp(2)', math.frexp(2), (0.5, 2))
|