Searched refs:index2 (Results 1 - 8 of 8) sorted by relevance
/art/test/573-checker-checkcast-regression/src/ |
H A D | Main.java | 25 // This test method uses two integers (`index1` and `index2`) to 42 static public int test(Object new_array, int index1, int index2) { argument 45 Integer integer2 = (Integer) objectArray[index2];
|
/art/compiler/utils/ |
H A D | string_reference_test.cc | 101 for (size_t index2 = 0; index2 != arraysize(kDexFile2Strings); ++index2) { 103 StringReference sr2(dex_file2.get(), dex::StringIndex(index2)); 104 EXPECT_EQ(expectedCmp12[index1][index2], cmp(sr1, sr2)) << index1 << " " << index2; local 105 EXPECT_EQ(expectedCmp21[index2][index1], cmp(sr2, sr1)) << index1 << " " << index2; local
|
/art/compiler/optimizing/ |
H A D | select_generator.cc | 55 // with different inputs at `index1` and `index2`. Otherwise returns that phi. 56 static HPhi* GetSingleChangedPhi(HBasicBlock* block, size_t index1, size_t index2) { argument 57 DCHECK_NE(index1, index2); 62 if (phi->InputAt(index1) != phi->InputAt(index2)) {
|
H A D | load_store_elimination.cc | 247 // Returns true if heap_locations_[index1] and heap_locations_[index2] may alias. 248 bool MayAlias(size_t index1, size_t index2) const { 249 if (index1 < index2) { 250 return aliasing_matrix_.IsBitSet(AliasingMatrixPosition(index1, index2)); 251 } else if (index1 > index2) { 252 return aliasing_matrix_.IsBitSet(AliasingMatrixPosition(index2, index1)); 254 DCHECK(false) << "index1 and index2 are expected to be different"; 304 // `index1` and `index2` are indices in the array of collected heap locations. 307 size_t AliasingMatrixPosition(size_t index1, size_t index2) const { 308 DCHECK(index2 > index 315 CheckedAliasingMatrixPosition(size_t index1, size_t index2, size_t position) argument [all...] |
H A D | code_generator_mips.h | 145 void Exchange(int index1, int index2, bool double_slot);
|
H A D | code_generator_mips64.h | 142 void Exchange(int index1, int index2, bool double_slot);
|
H A D | code_generator_mips64.cc | 1039 void ParallelMoveResolverMIPS64::Exchange(int index1, int index2, bool double_slot) { argument 1055 index2 + stack_offset); 1059 index2 + stack_offset);
|
H A D | code_generator_mips.cc | 1210 void ParallelMoveResolverMIPS::Exchange(int index1, int index2, bool double_slot) { argument 1225 index2 + stack_offset); 1229 index2 + stack_offset);
|
Completed in 1892 milliseconds