Home
last modified time | relevance | path

Searched refs:And (Results 1 – 18 of 18) sorted by relevance

/art/test/427-bitwise/src/
DMain.java45 expectEquals(1, $opt$And(5, 3)); in andInt()
46 expectEquals(0, $opt$And(0, 0)); in andInt()
47 expectEquals(0, $opt$And(0, 3)); in andInt()
48 expectEquals(0, $opt$And(3, 0)); in andInt()
49 expectEquals(1, $opt$And(1, -3)); in andInt()
50 expectEquals(-12, $opt$And(-12, -3)); in andInt()
66 expectEquals(1L, $opt$And(5L, 3L)); in andLong()
67 expectEquals(0L, $opt$And(0L, 0L)); in andLong()
68 expectEquals(0L, $opt$And(0L, 3L)); in andLong()
69 expectEquals(0L, $opt$And(3L, 0L)); in andLong()
[all …]
/art/test/979-const-method-handle/
Dexpected.txt4 Hello World! And Hello Zog
5 Hello World! And Hello Zorba
/art/test/565-checker-doublenegbitwise/smali/
DSmaliTests.smali19 # Test transformation of Not/Not/And into Or/Not.
27 ## CHECK-DAG: <<And:i\d+>> And [<<Not1>>,<<Not2>>]
28 ## CHECK-DAG: Return [<<And>>]
42 ## CHECK-NOT: And
64 # Test transformation of Not/Not/And into Or/Not for boolean negations.
76 ## CHECK-DAG: <<And:i\d+>> And [<<NotP1>>,<<NotP2>>]
77 ## CHECK-DAG: Return [<<And>>]
91 ## CHECK-NOT: And
112 # Test transformation of Not/Not/Or into And/Not.
125 ## CHECK-DAG: <<And:j\d+>> And [<<P1>>,<<P2>>]
[all …]
/art/test/593-checker-shift-and-simplifier/smali/
DSmaliTests.smali25 ## CHECK-DAG: And [<<Not>>,<<Shl>>]
30 ## CHECK-DAG: DataProcWithShifterOp [<<Not>>,<<Get>>] kind:And+LSL shift:2
36 ## CHECK-DAG: And [<<Not>>,<<Shl>>]
41 ## CHECK-DAG: DataProcWithShifterOp [<<Not>>,<<Get>>] kind:And+LSL shift:2
/art/test/020-string/
Dexpected.txt13 llo And
/art/test/800-smali/smali/
Db_22411633_1.smali30 # And test whether it's initialized by calling hashCode.
Db_22881413.smali133 # And somewhere at the end
/art/test/458-checker-instruct-simplification/smali/
DSmaliTests2.smali212 ## CHECK-DAG: <<And1:i\d+>> And [<<Arg>>,<<Const>>]
213 ## CHECK-DAG: <<And2:i\d+>> And [<<And1>>,<<Const>>]
263 ## CHECK-DAG: <<And:i\d+>> And [<<Const255>>,<<Phi>>]
264 ## CHECK-DAG: <<Conv:b\d+>> TypeConversion [<<And>>]
/art/compiler/optimizing/
Dscheduler_arm.h70 M(And , unused) \
Dintrinsics_arm_vixl.cc1368 __ And(temp2, temp2, temp3); in GenerateStringCompareToLoop() local
1369 __ And(out, out, temp3); in GenerateStringCompareToLoop() local
2732 __ And(out_reg_hi, out_reg_hi, in_reg_hi); in GenLowestOneBit() local
2756 __ And(out, temp, in); in GenLowestOneBit() local
Dcode_generator_arm_vixl.cc1080 __ And(out, first, second); in GenerateDataProcInstruction() local
4623 __ And(temp1, temp1, temp2); in GenerateMinMaxFloat() local
4893 __ And(shift_right, RegisterFrom(rhs), 0x1F); in HandleLongRotate() local
5023 __ And(out_reg, second_reg, kMaxIntShiftDistance); in HandleShift() local
5059 __ And(o_l, second_reg, kMaxLongShiftDistance); in HandleShift() local
5078 __ And(o_h, second_reg, kMaxLongShiftDistance); in HandleShift() local
5097 __ And(o_h, second_reg, kMaxLongShiftDistance); in HandleShift() local
8311 __ And(out, first, value); in GenerateAndConst() local
8429 __ And(out_reg, first_reg, second_reg); in HandleBitwiseOperation() local
8445 __ And(out_low, first_low, second_low); in HandleBitwiseOperation() local
[all …]
Dcode_generator_arm64.cc2082 __ And(dst, lhs, rhs); in HandleBinaryOp() local
2284 __ And(out, left, right_operand); in VisitDataProcWithShifterOp() local
5377 __ And(out, dividend, 1); in GenerateIntRemForPower2Denom() local
5384 __ And(out, dividend, abs_imm - 1); in GenerateIntRemForPower2Denom() local
5385 __ And(temp, temp, abs_imm - 1); in GenerateIntRemForPower2Denom() local
Dintrinsics_arm64.cc514 __ And(dst, temp, src); in GenLowestOneBit() local
1564 __ And(temp1, temp, Operand(1)); // Extract compression flag. in VisitStringEquals() local
Dcode_generator_vector_arm64.cc773 __ And(dst.V16B(), lhs.V16B(), rhs.V16B()); // lanes do not matter in VisitVecAnd() local
Dnodes.h1395 M(And, BinaryOperation) \
5459 DECLARE_INSTRUCTION(And);
5462 DEFAULT_COPY_CONSTRUCTOR(And);
/art/compiler/utils/arm/
Dassembler_arm_vixl.h100 WITH_FLAGS_DONT_CARE_RD_RN_OP(And);
/art/tools/dexfuzz/
DREADME52 And also at least two of the following backends:
/art/test/953-invoke-polymorphic-compiler/src/
DMain.java182 private static boolean And(boolean lhs, boolean rhs) { in And() method in Main