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

1 2 3 4 5 6 7 8 9

  /external/dropbear/libtomcrypt/src/pk/rsa/
rsa_export.c 30 unsigned long zero=0; local
46 LTC_ASN1_SHORT_INTEGER, 1UL, &zero,
  /external/v8/test/mjsunit/
math-floor.js 30 function zero() { function
37 assertEquals(0, Math.floor(zero()));
math-abs.js 30 function zero() { function
37 assertEquals(0, Math.abs(zero()));
smi-negative-zero.js 30 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), "bar3")
    [all...]
keyed-call-generic.js 72 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/dropbear/libtomcrypt/src/pk/katja/
katja_export.c 31 unsigned long zero=0; local
48 LTC_ASN1_SHORT_INTEGER, 1UL, &zero,
61 /* clear zero and return */
katja_import.c 30 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/mesa3d/src/glsl/glcpp/tests/
057-empty-arguments.c 1 #define zero() success macro
2 zero()
  /external/v8/test/mjsunit/regress/
regress-996542.js 28 var zero = 0; variable
33 assertEquals(-Infinity, one / (zero / minus_one));
35 assertEquals(Infinity, one / (zero / one));
  /external/valgrind/main/drd/tests/
new_delete.cpp 7 int zero = 0; local
13 q = new int[zero];
  /bionic/libm/src/
e_remainderf.c 23 static const float zero = 0.0; variable
47 if ((hx-hp)==0) return zero*x;
e_atanh.c 41 static const double zero = 0.0; variable
54 return x/zero;
55 if(ix<0x3e300000&&(huge+x)>zero) return x; /* x<2**-28 */
e_atanhf.c 25 static const float zero = 0.0; variable
37 return x/zero;
38 if(ix<0x31800000&&(huge+x)>zero) return x; /* x<2**-28 */
e_remainder.c 30 static const double zero = 0.0; variable
55 if (((hx-hp)|(lx-lp))==0) return zero*x;
  /external/clang/test/Preprocessor/
macro_fn.c 4 #define zero() 0 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/
k_standard.c 27 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...]
e_atanh.c 41 static double zero = 0.0; variable
59 return x/zero;
60 if(ix<0x3e300000&&(huge+x)>zero) return x; /* x<2**-28 */
e_remainder.c 26 static const double zero = 0.0; variable
28 static double zero = 0.0; variable
60 if (((hx-hp)|(lx-lp))==0) return zero*x;
  /external/replicaisland/src/com/replica/replicaisland/
SimpleCollisionComponent.java 39 mPreviousPosition.zero();
40 mCurrentPosition.zero();
41 mMovementDirection.zero();
42 mHitPoint.zero();
43 mHitNormal.zero();
VectorPool.java 37 ((Vector2)entry).zero(); method
  /external/webkit/Source/WebCore/platform/audio/
AudioArray.h 43 void zero() { memset(this->data(), 0, sizeof(T) * this->size()); } function in class:WebCore::AudioArray
AudioChannel.h 80 void zero() function in class:WebCore::AudioChannel
83 m_memBuffer->zero();
  /libcore/luni/src/test/java/libcore/java/lang/
IntegerTest.java 22 final int zero = 0; local
26 assertTrue(Integer.compare(zero, zero) == 0);
27 assertTrue(Integer.compare(max, zero) > 0);
29 assertTrue(Integer.compare(zero, max) < 0);
30 assertTrue(Integer.compare(zero, min) > 0);
31 assertTrue(Integer.compare(min, zero) < 0);
LongTest.java 22 final long zero = 0L; local
26 assertTrue(Long.compare(zero, zero) == 0);
27 assertTrue(Long.compare(max, zero) > 0);
29 assertTrue(Long.compare(zero, max) < 0);
30 assertTrue(Long.compare(zero, min) > 0);
31 assertTrue(Long.compare(min, zero) < 0);
ShortTest.java 22 final short zero = 0; local
26 assertTrue(Short.compare(zero, zero) == 0);
27 assertTrue(Short.compare(max, zero) > 0);
29 assertTrue(Short.compare(zero, max) < 0);
30 assertTrue(Short.compare(zero, min) > 0);
31 assertTrue(Short.compare(min, zero) < 0);

Completed in 1178 milliseconds

1 2 3 4 5 6 7 8 9