HomeSort by relevance Sort by last modified time
    Searched defs:NAN (Results 1 - 25 of 74) sorted by null

1 2 3

  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/i386-linux-gnu/bits/
nan.h 0 /* `NAN' constant for IEEE 754 machines.
21 # error "Never use <bits/nan.h> directly; include <math.h> instead."
29 # define NAN (__builtin_nanf (""))
33 # define NAN \
51 # define NAN (__nan_union.__d)
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/bits/
nan.h 0 /* `NAN' constant for IEEE 754 machines.
21 # error "Never use <bits/nan.h> directly; include <math.h> instead."
29 # define NAN (__builtin_nanf (""))
33 # define NAN \
51 # define NAN (__nan_union.__d)
  /hardware/interfaces/wifi/1.2/default/tests/
mock_wifi_legacy_hal.cpp 21 #undef NAN // This is weird, NAN is defined in bionic/libc/include/math.h:38
mock_wifi_mode_controller.cpp 21 #undef NAN // This is weird, NAN is defined in bionic/libc/include/math.h:38
hidl_struct_util_unit_tests.cpp 21 #undef NAN
wifi_chip_unit_tests.cpp 21 #undef NAN // This is weird, NAN is defined in bionic/libc/include/math.h:38
142 } else if (type == IfaceType::NAN) {
192 } else if (type == IfaceType::NAN) {
254 ASSERT_TRUE(createIface(IfaceType::NAN).empty());
285 ASSERT_TRUE(createIface(IfaceType::NAN).empty());
289 // Mode 1 - STA + P2P/NAN
313 ASSERT_FALSE(createIface(IfaceType::NAN).empty());
332 ASSERT_FALSE(createIface(IfaceType::NAN).empty());
340 ASSERT_TRUE(createIface(IfaceType::NAN).empty())
    [all...]
  /external/v8/src/base/
win32-headers.h 69 #undef NAN
  /external/python/cpython3/Lib/test/test_json/
test_enum.py 27 NAN = float('nan')
32 nan = NAN variable in class:WierdNum
43 for enum, expected in zip(WierdNum, ('Infinity', '-Infinity', 'NaN')):
68 '[Infinity, -Infinity, NaN]')
80 i:'Infinity', j:'-Infinity', n:'NaN',
92 self.assertEqual(nd['NaN'], 'NaN')
105 n=WierdNum.nan,
    [all...]
  /external/valgrind/none/tests/ppc32/
power5+_round.c 37 #define NAN 0x11000
44 double inf, neg0, nan; local
54 nan = strtod("nan", NULL);
59 double set[] = { inf, 1.5, 0, neg0, -1.5, -inf, nan };
84 double set[] = { inf, 1.9, 1.1, 0, neg0, -1.1, -1.9, -inf, nan };
85 double frin[] = { inf, 2.0, 1.0, 0, neg0, -1.0, -2.0, -inf, nan };
86 double friz[] = { inf, 1.0, 1.0, 0, neg0, -1.0, -1.0, -inf, nan };
87 double frip[] = { inf, 2.0, 2.0, 0, neg0, -1.0, -1.0, -inf, nan };
88 double frim[] = { inf, 1.0, 1.0, 0, neg0, -2.0, -2.0, -inf, nan };
    [all...]
  /bionic/libc/include/
math.h 38 #define NAN __builtin_nanf("")
279 double nan(const char* __kind) __attribute_const__ __INTRODUCED_IN_ARM(13) __INTRODUCED_IN_MIPS(13) __INTRODUCED_IN_X86(9);
281 long double nanl(const char* __kind) __RENAME_LDBL(nan, 13, 13) __attribute_const__;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_cmath.py 8 NAN = float('nan')
34 (NAN, -INF),
35 (NAN, -2.3),
36 (NAN, -0.0),
37 (NAN, 0.0),
38 (NAN, 2.3),
39 (NAN, INF),
40 (-INF, NAN),
41 (-2.3, NAN),
    [all...]
test_complex.py 8 NAN = float("nan")
465 self.assertEqual(repr(complex(NAN, 1)), "(nan+1j)")
466 self.assertEqual(repr(complex(1, NAN)), "(1+nanj)")
467 self.assertEqual(repr(complex(NAN, NAN)), "(nan+nanj)")
471 self.assertEqual(repr(complex(0, NAN)), "nanj")
517 vals = [0.0, 1e-500, 1e-315, 1e-200, 0.0123, 3.1415, 1e50, INF, NAN]
    [all...]
test_math.py 13 NAN = float('nan')
37 """Convert a non-NaN float x to an integer, in such a way that
52 """Given non-NaN floats `expected` and `got`,
64 """Determine whether non-NaN floats a and b are equal to within a
70 # need to special case infinities, since inf - inf gives nan
153 self.assertTrue(math.isnan(math.acos(NAN)))
163 self.assertTrue(math.isnan(math.acosh(NAN)))
172 self.assertTrue(math.isnan(math.asin(NAN)))
181 self.assertTrue(math.isnan(math.asinh(NAN)))
    [all...]
  /device/linaro/bootloader/edk2/StdLib/Include/
math.h 403 /* 7.12#5 NAN: a quiet NaN, if supported */
406 #define NAN __nanf.__val
  /external/python/cpython2/Lib/test/
