/prebuilts/clang/host/darwin-x86/clang-4691093/include/c++/v1/ |
cmath | 146 bool isnan(arithmetic x); 317 using ::isnan; 557 return isnan(__lcpp_x); 566 return isnan(__lcpp_x);
|
/prebuilts/clang/host/linux-x86/clang-4053586/include/c++/v1/ |
cmath | 146 bool isnan(arithmetic x); 317 using ::isnan; 563 return isnan(__lcpp_x); 572 return isnan(__lcpp_x);
|
/prebuilts/clang/host/linux-x86/clang-4393122/include/c++/v1/ |
cmath | 146 bool isnan(arithmetic x); 317 using ::isnan; 557 return isnan(__lcpp_x); 566 return isnan(__lcpp_x);
|
/prebuilts/clang/host/linux-x86/clang-4479392/include/c++/v1/ |
cmath | 146 bool isnan(arithmetic x); 317 using ::isnan; 557 return isnan(__lcpp_x); 566 return isnan(__lcpp_x);
|
/prebuilts/clang/host/linux-x86/clang-4579689/include/c++/v1/ |
cmath | 146 bool isnan(arithmetic x); 317 using ::isnan; 557 return isnan(__lcpp_x); 566 return isnan(__lcpp_x);
|
/prebuilts/clang/host/linux-x86/clang-4630689/include/c++/v1/ |
cmath | 146 bool isnan(arithmetic x); 317 using ::isnan; 557 return isnan(__lcpp_x); 566 return isnan(__lcpp_x);
|
/prebuilts/clang/host/linux-x86/clang-4639204/include/c++/v1/ |
cmath | 146 bool isnan(arithmetic x); 317 using ::isnan; 557 return isnan(__lcpp_x); 566 return isnan(__lcpp_x);
|
/prebuilts/clang/host/linux-x86/clang-4691093/include/c++/v1/ |
cmath | 146 bool isnan(arithmetic x); 317 using ::isnan; 557 return isnan(__lcpp_x); 566 return isnan(__lcpp_x);
|
/prebuilts/go/darwin-x86/src/math/ |
asinh.go | 48 if IsNaN(x) || IsInf(x, 0) {
|
atanh.go | 53 case x < -1 || x > 1 || IsNaN(x):
|
cbrt.go | 40 case x == 0 || IsNaN(x) || IsInf(x, 0):
|
/prebuilts/go/linux-x86/src/math/ |
asinh.go | 48 if IsNaN(x) || IsInf(x, 0) {
|
atanh.go | 53 case x < -1 || x > 1 || IsNaN(x):
|
cbrt.go | 40 case x == 0 || IsNaN(x) || IsInf(x, 0):
|
/prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/include/ |
cmath | 146 bool isnan(arithmetic x); 317 using ::isnan; 557 return isnan(__lcpp_x); 566 return isnan(__lcpp_x);
|
/test/suite_harness/common/util/src/com/android/compatibility/common/util/ |
InfoStore.java | 195 return Double.isNaN(value) || Double.isInfinite(value);
|
/prebuilts/ndk/r16/sources/third_party/shaderc/third_party/glslang/SPIRV/ |
hex_float.h | 28 bool isnan(double f) function in namespace:std 47 static bool isNan(const Float16& val) { 68 // You must also add a isNan function that returns true if 78 static bool isNan(float f) { return std::isnan(f); } 90 static bool isNan(double f) { return std::isnan(f); } 102 static bool isNan(Float16 f) { return Float16::isNan(f); } 144 bool isNan() { return FloatProxyTraits<T>::isNan(getAsFloat()); [all...] |
/external/clang/lib/Headers/ |
__clang_cuda_cmath.h | 107 __DEVICE__ bool isnan(float __x) { return ::__isnanf(__x); } function 108 __DEVICE__ bool isnan(double __x) { return ::__isnan(__x); } function
|
/external/deqp/external/vulkancts/modules/vulkan/subgroups/ |
vktSubgroupsArithmeticTests.cpp | 230 return "(isnan(" + lhs + ") ? " + rhs + " : (isnan(" + rhs + ") ? " + lhs + " : min(" + lhs + ", " + rhs + ")))"; 237 return "mix(mix(min(" + lhs + ", " + rhs + "), " + lhs + ", isnan(" + rhs + ")), " + rhs + ", isnan(" + lhs + "))"; 248 return "(isnan(" + lhs + ") ? " + rhs + " : (isnan(" + rhs + ") ? " + lhs + " : max(" + lhs + ", " + rhs + ")))"; 255 return "mix(mix(max(" + lhs + ", " + rhs + "), " + lhs + ", isnan(" + rhs + ")), " + rhs + ", isnan(" + lhs + "))";
|
/external/google-styleguide/include/ |
styleguide.js | 93 if (isNaN(level) || level < 1 || level > lowestLevel) continue; 184 if (isNaN(level) || level < 1 || level > lowestLevel) continue;
|
/external/libcxx/test/std/localization/locale.categories/category.numeric/locale.num.get/facet.num.get.members/ |
get_float.pass.cpp | 161 assert(std::isnan(v)); 173 assert(std::isnan(v));
|
/external/tensorflow/tensorflow/core/lib/bfloat16/ |
bfloat16.h | 178 return ::isnan(x); 180 return std::isnan(x);
|
/external/v8/src/arm64/ |
simulator-arm64.cc | [all...] |
/external/vixl/test/aarch32/ |
test-utils-aarch32.cc | 216 if (std::isnan(expected) || (expected == 0.0)) { 244 if (std::isnan(expected) || (expected == 0.0)) {
|
/frameworks/base/core/java/android/animation/ |
KeyframeSet.java | 81 if (Float.isNaN(values[0])) { 89 if (Float.isNaN(values[i])) {
|