HomeSort by relevance Sort by last modified time
    Searched refs:NaN (Results 151 - 175 of 736) sorted by null

1 2 3 4 5 67 8 91011>>

  /prebuilts/go/darwin-x86/src/math/
dim_amd64.s 8 #define NaN 0x7FF8000000000001
27 dim3: // (NaN, x) or (x, NaN)
45 MOVQ $NaN, AX
59 // NaN special cases
79 isMaxNaN: // return NaN
80 MOVQ $NaN, AX
103 // NaN special cases
123 isMinNaN: // return NaN
124 MOVQ $NaN, A
    [all...]
dim_s390x.s 10 #define NaN 0x7FF8000000000001
25 dim3: // (NaN, x) or (x, NaN)
45 MOVD $NaN, R4
57 // NaN special cases
78 isMaxNaN: // return NaN
79 MOVD $NaN, R4
99 // NaN special cases
120 isMinNaN: // return NaN
121 MOVD $NaN, R
    [all...]
ldexp.go 13 // Ldexp(NaN, exp) = NaN
dim_arm64.s 8 #define NaN 0x7FF8000000000001
36 MOVD $NaN, R0
  /prebuilts/go/linux-x86/src/math/
dim_amd64.s 8 #define NaN 0x7FF8000000000001
27 dim3: // (NaN, x) or (x, NaN)
45 MOVQ $NaN, AX
59 // NaN special cases
79 isMaxNaN: // return NaN
80 MOVQ $NaN, AX
103 // NaN special cases
123 isMinNaN: // return NaN
124 MOVQ $NaN, A
    [all...]
dim_s390x.s 10 #define NaN 0x7FF8000000000001
25 dim3: // (NaN, x) or (x, NaN)
45 MOVD $NaN, R4
57 // NaN special cases
78 isMaxNaN: // return NaN
79 MOVD $NaN, R4
99 // NaN special cases
120 isMinNaN: // return NaN
121 MOVD $NaN, R
    [all...]
ldexp.go 13 // Ldexp(NaN, exp) = NaN
dim_arm64.s 8 #define NaN 0x7FF8000000000001
36 MOVD $NaN, R0
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/test/numerics/complex.number/complex.value.ops/
abs.pass.cpp 47 case NaN:
norm.pass.cpp 47 case NaN:
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/numerics/complex.number/complex.value.ops/
abs.pass.cpp 47 case NaN:
norm.pass.cpp 47 case NaN:
  /art/test/411-optimizing-arith-mul/src/
Main.java 65 throw new Error("Expected NaN: " + a);
71 throw new Error("Expected NaN: " + a);
121 expectNaN($opt$Mul(Float.NaN, 11F));
122 expectNaN($opt$Mul(Float.NaN, -11F));
123 expectNaN($opt$Mul(Float.NaN, Float.NEGATIVE_INFINITY));
124 expectNaN($opt$Mul(Float.NaN, Float.POSITIVE_INFINITY));
150 expectNaN($opt$Mul(Double.NaN, 11D));
151 expectNaN($opt$Mul(Double.NaN, -11D));
152 expectNaN($opt$Mul(Double.NaN, Double.NEGATIVE_INFINITY));
153 expectNaN($opt$Mul(Double.NaN, Double.POSITIVE_INFINITY))
    [all...]
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/div_double/
Test_div_double.java 66 assertEquals(Double.NaN, t.run(Double.POSITIVE_INFINITY,
92 assertEquals(Double.NaN, t.run(0, 0));
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/div_double_2addr/
Test_div_double_2addr.java 66 assertEquals(Double.NaN, t.run(Double.POSITIVE_INFINITY,
92 assertEquals(Double.NaN, t.run(0, 0));
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/neg_double/
Test_neg_double.java 60 * @title Argument = Double.NaN
64 assertEquals(Double.NaN, t.run(Double.NaN));
  /cts/tools/vm-tests-tf/src/dot/junit/opcodes/neg_float/
Test_neg_float.java 59 * @title Argument = Float.NaN
63 assertEquals(Float.NaN, t.run(Float.NaN));
  /external/apache-commons-math/src/main/java/org/apache/commons/math/random/
BitsStreamGenerator.java 36 nextGaussian = Double.NaN;
110 nextGaussian = Double.NaN;
  /external/caliper/examples/src/main/java/examples/
DoubleToStringBenchmark.java 71 NaN(Double.NaN);
DoubleToStringBenchmark2.java 32 NaN(Double.NaN);
  /frameworks/base/core/java/android/view/inputmethod/
CursorAnchorInfo.java 74 * {@code java.lang.Float.NaN} when no value is specified.
81 * {@code java.lang.Float.NaN} when no value is specified.
88 * {@code java.lang.Float.NaN} when no value is specified.
95 * {@code java.lang.Float.NaN} when no value is specified.
175 * {@link Float#NaN} at the same time.
226 // NaN, 0.0f, and -0.0f.
262 private float mInsertionMarkerHorizontal = Float.NaN;
263 private float mInsertionMarkerTop = Float.NaN;
264 private float mInsertionMarkerBaseline = Float.NaN;
265 private float mInsertionMarkerBottom = Float.NaN;
    [all...]
  /libcore/luni/src/test/java/libcore/java/lang/
OldDoubleTest.java 33 assertEquals(0x7ff8000000000000L, Double.doubleToLongBits(Double.NaN));
39 assertEquals(0x7ff8000000000000L, Double.doubleToLongBits(Double.NaN));
  /prebuilts/go/darwin-x86/src/runtime/
softfloat64.go 29 func funpack64(f uint64) (sign, mant uint64, exp int, inf, nan bool) {
37 nan = true
61 func funpack32(f uint32) (sign, mant uint32, exp int, inf, nan bool) {
69 nan = true
201 case fn || gn: // NaN + x or x + NaN = NaN
204 case fi && gi && fs != gs: // +Inf + -Inf or -Inf + +Inf = NaN
264 case fn || gn: // NaN * g or f * NaN = Na
    [all...]
  /prebuilts/go/linux-x86/src/runtime/
softfloat64.go 29 func funpack64(f uint64) (sign, mant uint64, exp int, inf, nan bool) {
37 nan = true
61 func funpack32(f uint32) (sign, mant uint32, exp int, inf, nan bool) {
69 nan = true
201 case fn || gn: // NaN + x or x + NaN = NaN
204 case fi && gi && fs != gs: // +Inf + -Inf or -Inf + +Inf = NaN
264 case fn || gn: // NaN * g or f * NaN = Na
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/ode/events/
EventState.java 103 t0 = Double.NaN;
104 g0 = Double.NaN;
107 pendingEventTime = Double.NaN;
108 previousEventTime = Double.NaN;
303 pendingEventTime = Double.NaN;
375 pendingEventTime = Double.NaN;

Completed in 5094 milliseconds

1 2 3 4 5 67 8 91011>>