Searched defs:zero (Results 1 - 5 of 5) 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.cc242 const JValue zero; local
249 return zero;
261 return zero;
282 return zero;
304 return zero;
343 return zero;
/art/test/107-int-math2/src/
H A DMain.java564 static int testIntCompare(int minus, int plus, int plus2, int zero) { argument
597 if (zero != 0)
600 if (zero == 0) {
/art/compiler/llvm/
H A Dgbc_expander.cc192 // Sign or zero extend category 1 types < 32bits in size to 32bits.
702 // returns zero value under the the corresponding return type in this case.
1261 llvm::Value* zero = irb_.getJZero(op_jty); local
1285 eq_result = irb_.CreateSub(zero, dividend);
1288 eq_result = zero;
1463 llvm::Constant* zero = irb_.getJInt(0); local
1468 llvm::Value* result_eq = irb_.CreateSelect(cmp_eq, zero, result_lt);
1479 // Mask and zero-extend RHS properly
2417 // When the number of the elements in the payload is zero, we don't have
2560 llvm::Constant* zero local
[all...]

Completed in 90 milliseconds