HomeSort by relevance Sort by last modified time
    Searched full:isnan (Results 176 - 200 of 1592) sorted by null

1 2 3 4 5 6 78 91011>>

  /prebuilts/go/linux-x86/src/math/
bits.go 33 // IsNaN reports whether f is an IEEE 754 ``not-a-number'' value.
34 func IsNaN(f float64) (is bool) {
frexp.go 23 case IsInf(f, 0) || IsNaN(f):
ldexp.go 21 case IsInf(frac, 0) || IsNaN(frac):
  /prebuilts/go/linux-x86/src/runtime/
sqrt_test.go 36 case math.IsNaN(a) && math.IsNaN(b):
  /device/linaro/bootloader/edk2/StdLib/LibC/Math/
w_acos.c 34 if(_LIB_VERSION == _IEEE_ || isnan(x)) return z;
w_asin.c 35 if(_LIB_VERSION == _IEEE_ || isnan(x)) return z;
w_cosh.c 33 if(_LIB_VERSION == _IEEE_ || isnan(x)) return z;
w_log.c 34 if(_LIB_VERSION == _IEEE_ || isnan(x) || x > 0.0) return z;
w_sqrt.c 33 if(_LIB_VERSION == _IEEE_ || isnan(x)) return z;
  /external/libcxx/test/libcxx/numerics/c.math/
fdelayed-template-parsing.sh.cpp 25 assert(!std::isnan(1.0));
  /external/llvm/test/Object/
archive-delete.test 28 CHECK-NEXT: IsNAN.o
archive-toc.test 7 GNU-NEXT: rw-r--r-- 500/500 2280 2004-11-19 03:04:30.000000000 IsNAN.o
17 OSX-NEXT: rw-r--r-- 501/501 2280 2004-11-19 04:32:06.000000000 IsNAN.o
28 CHECK-NEXT: rw-r--r-- 1002/102 2280 2004-11-19 03:24:02.000000000 IsNAN.o
36 THIN-NEXT: rw-r--r-- 1000/1000 2280 2014-12-16 00:56:27.000000000 IsNAN.o
  /external/protobuf/src/google/protobuf/util/
field_comparator.cc 174 MathLimits<T>::IsNaN(value_1) && MathLimits<T>::IsNaN(value_2)) {
180 MathLimits<T>::IsNaN(value_1) && MathLimits<T>::IsNaN(value_2)) {
  /external/swiftshader/third_party/LLVM/test/Archive/
README.txt 20 IsNAN.o - a Linux native binary
  /external/tensorflow/tensorflow/core/kernels/
cwise_op_gpu_isnan.cu.cc 22 DEFINE_UNARY3(isnan, Eigen::half, float, double);
  /libcore/luni/src/test/java/libcore/java/lang/
OldAndroidStrictMathTest.java 95 assertTrue("Should return Double.NaN", Double.isNaN(StrictMath
150 assertTrue("Should return NaN", Double.isNaN(StrictMath
190 assertTrue("Should return NaN", Double.isNaN(StrictMath.expm1(Double.NaN)));
245 assertTrue("Should return NaN", Double.isNaN(StrictMath.hypot(Double.NaN,
247 assertTrue("Should return NaN", Double.isNaN(StrictMath.hypot(-345.2680,
286 assertTrue("Should return NaN", Double.isNaN(StrictMath
288 assertTrue("Should return NaN", Double.isNaN(StrictMath
317 assertTrue("Should return NaN", Double.isNaN(StrictMath
319 assertTrue("Should return NaN", Double.isNaN(StrictMath
437 assertTrue("Failed to round properly - NaN", Double.isNaN(StrictMat
    [all...]
OldAndroidMathTest.java 155 assertTrue("Should return Double.NaN", Double.isNaN(Math
201 assertTrue(Double.isNaN(Math.cosh(Double.NaN)));
236 assertTrue("Should return NaN", Double.isNaN(Math.expm1(Double.NaN)));
289 assertTrue("Should be NaN", Double.isNaN(Math.hypot(Double.NaN,
291 assertTrue("Should be NaN", Double.isNaN(Math.hypot(-345.2680,
326 assertTrue(Double.isNaN(Math.log10(Double.NaN)));
327 assertTrue(Double.isNaN(Math.log10(-2541.05745687234187532)));
328 assertTrue(Double.isNaN(Math.log10(-0.1)));
345 assertTrue("Should return NaN", Double.isNaN(Math.log1p(Double.NaN)));
346 assertTrue("Should return NaN", Double.isNaN(Math.log1p(-32.0482175)))
    [all...]
  /prebuilts/go/darwin-x86/src/math/
frexp.go 23 case IsInf(f, 0) || IsNaN(f):
ldexp.go 21 case IsInf(frac, 0) || IsNaN(frac):
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/libcxx/numerics/c.math/
fdelayed-template-parsing.sh.cpp 25 assert(!std::isnan(1.0));
  /external/apache-commons-math/src/main/java/org/apache/commons/math/special/
Beta.java 122 if (Double.isNaN(x) || Double.isNaN(a) || Double.isNaN(b) || (x < 0) ||
193 if (Double.isNaN(a) || Double.isNaN(b) || (a <= 0.0) || (b <= 0.0)) {
  /external/vulkan-validation-layers/libs/glm/detail/
func_common.inl 710 GLM_FUNC_QUALIFIER bool isnan(genType const & x)
714 "'isnan' only accept floating-point inputs");
722 return std::isnan(x);
725 return isnan(x) != 0;
727 return std::isnan(x);
732 GLM_FUNC_QUALIFIER typename detail::tvec2<T, P>::bool_type isnan
739 "'isnan' only accept floating-point inputs");
742 isnan(x.x),
743 isnan(x.y));
747 GLM_FUNC_QUALIFIER typename detail::tvec3<T, P>::bool_type isnan
    [all...]
  /hardware/interfaces/thermal/1.0/vts/functional/
VtsHalThermalV1_0TargetTest.cpp 144 isnan(temperature.currentValue));
151 isnan(temperature.currentValue) || isnan(temperature.shutdownThreshold));
155 isnan(temperature.throttlingThreshold) || isnan(temperature.shutdownThreshold));
  /prebuilts/ndk/r16/sources/third_party/vulkan/src/libs/glm/detail/
func_common.inl 710 GLM_FUNC_QUALIFIER bool isnan(genType const & x)
714 "'isnan' only accept floating-point inputs");
722 return std::isnan(x);
725 return isnan(x) != 0;
727 return std::isnan(x);
732 GLM_FUNC_QUALIFIER typename detail::tvec2<T, P>::bool_type isnan
739 "'isnan' only accept floating-point inputs");
742 isnan(x.x),
743 isnan(x.y));
747 GLM_FUNC_QUALIFIER typename detail::tvec3<T, P>::bool_type isnan
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
StrictMathTest.java 130 assertTrue("Should return Double.NaN", Double.isNaN(StrictMath
195 assertTrue("The result should be NaN.", Double.isNaN(StrictMath
217 assertTrue("The result should be NaN.", Double.isNaN(StrictMath
260 assertTrue("The result should be NaN.", Float.isNaN(StrictMath
281 assertTrue("The result should be NaN.", Float.isNaN(StrictMath
323 assertTrue("Should return NaN", Double.isNaN(StrictMath
369 assertTrue("Should return NaN", Double.isNaN(StrictMath.expm1(Double.NaN)));
471 assertTrue("Should return NaN", Double.isNaN(StrictMath.hypot(Double.NaN,
473 assertTrue("Should return NaN", Double.isNaN(StrictMath.hypot(-345.2680,
521 assertTrue("Should return NaN", Double.isNaN(StrictMat
    [all...]

Completed in 3798 milliseconds

1 2 3 4 5 6 78 91011>>