Searched refs:fpclassify (Results 1 – 12 of 12) sorted by relevance
/aosp12/bionic/libc/bionic/ |
H A D | fpclassify.cpp | 35 return fpclassify(d); in __fpclassifyd() 40 return fpclassify(f); in __fpclassifyf() 84 return fpclassify(ld); in __fpclassifyl()
|
/aosp12/bionic/tests/ |
H A D | math_test.cpp | 105 TEST(MATH_TEST, fpclassify) { in TEST() argument 106 ASSERT_EQ(FP_INFINITE, fpclassify(INFINITY)); in TEST() 114 ASSERT_EQ(FP_NAN, fpclassify(nanf(""))); in TEST() 115 ASSERT_EQ(FP_NAN, fpclassify(nan(""))); in TEST() 116 ASSERT_EQ(FP_NAN, fpclassify(nanl(""))); in TEST() 118 ASSERT_EQ(FP_NORMAL, fpclassify(1.0f)); in TEST() 119 ASSERT_EQ(FP_NORMAL, fpclassify(1.0)); in TEST() 120 ASSERT_EQ(FP_NORMAL, fpclassify(1.0L)); in TEST() 126 ASSERT_EQ(FP_ZERO, fpclassify(0.0f)); in TEST() 127 ASSERT_EQ(FP_ZERO, fpclassify(0.0)); in TEST() [all …]
|
/aosp12/bionic/libc/upstream-openbsd/lib/libc/gdtoa/ |
H A D | hdtoa.c | 133 switch (fpclassify(d)) { in __hdtoa() 232 switch (fpclassify(e)) { in __hldtoa()
|
H A D | ldtoa.c | 78 switch (fpclassify(*ld)) { in __ldtoa()
|
/aosp12/bionic/tests/headers/posix/ |
H A D | math_h.c | 37 #if !defined(fpclassify) in math_h() 38 #error fpclassify in math_h()
|
/aosp12/bionic/libc/include/ |
H A D | math.h | 61 #define fpclassify(x) __builtin_fpclassify(FP_NAN, FP_INFINITE, FP_NORMAL, FP_SUBNORMAL, FP_ZERO, x) macro
|
/aosp12/bionic/benchmarks/ |
H A D | math_benchmark.cpp | 181 d += fpclassify(v); in BM_math_fpclassify()
|
/aosp12/bionic/libc/tools/ |
H A D | posix-2013.txt | 286 fpclassify
|
/aosp12/frameworks/native/libs/gui/ |
H A D | LayerState.cpp | 650 int floatClassification = std::fpclassify(frameRate); in ValidateFrameRate()
|
/aosp12/frameworks/av/media/libaudioprocessing/ |
H A D | AudioMixerBase.cpp | 259 switch (fpclassify(newVolume)) { in setVolumeRampVariables()
|
/aosp12/bionic/libc/ |
H A D | Android.bp | 1064 "bionic/fpclassify.cpp",
|
/aosp12/art/compiler/optimizing/ |
H A D | nodes.h | 3315 return std::fpclassify(value_) == FP_ZERO; 3372 return std::fpclassify(value_) == FP_ZERO;
|