Searched defs:zero (Results 1 - 7 of 7) sorted by relevance

/art/test/003-omnibus-opcodes/src/
H A DCompare.java25 static void testIntCompare(int minus, int plus, int plus2, int zero) { argument
58 if (zero != 0)
61 if (zero == 0) {
H A DFloatMath.java199 static int[] convI(long l, float f, double d, float zero) { argument
204 results[3] = (int) (1.0f / zero); // +inf
205 results[4] = (int) (-1.0f / zero); // -inf
206 results[5] = (int) ((1.0f / zero) / (1.0f / zero)); // NaN
219 static long[] convL(int i, float f, double d, double zero) { argument
224 results[3] = (long) (1.0 / zero); // +inf
225 results[4] = (long) (-1.0 / zero); // -inf
226 results[5] = (long) ((1.0 / zero) / (1.0 / zero)); // Na
[all...]
/art/runtime/entrypoints/
H A Dentrypoint_utils.cc235 const JValue zero; local
242 return zero;
254 return zero;
275 return zero;
285 return zero;
318 return zero;
/art/test/107-int-math2/src/
H A DMain.java569 static int testIntCompare(int minus, int plus, int plus2, int zero) { argument
602 if (zero != 0)
605 if (zero == 0) {
/art/compiler/optimizing/
H A Dcode_generator_arm.cc3914 Label done, zero; local
3921 __ b(&zero, EQ);
3928 __ b(&zero, NE);
3943 __ Bind(&zero);
H A Dcode_generator_x86.cc1381 // Negation is similar to subtraction from zero. The least
1383 // zero; to take it into account, add 1 to the most significant
4389 Label done, zero; local
4396 __ j(kEqual, &zero);
4409 __ j(kNotEqual, &zero);
4424 __ Bind(&zero);
H A Dcode_generator_x86_64.cc4228 Label done, zero; local
4235 __ j(kEqual, &zero);
4247 __ j(kNotEqual, &zero);
4262 __ Bind(&zero);
4454 // We can use a 32 bit move, as it will zero-extend and is one byte shorter.

Completed in 142 milliseconds