Home
last modified time | relevance | path

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

/external/arm-optimized-routines/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/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.py573 def testfrexp(name, result, expected): function
579 testfrexp('frexp(-1)', math.frexp(-1), (-0.5, 1))
580 testfrexp('frexp(0)', math.frexp(0), (0, 0))
581 testfrexp('frexp(1)', math.frexp(1), (0.5, 1))
582 testfrexp('frexp(2)', math.frexp(2), (0.5, 2))