Searched defs:zero (Results 26 - 50 of 301) sorted by relevance

1234567891011>>

/external/fdlibm/
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/v8/test/mjsunit/compiler/
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/v8/test/mjsunit/
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/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/chromium_org/v8/test/mjsunit/
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/chromium_org/net/quic/
H A Dquic_time_test.cc116 const QuicTime zero = QuicTime::Zero(); local
117 const QuicTime one = zero.Add(QuicTime::Delta::FromSeconds(1));
118 EXPECT_TRUE(zero <= zero);
119 EXPECT_TRUE(zero <= one);
121 EXPECT_FALSE(one <= zero);
/external/chromium_org/third_party/WebKit/Source/platform/audio/
H A DAudioChannel.h97 void zero() function in class:WebCore::AudioChannel
105 m_memBuffer->zero();
H A DZeroPole.cpp41 float zero = m_zero; local
45 const float k1 = 1 / (1 - zero);
56 float output1 = k1 * (input - zero * lastX);
H A DZeroPole.h36 // ZeroPole is a simple filter with one zero and one pole.
53 void setZero(float zero) { m_zero = zero; } argument
56 float zero() const { return m_zero; } function in class:WebCore::ZeroPole
/external/chromium_org/third_party/WebKit/Source/platform/fonts/mac/
H A DSimpleFontDataCoreText.cpp48 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/third_party/mesa/src/src/gallium/drivers/softpipe/
H A Dsp_clear.c73 static const union pipe_color_union zero; local
77 sp_tile_cache_clear(softpipe->zsbuf_cache, &zero, cv);
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/xdf/tests/
H A Dxdflong.asm123 cdesc64 zero, 0xFFFFF, 0 ; 0x0008 - Code Selector
166 zero: dw isrR, 0 ; 0x00, 0 #DE, Divide Error define
/external/chromium_org/v8/test/webkit/
H A Dcomparison-operators-greater.js142 var zero = 0; variable
149 shouldBeTrue("zero >= zero");
150 shouldBeTrue("1 >= zero");
152 shouldBeTrue("1 > zero");
153 shouldBeFalse("zero >= 1");
158 shouldBeTrue("if (zero >= zero || 0) true; else false");
159 shouldBeTrue("if (1 >= zero || zero) tru
[all...]
H A Dcomparison-operators-less.js140 var zero = 0; variable
147 shouldBeTrue("zero <= zero");
148 shouldBeTrue("zero <= 1");
150 shouldBeTrue("zero < 1");
151 shouldBeFalse("1 <= zero");
156 shouldBeTrue("if (zero <= zero || 0) true; else false");
157 shouldBeTrue("if (zero <= 1 || zero) tru
[all...]
/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/clang/test/CodeGenCXX/
H A Dcp-blocks-linetables.cpp17 zero, one, two, three, four enumerator in enum:numbers
/external/compiler-rt/lib/asan/lit_tests/TestCases/
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/rsa/
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/mesa3d/src/gallium/drivers/softpipe/
H A Dsp_clear.c73 static const union pipe_color_union zero; local
77 sp_tile_cache_clear(softpipe->zsbuf_cache, &zero, cv);
/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 661 milliseconds

1234567891011>>