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

12345678

/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
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...]
H A Dkeyed-call-generic.js72 function zero () { return 0; } function
76 var fixed_array = [zero, one, two];
78 var dict_array = [ zero, one, two ];
81 var fast_prop = { zero: zero, one: one, two: two };
83 var normal_prop = { zero: zero, one: one, two: two };
88 var first3str = ['zero', 'one', 'two'];
113 testException([zero, one, /* hole */ ], [0, 1, 2], [false, false, true]);
/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/compiler-rt/lib/asan/lit_tests/
H A Dlarge_func_test.cc20 static void LargeFunction(int *x, int zero) { argument
35 x[zero + 103]++; // we should report this exact line
H A Dthrow_call_test.cc5 static volatile int zero = 0; variable
13 if (zero == 0)
H A Dthrow_invoke_test.cc4 static volatile int zero = 0; variable
13 if (zero == 0)
15 else if (zero == 1)
/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,
H A Drsa_import.c30 void *zero; local
98 if ((err = mp_init(&zero)) != CRYPT_OK) {
103 LTC_ASN1_INTEGER, 1UL, zero,
113 mp_clear(zero);
116 mp_clear(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
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
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/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 */
H A De_remainder.c26 static const double zero = 0.0; variable
28 static double zero = 0.0; variable
60 if (((hx-hp)|(lx-lp))==0) return zero*x;
H A Dk_standard.c27 static double zero = 0.0; /* used as const */ variable
102 exc.retval = zero;
116 exc.retval = zero;
132 exc.retval = zero;
188 exc.retval = zero;
401 exc.retval = zero;
415 if(x<zero&&ieee_rint(y)!=y) exc.retval = -HUGE;
419 if(x<zero&&ieee_rint(y)!=y) exc.retval = -HUGE_VAL;
431 exc.retval = zero;
443 exc.retval = zero;
[all...]
H A De_log10.c59 static double zero = 0.0; variable
78 return -two54/zero; /* ieee_log(+-0)=-inf */
79 if (hx<0) return (x-x)/zero; /* ieee_log(-#) = NaN */
/external/valgrind/main/none/tests/s390x/
H A Dxc.c9 char zero[2] = "\0\0"; local
12 asm volatile ("oc %O0(1,%R0),%0\n"::"Q" (*zero),
13 "Q"(*zero):"memory");
15 dump_field(zero, 2);
27 char zero[2] = "\0\0"; local
30 asm volatile ("nc %O0(1,%R0),%0\n"::"Q" (*zero),
31 "Q"(*zero):"memory");
33 dump_field(zero, 2);
47 char zero[300] = local
56 asm volatile ("xc %O0(1,%R0),%0\n"::"Q" (*zero),
[all...]
/external/clang/test/Analysis/inlining/
H A Dpath-notes.c5 void zero(int **p) { function
11 zero(&a);
12 // expected-note@-1 {{Calling 'zero'}}
13 // expected-note@-2 {{Returning from 'zero'}}
140 // CHECK-NEXT: <string>Calling &apos;zero&apos;</string>
142 // CHECK-NEXT: <string>Calling &apos;zero&apos;</string>
246 // CHECK-NEXT: <string>Returning from &apos;zero&apos;</string>
248 // CHECK-NEXT: <string>Returning from &apos;zero&apos;</string>
/external/clang/test/CXX/basic/basic.lookup/basic.lookup.qual/namespace.qual/
H A Dp2.cpp4 int zero = 0; // expected-note {{candidate found by name lookup is 'Ints::zero'}} member in namespace:Ints
10 float zero = 0.0f; // expected-note {{candidate found by name lookup is 'Floats::zero'}} member in namespace:Floats
21 int i = Ints::zero;
24 float f = Floats::zero;
27 double n = Numbers::zero; // expected-error {{reference to 'zero' is ambiguous}}
38 Number zero(0.0f);
43 Numbers::Number n = Numbers::zero;
[all...]
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/h264/
H A DBTree.java30 private BTree zero; field in class:BTree
48 if (zero == null)
49 zero = new BTree();
50 branch = zero;
61 return zero;
/external/oprofile/libutil++/
H A Dgrowable_vector.h95 bool zero() const { function in class:growable_vector

Completed in 303 milliseconds

12345678