HomeSort by relevance Sort by last modified time
    Searched refs:NAN (Results 76 - 92 of 92) sorted by null

1 2 34

  /prebuilts/ndk/8/platforms/android-9/arch-arm/usr/include/
math.h 69 #define NAN __builtin_nan("")
74 #define NAN (__nan.__uf)
  /prebuilts/ndk/8/platforms/android-9/arch-mips/usr/include/
math.h 69 #define NAN __builtin_nan("")
74 #define NAN (__nan.__uf)
  /prebuilts/ndk/8/platforms/android-9/arch-x86/usr/include/
math.h 69 #define NAN __builtin_nan("")
74 #define NAN (__nan.__uf)
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
Utils.java 81 public final static int NAN = 0x1;
334 * <li>{@link #NAN}: if the value is infinite or not a number</li>
347 level = NAN;
378 } else if ((confidence & NAN) != 0) {
ScenarioStatusTable.java 153 if (!hasFailure|| (confidence & Utils.NAN) != 0 || failure.length() == 0){
221 this.stream.print("\">): mark an <b>undefined result</b>, which means that deviation on this test is not a number (<code>NaN</code>) or is infinite (happens when the reference value is equals to 0!)</li>");
  /packages/apps/Calculator/src/com/android/calculator2/
Logic.java 47 // the two strings below are the result of Double.toString() for Infinity & NaN
50 private static final String NAN = "NaN";
282 if (result.equals(NAN)) { // treat NaN as Error
  /external/libxml2/
trionan.c 99 * to indicate special numbers (e.g. NaN and Infinity), so the
163 /* Bit-pattern for quiet NaN */
318 Generate NaN.
320 @return Floating-point representation of NaN.
331 result = nan("");
333 #elif defined(NAN) && defined(__STDC_IEC_559__)
334 result = (double)NAN;
341 * There are several ways to generate NaN. The one used here is
346 * This may fail if the hardware does not support NaN, or if
365 Check for NaN
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/effect/
ParticleEmitter.java 98 private Vector3f faceNormal = new Vector3f(Vector3f.NAN);
412 this.faceNormal.set(Vector3f.NAN);
    [all...]
  /external/valgrind/main/none/tests/ppc32/
testVMX.c 261 /* Redefinition for undefined NAN and xlC compiling C++ code */
262 # if !defined(NAN) || ( defined(__IBMCPP__) && defined(XLC_COMPILER) )
263 # undef NAN
264 # define NAN 0x7FC00000
265 /* # define NAN 0xFFFA5A5A
266 * # define NAN 0x80000000
267 * # define NAN 0x00008000
    [all...]
  /external/v8/src/
platform-posix.cc 160 // NAN from math.h is defined in C99 and not in POSIX.
161 return NAN;
platform-win32.cc     [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/math/
Vector3f.java 59 public final static Vector3f NAN = new Vector3f(Float.NaN, Float.NaN, Float.NaN);
859 * Check a vector... if it is null or its floats are NaN or infinite,
    [all...]
Vector4f.java 54 public final static Vector4f NAN = new Vector4f(Float.NaN, Float.NaN, Float.NaN, Float.NaN);
810 * Check a vector... if it is null or its floats are NaN or infinite,
  /external/webkit/Source/WebKit/mac/History/
WebHistory.mm 166 static NSTimeInterval cachedBeginningOfDay = NAN;
  /bionic/libc/stdlib/
strtod.c 1071 return NAN;
1273 return NAN; /* for lack of better value ? */
1391 /* "NAN" or "NAN(n-char-sequence-opt)" */
1392 if (tolower((unsigned char)*s) == 'n' && strncasecmp(s, "nan", 3) == 0) {
1393 /* Build a quiet NaN. */
    [all...]
  /external/v8/test/cctest/
test-assembler-mips.cc     [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/
performanceui.jar 

Completed in 268 milliseconds

1 2 34