HomeSort by relevance Sort by last modified time
    Searched defs:zero (Results 26 - 50 of 404) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/clang/test/Analysis/
ptr-arith.cpp 5 int zero; member in struct:X
11 zero = 1;
17 littleX.zero = 0;
20 return 5/littleX.zero; // no-warning
  /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/mesa3d/src/gallium/drivers/softpipe/
sp_clear.c 73 static const union pipe_color_union zero; local
77 sp_tile_cache_clear(softpipe->zsbuf_cache, &zero, cv);
  /external/v8/test/mjsunit/compiler/
math-floor-local.js 44 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
math-floor-global.js 44 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/v8/test/mjsunit/
math-floor.js 42 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
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...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/atomics/atomics.types.generic/
bool.pass.cpp 226 A& zero = *new (storage) A(); local
227 assert(zero == false);
228 zero.~A();
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/meta/meta.unary/meta.unary.cat/
enum.pass.cpp 43 enum Enum {zero, one}; enumerator in enum:Enum
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/meta/meta.unary/meta.unary.comp/
enum.pass.cpp 37 enum Enum {zero, one}; enumerator in enum:Enum
  /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
  /bionic/libm/upstream-freebsd/lib/msun/src/
e_atanh.c 42 static const double zero = 0.0; variable
55 return x/zero;
56 if(ix<0x3e300000&&(huge+x)>zero) return x; /* x<2**-28 */
e_remainder.c 31 static const double zero = 0.0; variable
56 if (((hx-hp)|(lx-lp))==0) return zero*x;
s_rintl.c 52 static const float zero[2] = { 0.0, -0.0 }; variable
87 return (zero[sign]);
  /bionic/tests/
fenv_test.cpp 34 volatile float zero = 0.0f; local
35 volatile float result __attribute__((unused)) = 123.0f / zero;
67 // Dividing by zero sets FE_DIVBYZERO.
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/mac/
SimpleFontDataCoreText.cpp 48 const float zero = 0; local
49 static CFNumberRef zeroKerningValue = CFNumberCreate(kCFAllocatorDefault, kCFNumberFloatType, &zero);
55 const int zero = 0; local
56 static CFNumberRef essentialLigaturesValue = CFNumberCreate(kCFAllocatorDefault, kCFNumberIntType, &zero);
  /external/chromium_org/ui/gfx/
point_unittest.cc 109 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/
math-floor-global.js 44 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/chromium_org/v8/test/mjsunit/
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...]
  /external/clang/test/Preprocessor/
macro_fn.c 4 #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/valgrind/main/none/tests/s390x/
xc.c 9 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...]
  /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);

Completed in 917 milliseconds

12 3 4 5 6 7 8 91011>>