Searched refs:zero (Results 51 - 75 of 690) sorted by relevance

1234567891011>>

/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_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 */
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...]
/external/llvm/test/MC/Mips/
H A Dmips-control-instructions.s20 # CHECK32: teq $zero, $3 # encoding: [0x00,0x03,0x00,0x34]
21 # CHECK32: teq $zero, $3, 1 # encoding: [0x00,0x03,0x00,0x74]
23 # CHECK32: tge $zero, $3 # encoding: [0x00,0x03,0x00,0x30]
24 # CHECK32: tge $zero, $3, 3 # encoding: [0x00,0x03,0x00,0xf0]
26 # CHECK32: tgeu $zero, $3 # encoding: [0x00,0x03,0x00,0x31]
27 # CHECK32: tgeu $zero, $3, 7 # encoding: [0x00,0x03,0x01,0xf1]
29 # CHECK32: tlt $zero, $3 # encoding: [0x00,0x03,0x00,0x32]
30 # CHECK32: tlt $zero, $3, 31 # encoding: [0x00,0x03,0x07,0xf2]
32 # CHECK32: tltu $zero, $3 # encoding: [0x00,0x03,0x00,0x33]
33 # CHECK32: tltu $zero,
[all...]
H A Ddo_switch1.s27 addiu $1, $zero, 2
34 addiu $2, $zero, 4
45 addiu $2, $zero, 1
49 addiu $2, $zero, 2
53 addiu $2, $zero, 0
57 addiu $2, $zero, 3
H A Ddo_switch2.s28 addiu $1, $zero, 2
35 addiu $2, $zero, 4
47 addiu $2, $zero, 1
51 addiu $2, $zero, 2
55 addiu $2, $zero, 0
59 addiu $2, $zero, 3
/external/compiler-rt/lib/builtins/
H A Dfp_mul_impl.inc26 // Detect if a or b is zero, denormal, infinity, or NaN.
38 // infinity * non-zero = +/- infinity
40 // infinity * zero = NaN
45 //? non-zero * infinity = +/- infinity
47 // zero * infinity = NaN
51 // zero * anything = +/- zero
53 // anything * zero = +/- zero
72 // zero
[all...]
/external/compiler-rt/test/asan/TestCases/Posix/
H A Dcoverage.cc51 static volatile char *zero = 0; local
52 *zero = 0; // SEGV if argc == 5.
/external/compiler-rt/test/asan/TestCases/Windows/
H A Ddll_seh.cc30 int local, zero = 0; local
32 local = 5 / zero;
H A Dseh.cc28 int local, zero = 0; local
30 local = 5 / zero;
/external/compiler-rt/test/sanitizer_common/TestCases/Linux/
H A Dsanitizer_set_death_callback_test.cc10 volatile char *zero = 0; variable
27 if (zero)
/external/valgrind/exp-bbv/tests/arm-linux/
H A Dmillion.S17 bne big_loop @ repeat till zero
23 mov r0,#0 @ result is zero
/external/compiler-rt/test/builtins/Unit/
H A Dmuldc3_test.c23 enum {zero, non_zero, inf, NaN, non_zero_nan}; enumerator in enum:__anon2928
29 return zero;
64 case zero:
67 case zero:
68 if (classify(r) != zero)
72 if (classify(r) != zero)
92 case zero:
93 if (classify(r) != zero)
119 case zero:
144 case zero
[all...]
H A Dmultc3_test.c27 enum {zero, non_zero, inf, NaN, non_zero_nan}; enumerator in enum:__anon2930
33 return zero;
68 case zero:
71 case zero:
72 if (classify(r) != zero)
76 if (classify(r) != zero)
96 case zero:
97 if (classify(r) != zero)
123 case zero:
148 case zero
[all...]
H A Dmulxc3_test.c26 enum {zero, non_zero, inf, NaN, non_zero_nan}; enumerator in enum:__anon2931
32 return zero;
67 case zero:
70 case zero:
71 if (classify(r) != zero)
75 if (classify(r) != zero)
95 case zero:
96 if (classify(r) != zero)
122 case zero:
147 case zero
[all...]
/external/libcxxabi/test/
H A Dtest_guard.pass.cpp65 int zero() { function in namespace:test3
70 static int b = zero();
105 int zero() { function in namespace:test5
111 static int b = zero();
/external/skia/src/opts/
H A DSkBlurImage_opts_SSE2.cpp23 const __m128i zero = _mm_setzero_si128(); local
29 result = _mm_unpacklo_epi8(result, zero);
32 return _mm_unpacklo_epi16(result, zero);
46 const __m128i zero = _mm_setzero_si128(); local
48 __m128i sum = zero;
72 result = _mm_packs_epi32(result, zero);
75 result = _mm_packus_epi16(result, zero);
/external/skia/src/pathops/
H A DSkOpCubicHull.cpp9 static bool rotate(const SkDCubic& cubic, int zero, int index, SkDCubic& rotPath) { argument
10 double dy = cubic[index].fY - cubic[zero].fY;
11 double dx = cubic[index].fX - cubic[zero].fX;
18 rotPath[index].fY = cubic[zero].fY;
19 int mask = other_two(index, zero);
21 int side2 = zero ^ mask;
22 if (approximately_equal(cubic[side1].fY, cubic[zero].fY)) {
23 rotPath[side1].fY = cubic[zero].fY;
25 if (approximately_equal(cubic[side2].fY, cubic[zero].fY)) {
26 rotPath[side2].fY = cubic[zero]
[all...]
/external/replicaisland/src/com/replica/replicaisland/
H A DSimpleCollisionComponent.java39 mPreviousPosition.zero();
40 mCurrentPosition.zero();
41 mMovementDirection.zero();
42 mHitPoint.zero();
43 mHitNormal.zero();
/external/v8/test/mjsunit/
H A Dsmi-ops-inlined.js441 var zero = 0;
447 assertEquals(pos_non_smi, (pos_non_smi) >> zero);
448 assertEquals(pos_non_smi, (pos_non_smi) >>> zero);
449 assertEquals(pos_non_smi, (pos_non_smi) << zero);
450 assertEquals(neg_non_smi, (neg_non_smi) >> zero);
451 assertEquals(neg_non_smi + 0x100000000, (neg_non_smi) >>> zero);
452 assertEquals(neg_non_smi, (neg_non_smi) << zero);
453 assertEquals(pos_smi, (pos_smi) >> zero);
454 assertEquals(pos_smi, (pos_smi) >>> zero);
455 assertEquals(pos_smi, (pos_smi) << zero);
[all...]
H A Dsmi-ops.js448 var zero = 0;
454 assertEquals(pos_non_smi, (pos_non_smi) >> zero);
455 assertEquals(pos_non_smi, (pos_non_smi) >>> zero);
456 assertEquals(pos_non_smi, (pos_non_smi) << zero);
457 assertEquals(neg_non_smi, (neg_non_smi) >> zero);
458 assertEquals(neg_non_smi + 0x100000000, (neg_non_smi) >>> zero);
459 assertEquals(neg_non_smi, (neg_non_smi) << zero);
460 assertEquals(pos_smi, (pos_smi) >> zero);
461 assertEquals(pos_smi, (pos_smi) >>> zero);
462 assertEquals(pos_smi, (pos_smi) << 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'}}
173 // CHECK-NEXT: <string>Calling &apos;zero&apos;</string>
175 // CHECK-NEXT: <string>Calling &apos;zero&apos;</string>
279 // CHECK-NEXT: <string>Returning from &apos;zero&apos;</string>
281 // CHECK-NEXT: <string>Returning from &apos;zero&apos;</string>
/external/compiler-rt/test/asan/TestCases/
H A Dthrow_call_test.cc12 static volatile int zero = 0; variable
20 if (zero == 0)
/external/e2fsprogs/util/
H A Dgcc-wall-cleanup18 /zero-length format string/d
/external/llvm/test/MC/Mips/mips64r6/
H A Dinvalid-mips3-wrong-error.s9 ldr $zero,-19147($gp) # CHECK: :[[@LINE]]:{{[0-9]+}}: error: invalid operand for instruction
13 ldre $zero,-19147($gp) # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction
17 lwr $zero,-19147($gp) # CHECK: :[[@LINE]]:{{[0-9]+}}: error: invalid operand for instruction
21 lwre $zero,-19147($gp) # CHECK: :[[@LINE]]:{{[0-9]+}}: error: unknown instruction

Completed in 587 milliseconds

1234567891011>>