Home
last modified time | relevance | path

Searched refs:testfrexp (Results 1 – 6 of 6) sorted by relevance

/external/arm-optimized-routines/math/test/rtest/
Dintern.h28 typedef char * (*testfrexp)(uint32 *, uint32 *, uint32 *); typedef
Ddotest.c1815 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/
Dintern.h29 typedef char * (*testfrexp)(uint32 *, uint32 *, uint32 *); typedef
Ddotest.c1816 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/
Dtest_math.py442 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/
Dtest_math.py582 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))