test_cmath.py 8 NAN = float('nan')
34 (NAN, -INF),
35 (NAN, -2.3),
36 (NAN, -0.0),
37 (NAN, 0.0),
38 (NAN, 2.3),
39 (NAN, INF),
40 (-INF, NAN),
41 (-2.3, NAN),
    [all...]
test_complex.py 8 NAN = float("nan")
111 for denom_real, denom_imag in [(0, NAN), (NAN, 0), (NAN, NAN)]:
470 self.assertEqual(repr(complex(NAN, 1)), "(nan+1j)")
471 self.assertEqual(repr(complex(1, NAN)), "(1+nanj)")
472 self.assertEqual(repr(complex(NAN, NAN)), "(nan+nanj)"
    [all...]
test_math.py 13 NAN = float('nan')
37 """Convert a non-NaN float x to an integer, in such a way that
52 """Given non-NaN floats `expected` and `got`,
64 """Determine whether non-NaN floats a and b are equal to within a
70 # need to special case infinities, since inf - inf gives nan
153 self.assertTrue(math.isnan(math.acos(NAN)))
163 self.assertTrue(math.isnan(math.acosh(NAN)))
172 self.assertTrue(math.isnan(math.asin(NAN)))
181 self.assertTrue(math.isnan(math.asinh(NAN)))
    [all...]
  /external/python/cpython3/Lib/test/
test_cmath.py 12 NAN = float('nan')
38 (NAN, -INF),
39 (NAN, -2.3),
40 (NAN, -0.0),
41 (NAN, 0.0),
42 (NAN, 2.3),
43 (NAN, INF),
44 (-INF, NAN),
45 (-2.3, NAN),
    [all...]
test_complex.py 11 NAN = float("nan")
109 for denom_real, denom_imag in [(0, NAN), (NAN, 0), (NAN, NAN)]:
394 for x in 0.0, -0.0, INF, -INF, NAN:
395 for y in 0.0, -0.0, INF, -INF, NAN:
450 test(complex(NAN, 1), "(nan+1j)"
    [all...]
  /hardware/qcom/msm8998/json-c/
json_tokener.c 54 /* Use C99 NAN by default; if not available, nan("") should work too. */
55 #ifndef NAN
56 #define NAN nan("")
57 #endif /* !NAN */
63 static const char json_nan_str[] = "NaN";
299 state = json_tokener_state_null; // or NaN
411 current = json_object_new_double(NAN);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
xmath.h 67 #define NAN _NANCODE
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_cmath.py 8 NAN = float('nan')
34 (NAN, -INF),
35 (NAN, -2.3),
36 (NAN, -0.0),
37 (NAN, 0.0),
38 (NAN, 2.3),
39 (NAN, INF),
40 (-INF, NAN),
41 (-2.3, NAN),
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_cmath.py 8 NAN = float('nan')
34 (NAN, -INF),
35 (NAN, -2.3),
36 (NAN, -0.0),
37 (NAN, 0.0),
38 (NAN, 2.3),
39 (NAN, INF),
40 (-INF, NAN),
41 (-2.3, NAN),
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_cmath.py 8 NAN = float('nan')
34 (NAN, -INF),
35 (NAN, -2.3),
36 (NAN, -0.0),
37 (NAN, 0.0),
38 (NAN, 2.3),
39 (NAN, INF),
40 (-INF, NAN),
41 (-2.3, NAN),
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_cmath.py 8 NAN = float('nan')
34 (NAN, -INF),
35 (NAN, -2.3),
36 (NAN, -0.0),
37 (NAN, 0.0),
38 (NAN, 2.3),
39 (NAN, INF),
40 (-INF, NAN),
41 (-2.3, NAN),
    [all...]

Completed in 839 milliseconds

1 2 3