Home
last modified time | relevance | path

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

/third_party/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()
/third_party/python/Lib/test/
Dtest_math.py577 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))