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

1234567891011>>

/external/chromium_org/third_party/mesa/src/src/glsl/glcpp/tests/
H A D057-empty-arguments.c1 #define zero() success macro
2 zero()
/external/chromium_org/v8/test/mjsunit/
H A Dmath-floor-part2.js42 function zero() { function
H A Dmath-floor-part3.js42 function zero() { function
H A Dmath-abs.js30 function zero() { function
37 assertEquals(0, Math.abs(zero()));
H A Dmath-floor-part4.js42 function zero() { function
49 testFloor(0, zero());
63 // Regression test for a bug where a negative zero coming from Math.floor
H A Dmath-floor-part1.js42 function zero() { function
48 // Ensure that a negative zero coming from Math.floor is properly handled
H A Dsmi-negative-zero.js30 var zero = 0; variable
40 assertEquals(-Infinity, one / (-zero), "one / -0 I");
42 assertEquals(-Infinity, one / (zero * minus_one), "one / -1");
43 assertEquals(-Infinity, one / (minus_one * zero), "one / -0 II");
44 assertEquals(Infinity, one / (zero * zero), "one / 0 I");
47 assertEquals(-Infinity, one / (zero / minus_one), "one / -0 III");
48 assertEquals(Infinity, one / (zero / one), "one / 0 II");
58 assertEquals(-Infinity, one / (-1 * zero), "bar2");
59 assertEquals(Infinity, one / (0 * zero), "bar
[all...]
/external/chromium_org/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/mesa3d/src/glsl/glcpp/tests/
H A D057-empty-arguments.c1 #define zero() success macro
2 zero()
/external/v8/test/mjsunit/
H A Dmath-abs.js30 function zero() { function
37 assertEquals(0, Math.abs(zero()));
H A Dmath-floor.js42 function zero() { function
49 testFloor(0, zero());
55 // Ensure that a negative zero coming from Math.floor is properly handled
146 // Regression test for a bug where a negative zero coming from Math.floor
/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/chromium_org/ui/gfx/
H A Dpoint3_unittest.cc59 Point3F zero; local
60 zero.Scale(2.f);
61 zero.Scale(6.f, 3.f, 1.5f);
62 EXPECT_EQ(Point3F().ToString(), zero.ToString());
H A Dpoint_unittest.cc109 PointF zero; local
112 zero.Scale(2);
113 zero.Scale(3, 1.5);
118 EXPECT_EQ(PointF().ToString(), zero.ToString());
/external/chromium_org/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
H A Dmath-floor-global.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/compiler-rt/lib/asan/lit_tests/TestCases/
H A Dlarge_func_test.cc12 static void LargeFunction(int *x, int zero) { argument
27 x[zero + 103]++; // we should report this exact line
/external/dropbear/libtomcrypt/src/pk/katja/
H A Dkatja_export.c31 unsigned long zero=0; local
48 LTC_ASN1_SHORT_INTEGER, 1UL, &zero,
61 /* clear zero and return */
H A Dkatja_import.c30 void *zero; local
37 if ((err = mp_init_multi(&zero, &key->d, &key->N, &key->dQ,
51 LTC_ASN1_INTEGER, 1UL, zero,
68 mp_clear(zero);
71 mp_clear_multi(zero, key->d, key->N, key->dQ, key->dP,
/external/dropbear/libtomcrypt/src/pk/rsa/
H A Drsa_export.c30 unsigned long zero=0; local
46 LTC_ASN1_SHORT_INTEGER, 1UL, &zero,
/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
148 // Regression test for a bug where a negative zero coming from Math.floor
/external/valgrind/main/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/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}} */
/external/fdlibm/
H A De_atanh.c41 static double zero = 0.0; variable
59 return x/zero;
60 if(ix<0x3e300000&&(huge+x)>zero) return x; /* x<2**-28 */

Completed in 669 milliseconds

1234567891011>>