Searched refs:FP_NORMAL (Results 1 - 6 of 6) sorted by relevance
/bionic/libc/bionic/ |
H A D | fpclassify.cpp | 58 return FP_NORMAL; 71 return FP_NORMAL; 107 return (__fpclassifyd(d) == FP_NORMAL); 112 return (__fpclassifyf(f) == FP_NORMAL); 136 return FP_NORMAL; 153 return (__fpclassifyl(ld) == FP_NORMAL);
|
/bionic/libc/upstream-openbsd/lib/libc/gdtoa/ |
H A D | ldtoa.c | 79 case FP_NORMAL:
|
H A D | hdtoa.c | 134 case FP_NORMAL: 154 /* FP_NORMAL or FP_SUBNORMAL */ 232 case FP_NORMAL: 252 /* FP_NORMAL or FP_SUBNORMAL */
|
/bionic/libc/include/ |
H A D | math.h | 52 #define FP_NORMAL 0x04 macro 56 __builtin_fpclassify(FP_NAN, FP_INFINITE, FP_NORMAL, FP_SUBNORMAL, FP_ZERO, x)
|
/bionic/tools/versioner/current/ |
H A D | math.h | 52 #define FP_NORMAL 0x04 macro 56 __builtin_fpclassify(FP_NAN, FP_INFINITE, FP_NORMAL, FP_SUBNORMAL, FP_ZERO, x)
|
/bionic/tests/ |
H A D | math_test.cpp | 109 ASSERT_EQ(FP_NORMAL, fpclassify(1.0f)); 110 ASSERT_EQ(FP_NORMAL, fpclassify(1.0)); 111 ASSERT_EQ(FP_NORMAL, fpclassify(1.0L)); 179 ASSERT_EQ(FP_NORMAL, __fpclassifyd(1.0)); 187 ASSERT_EQ(FP_NORMAL, __fpclassifyf(1.0f)); 195 EXPECT_EQ(FP_NORMAL, __fpclassifyl(1.0L));
|
Completed in 52 milliseconds