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

12 3 4 5 6 7 8 91011>>

  /external/libcxx/test/utilities/meta/meta.unary/meta.unary.cat/
enum.pass.cpp 46 enum Enum {zero, one}; enumerator in enum:Enum
  /external/libcxx/test/utilities/meta/meta.unary/meta.unary.comp/
enum.pass.cpp 37 enum Enum {zero, one}; enumerator in enum:Enum
  /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);
  /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_atanhl.c 52 static const double zero = 0.0; variable
64 RETURNI(fabsl(x) == 1 ? x / zero : (x - x) / (x - x));
65 if (ix < BIAS + EXP_TINY && (huge + x) > zero)
e_remainder.c 31 static const double zero = 0.0; variable
56 if (((hx-hp)|(lx-lp))==0) return zero*x;
s_rintl.c 53 static const float zero[2] = { 0.0, -0.0 }; variable
88 return (zero[sign]);
e_atan2.c 53 zero = 0.0, variable
100 case 0: return zero ; /* atan(+...,+INF) */
101 case 1: return -zero ; /* atan(-...,+INF) */
e_atan2f.c 25 zero = 0.0, variable
71 case 0: return zero ; /* atan(+...,+INF) */
72 case 1: return -zero ; /* atan(-...,+INF) */
e_atan2l.c 33 zero = 0.0; variable
94 case 0: return zero ; /* atan(+...,+INF) */
95 case 1: return -zero ; /* atan(-...,+INF) */
  /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/ui/gfx/geometry/
point_unittest.cc 108 PointF zero; local
111 zero.Scale(2);
112 zero.Scale(3, 1.5);
117 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
149 // 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...]
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/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/fdlibm/
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/libcxx/test/atomics/atomics.types.generic/
address.pass.cpp 119 A& zero = *new (storage) A(); local
120 assert(zero == 0);
121 zero.~A();
integral.pass.cpp 150 A& zero = *new (storage) A(); local
151 assert(zero == 0);
152 zero.~A();
  /external/libcxx/test/diagnostics/syserr/syserr.errcode/syserr.errcode.constructors/
ErrorCodeEnum.pass.cpp 21 zero, one, two enumerator in enum:testing
  /external/libcxx/test/diagnostics/syserr/syserr.errcode/syserr.errcode.modifiers/
ErrorCodeEnum.pass.cpp 21 zero, one, two enumerator in enum:testing
  /external/libcxx/test/numerics/complex.number/
cases.h 175 enum {zero, non_zero, inf, NaN, non_zero_nan}; enumerator in enum:__anon3149
182 return zero;
207 return zero;
  /external/libcxx/test/utilities/meta/meta.trans/meta.trans.sign/
make_signed.pass.cpp 16 enum Enum {zero, one_}; enumerator in enum:Enum
make_unsigned.pass.cpp 16 enum Enum {zero, one_}; enumerator in enum:Enum

Completed in 1455 milliseconds

12 3 4 5 6 7 8 91011>>