Searched defs:zero (Results 1 - 25 of 296) sorted by relevance

1234567891011>>

/external/libcxx/test/std/language.support/support.limits/limits/numeric.limits.members/
H A Dinfinity.pass.cpp28 extern float zero;
53 test<float>(1./zero);
54 test<double>(1./zero);
55 test<long double>(1./zero);
58 float zero = 0; variable
/external/mesa3d/src/glsl/glcpp/tests/
H A D057-empty-arguments.c1 #define zero() success macro
2 zero()
/external/v8/test/mjsunit/
H A Dmath-floor-part2.js51 function zero() { function
H A Dmath-floor-part3.js51 function zero() { function
H A Dmath-abs.js30 function zero() { function
37 assertEquals(0, Math.abs(zero()));
H A Dmath-floor-part4.js51 function zero() { function
58 testFloor(0, zero());
72 // Regression test for a bug where a negative zero coming from Math.floor
H A Dmath-floor-part1.js51 function zero() { function
57 // Ensure that a negative zero coming from Math.floor is properly handled
/external/v8/test/mjsunit/regress/
H A Dregress-996542.js28 var zero = 0; variable
33 assertEquals(-Infinity, one / (zero / minus_one));
35 assertEquals(Infinity, one / (zero / one));
/external/libcxx/test/std/atomics/atomics.flag/
H A Ddefault.pass.cpp29 A& zero = *new (storage) A(); local
30 assert(!zero.test_and_set());
31 zero.~A();
/external/libcxx/test/std/utilities/meta/meta.trans/meta.trans.arr/
H A Dremove_all_extents.pass.cpp16 enum Enum {zero, one_}; enumerator in enum:Enum
H A Dremove_extent.pass.cpp16 enum Enum {zero, one_}; enumerator in enum:Enum
/external/valgrind/none/tests/mips32/
H A Dtest_math.cpp9 volatile float zero = 0.0f; local
10 volatile float result __attribute__((unused)) = 123.0f / zero;
105 /* Test dividing by zero. */
109 // Dividing by zero sets FE_DIVBYZERO.
/external/valgrind/none/tests/mips64/
H A Dtest_math.cpp9 volatile float zero = 0.0f; local
10 volatile float result __attribute__((unused)) = 123.0f / zero;
105 /* Test dividing by zero. */
109 // Dividing by zero sets FE_DIVBYZERO.
/external/vboot_reference/tests/tpm_lite/
H A Dtpmtest_globallock.c18 uint32_t zero = 0; local
26 TPM_CHECK(TlclWrite(INDEX0, (uint8_t*) &zero, sizeof(uint32_t)));
28 TPM_CHECK(TlclWrite(INDEX1, (uint8_t*) &zero, sizeof(uint32_t)));
/external/compiler-rt/test/asan/TestCases/Windows/
H A Ddll_seh.cc30 int local, zero = 0; local
32 local = 5 / zero;
H A Dseh.cc28 int local, zero = 0; local
30 local = 5 / zero;
/external/compiler-rt/test/asan/TestCases/
H A Dlarge_func_test.cc10 static void LargeFunction(int *x, int zero) { argument
25 x[zero + 103]++; // we should report this exact line
/external/libcxx/test/std/atomics/atomics.types.generic/
H A Dbool.pass.cpp233 A& zero = *new (storage) A(); local
234 assert(zero == false);
235 zero.~A();
/external/libcxx/test/std/utilities/meta/meta.unary/meta.unary.cat/
H A Denum.pass.cpp46 enum Enum {zero, one}; enumerator in enum:Enum
/external/libcxx/test/std/utilities/meta/meta.unary/meta.unary.comp/
H A Denum.pass.cpp37 enum Enum {zero, one}; enumerator in enum:Enum
/external/v8/test/mjsunit/compiler/
H A Dmath-floor-local.js44 function zero() { function
51 testFloor(0, zero());
57 // Ensure that a negative zero coming from Math.floor is properly handled
149 // Regression test for a bug where a negative zero coming from Math.floor
/external/valgrind/drd/tests/
H A Dnew_delete.cpp7 int zero = 0; local
13 q = new int[zero];
/external/clang/test/Analysis/
H A Dptr-arith.cpp5 int zero; member in struct:X
11 zero = 1;
17 littleX.zero = 0;
20 return 5/littleX.zero; // no-warning
/external/clang/test/CodeGenCXX/
H A Dms-integer-static-data-members-exported.cpp3 enum Enum { zero, one, two }; enumerator in enum:Enum
/external/clang/test/Preprocessor/
H A Dmacro_fn.c4 #define zero() 0 /* expected-note 2 {{defined here}} */ macro
10 zero()
11 zero(1); /* expected-error {{too many arguments provided to function-like macro invocation}} */
12 zero(1, 2, 3); /* expected-error {{too many arguments provided to function-like macro invocation}} */

Completed in 611 milliseconds

1234567891011>>