/art/test/015-switch/src/ |
D | Main.java | 157 long temp = value; in packedSwitch7() local 158 temp = Long.rotateLeft(temp, value); in packedSwitch7() 159 temp = Long.rotateLeft(temp, value); in packedSwitch7() 160 temp = Long.rotateLeft(temp, value); in packedSwitch7() 161 temp = Long.rotateLeft(temp, value); in packedSwitch7() 162 temp = Long.rotateLeft(temp, value); in packedSwitch7() 163 temp = Long.rotateLeft(temp, value); in packedSwitch7() 164 temp = Long.rotateLeft(temp, value); in packedSwitch7() 165 temp = Long.rotateLeft(temp, value); in packedSwitch7() 166 temp = Long.rotateLeft(temp, value); in packedSwitch7() [all …]
|
/art/test/642-fp-callees/ |
D | fp_callees.cc | 46 double temp = array[0]; in Java_Main_holdFpTemporaries() local 47 CHECK_EQ(bit_cast<int64_t>(a), bit_cast<int64_t>(temp)); in Java_Main_holdFpTemporaries() 48 temp = array[1]; in Java_Main_holdFpTemporaries() 49 CHECK_EQ(bit_cast<int64_t>(b), bit_cast<int64_t>(temp)); in Java_Main_holdFpTemporaries() 50 temp = array[2]; in Java_Main_holdFpTemporaries() 51 CHECK_EQ(bit_cast<int64_t>(c), bit_cast<int64_t>(temp)); in Java_Main_holdFpTemporaries() 52 temp = array[3]; in Java_Main_holdFpTemporaries() 53 CHECK_EQ(bit_cast<int64_t>(d), bit_cast<int64_t>(temp)); in Java_Main_holdFpTemporaries() 54 temp = array[4]; in Java_Main_holdFpTemporaries() 55 CHECK_EQ(bit_cast<int64_t>(e), bit_cast<int64_t>(temp)); in Java_Main_holdFpTemporaries() [all …]
|
/art/test/684-checker-simd-dotprod/src/other/ |
D | TestCharShort.java | 54 int temp = a[i] * b[i]; in testDotProdSimple() local 55 s += temp; in testDotProdSimple() 95 int temp = ((short)(a[i] + 1)) * ((short)(b[i] + 1)); in testDotProdComplex() local 96 s += temp; in testDotProdComplex() 129 int temp = a[i] * b[i]; in testDotProdSimpleUnsigned() local 130 s += temp; in testDotProdSimpleUnsigned() 170 int temp = ((char)(a[i] + 1)) * ((char)(b[i] + 1)); in testDotProdComplexUnsigned() local 171 s += temp; in testDotProdComplexUnsigned() 211 int temp = ((short)(a[i] + 1)) * ((short)(b[i] + 1)); in testDotProdComplexUnsignedCastedToSigned() local 212 s += temp; in testDotProdComplexUnsignedCastedToSigned() [all …]
|
D | TestByte.java | 64 int temp = a[i] * b[i]; in testDotProdSimple() local 65 s += temp; in testDotProdSimple() 105 int temp = ((byte)(a[i] + 1)) * ((byte)(b[i] + 1)); in testDotProdComplex() local 106 s += temp; in testDotProdComplex() 148 int temp = (a[i] & 0xff) * (b[i] & 0xff); in testDotProdSimpleUnsigned() local 149 s += temp; in testDotProdSimpleUnsigned() 189 int temp = (((a[i] & 0xff) + 1) & 0xff) * (((b[i] & 0xff) + 1) & 0xff); in testDotProdComplexUnsigned() local 190 s += temp; in testDotProdComplexUnsigned() 230 int temp = ((byte)((a[i] & 0xff) + 1)) * ((byte)((b[i] & 0xff) + 1)); in testDotProdComplexUnsignedCastedToSigned() local 231 s += temp; in testDotProdComplexUnsignedCastedToSigned() [all …]
|
D | TestVarious.java | 53 int temp = b[i] * 89; in testDotProdConstRight() local 54 s += temp; in testDotProdConstRight() 88 int temp = 89 * (b[i] & 0xff); in testDotProdConstLeft() local 89 s += temp; in testDotProdConstLeft() 131 int temp = b[i] * ((byte)(param + 129)); in testDotProdLoopInvariantConvRight() local 132 s += temp; in testDotProdLoopInvariantConvRight() 142 int temp = ((char)((byte)(a[i] + 129))) * b[i]; in testDotProdByteToChar() local 143 s += temp; in testDotProdByteToChar() 153 int temp = a[i] * b[i]; in testDotProdMixedSize() local 154 s += temp; in testDotProdMixedSize() [all …]
|
/art/test/550-checker-multiply-accumulate/src/ |
D | Main.java | 172 int temp = left * right; in $opt$noinline$multipleUses1() local 173 return temp | (acc + temp); in $opt$noinline$multipleUses1() 229 long temp = left * right; in $opt$noinline$multipleUses2() local 230 return (acc + temp) + (acc - temp); in $opt$noinline$multipleUses2() 476 int temp = 12345 * array1[j]; in SimdMulMultipleUses() local 477 array2[j] -= temp; in SimdMulMultipleUses() 478 array1[j] = temp; in SimdMulMultipleUses() 484 long temp = 12345 * array1[j]; in SimdMulMultipleUsesLong() local 485 array2[j] -= temp; in SimdMulMultipleUsesLong() 486 array1[j] = temp; in SimdMulMultipleUsesLong()
|
/art/libartbase/base/ |
D | stride_iterator.h | 56 StrideIterator<T> temp = *this; variable 58 return temp; 67 StrideIterator<T> temp = *this; variable 69 return temp; 78 StrideIterator<T> temp = *this; variable 79 temp += delta; 80 return temp; 89 StrideIterator<T> temp = *this; variable 90 temp -= delta; 91 return temp;
|
D | hash_set.h | 76 HashSetIterator temp = *this; variable 78 return temp; 266 uint64_t temp; in HashSet() local 268 offset = ReadFromBytes(ptr, offset, &temp); in HashSet() 269 num_elements_ = static_cast<uint64_t>(temp); in HashSet() 270 offset = ReadFromBytes(ptr, offset, &temp); in HashSet() 271 num_buckets_ = static_cast<uint64_t>(temp); in HashSet() 273 offset = ReadFromBytes(ptr, offset, &temp); in HashSet() 274 elements_until_expand_ = static_cast<uint64_t>(temp); in HashSet() 546 T temp; in Verify() local [all …]
|
/art/dexlayout/ |
D | dex_container.h | 80 std::vector<uint8_t> temp; in ReleaseData() local 81 temp.swap(data_); in ReleaseData() 82 return temp; in ReleaseData()
|
/art/compiler/optimizing/ |
D | code_generator_arm_vixl.cc | 1195 const vixl32::Register temp = temps.Acquire(); in GenerateLongDataProc() local 1197 __ Lsl(temp, second_hi, shift_value); in GenerateLongDataProc() 1198 __ Orr(temp, temp, Operand(second_lo, ShiftType::LSR, 32 - shift_value)); in GenerateLongDataProc() 1203 temp, in GenerateLongDataProc() 1228 const vixl32::Register temp = temps.Acquire(); in GenerateLongDataProc() local 1230 __ Lsr(temp, second_lo, shift_value); in GenerateLongDataProc() 1231 __ Orr(temp, temp, Operand(second_hi, ShiftType::LSL, 32 - shift_value)); in GenerateLongDataProc() 1235 temp, in GenerateLongDataProc() 1563 vixl32::Register temp; in GenerateEqualLong() local 1581 temp = temps.Acquire(); in GenerateEqualLong() [all …]
|
D | code_generator_arm64.cc | 1150 Register temp = temps.AcquireX(); in MaybeIncrementHotness() local 1152 __ Mov(temp, address); in MaybeIncrementHotness() 1153 __ Ldrh(counter, MemOperand(temp, ProfilingInfo::BaselineHotnessCountOffset().Int32Value())); in MaybeIncrementHotness() 1155 __ Strh(counter, MemOperand(temp, ProfilingInfo::BaselineHotnessCountOffset().Int32Value())); in MaybeIncrementHotness() 1194 Register temp = temps.AcquireX(); in GenerateFrameEntry() local 1196 __ Sub(temp, sp, static_cast<int32_t>(GetStackOverflowReservedBytes(InstructionSet::kArm64))); in GenerateFrameEntry() 1202 __ ldr(wzr, MemOperand(temp, 0)); in GenerateFrameEntry() 1322 Register temp = temps.AcquireW(); // Index within the CardTable - 32bit. in MarkGCCard() local 1331 __ Lsr(temp, object, gc::accounting::CardTable::kCardShift); in MarkGCCard() 1345 __ Strb(card, MemOperand(card, temp.X())); in MarkGCCard() [all …]
|
D | intrinsics_arm_vixl.cc | 590 Location temp = locations->GetTemp(0); in GenUnsafeGet() local 592 __ Add(RegisterFrom(temp), base, Operand(offset)); in GenUnsafeGet() 593 MemOperand src(RegisterFrom(temp), 0); in GenUnsafeGet() 805 vixl32::Register temp = RegisterFrom(locations->GetTemp(0)); in GenUnsafePut() local 806 __ Mov(temp, value); in GenUnsafePut() 807 assembler->PoisonHeapReference(temp); in GenUnsafePut() 808 source = temp; in GenUnsafePut() 818 vixl32::Register temp = RegisterFrom(locations->GetTemp(0)); in GenUnsafePut() local 821 codegen->MarkGCCard(temp, card, base, value, value_can_be_null); in GenUnsafePut() 1451 vixl32::Register temp = RegisterFrom(locations->GetTemp(0)); in VisitStringEquals() local [all …]
|
/art/test/530-checker-peel-unroll/src/ |
D | Main.java | 206 int temp = array[i + 1]; in unrollingSwapElements() local 208 array[i] = temp; in unrollingSwapElements() 471 int temp = a[i + 1]; in unrollingSimpleLiveOuts() local 472 s += temp; in unrollingSimpleLiveOuts() 473 t *= temp; in unrollingSimpleLiveOuts() 556 int temp = a[i + 1]; in unrollingLiveOutsNested() local 557 s += temp; in unrollingLiveOutsNested() 558 t *= temp; in unrollingLiveOutsNested()
|
/art/test/102-concurrent-gc/src/ |
D | Main.java | 57 byte[] temp = l[a].bytes; in main() 59 l[b].bytes = temp; in main()
|
/art/compiler/utils/arm/ |
D | assembler_arm_vixl.cc | 83 void ArmVIXLAssembler::GenerateMarkingRegisterCheck(vixl32::Register temp, int code) { in GenerateMarkingRegisterCheck() argument 91 ___ Ldr(temp, MemOperand(tr, Thread::IsGcMarkingOffset<kArmPointerSize>().Int32Value())); in GenerateMarkingRegisterCheck() 93 ___ Cmp(mr, temp); in GenerateMarkingRegisterCheck() 148 vixl32::Register temp, in AdjustLoadStoreOffset() argument 154 ___ Add(temp, base, add_to_base); in AdjustLoadStoreOffset() 157 ___ Mov(temp, offset); in AdjustLoadStoreOffset() 158 ___ Add(temp, temp, base); in AdjustLoadStoreOffset() 319 vixl32::Register temp = (dest.Is(base)) ? temps.Acquire() : dest; in LoadFromOffset() local 320 LoadImmediate(temp, offset); in LoadFromOffset() 323 ___ Add(dest, dest, (dest.Is(base)) ? temp : base); in LoadFromOffset()
|
/art/runtime/ |
D | art_field.cc | 63 std::string temp; in PrettyField() local 64 result += PrettyDescriptor(GetDeclaringClass()->GetDescriptor(&temp)); in PrettyField()
|
D | class_table.cc | 187 std::string temp; in operator ()() local 190 return ComputeModifiedUtf8Hash(slot.Read<kWithoutReadBarrier>()->GetDescriptor(&temp)); in operator ()() 198 std::string temp; in operator ()() local 200 b.Read<kWithoutReadBarrier>()->GetDescriptor(&temp))); in operator ()() 203 std::string temp; in operator ()() local 205 b.Read<kWithoutReadBarrier>()->GetDescriptor(&temp)); in operator ()() 299 std::string temp; in HashDescriptor() local 300 return ComputeModifiedUtf8Hash(klass->GetDescriptor(&temp)); in HashDescriptor()
|
D | proxy_test.cc | 73 std::string temp; in TEST_F() local 74 const char* proxy_class_descriptor = proxy_class->GetDescriptor(&temp); in TEST_F() 125 std::string temp; in TEST_F() local 126 EXPECT_STREQ("L$Proxy1234;", field->GetDeclaringClass()->GetDescriptor(&temp)); in TEST_F() 134 EXPECT_STREQ("L$Proxy1234;", field->GetDeclaringClass()->GetDescriptor(&temp)); in TEST_F()
|
/art/test/153-reference-stress/src/ |
D | Main.java | 45 Object temp = new Object(); in GcThread() local 47 weakReferences[j] = new WeakReference(temp); in GcThread()
|
/art/libdexfile/dex/ |
D | dex_instruction_iterator.h | 138 DexInstructionIterator temp = *this; variable 140 return temp; 190 SafeDexInstructionIterator temp = *this; variable 192 return temp;
|
D | class_iterator.h | 60 ClassIterator temp = *this; variable 62 return temp;
|
/art/test/458-checker-instruct-simplification/src/ |
D | Main.java | 818 long temp = -arg2; in $noinline$AddNeg2() local 819 return (arg1 + temp) | (arg1 + temp); in $noinline$AddNeg2() 874 int temp = -arg; in $noinline$NegNeg2() local 875 return temp + -temp; in $noinline$NegNeg2() 959 int temp = arg1 - arg2; in $noinline$NegSub2() local 960 return -temp | -temp; in $noinline$NegSub2() 1021 int temp = -arg1; in $noinline$SubNeg2() local 1022 return (temp - arg2) | (temp - arg2); in $noinline$SubNeg2() 1057 long temp = -arg1; in $noinline$SubNeg3() local 1059 res += temp - arg2 - i; in $noinline$SubNeg3() [all …]
|
/art/test/803-no-super/ |
D | info.txt | 1 Regression test that temp (erroneous) classes don't get conflict tables created.
|
/art/test/440-stmp/ |
D | info.txt | 2 a S/D register a temp, while it conflicted with the
|
/art/test/623-checker-loop-regressions/src/ |
D | Main.java | 696 int temp = a[i] * b[i]; in testDotProdAndSet() local 697 c[i]= (byte)temp; in testDotProdAndSet() 698 s += temp; in testDotProdAndSet() 712 int temp = a[i] * b[i]; in testDotProdAndDotProd() local 713 s0 += temp; in testDotProdAndDotProd() 714 s1 += temp; in testDotProdAndDotProd() 728 int temp = Math.abs(x[i] - y[i]); in testSADAndSet() local 729 z[i] = temp; in testSADAndSet() 730 sad += temp; in testSADAndSet() 743 int temp = Math.abs(x[i] - y[i]); in testSADAndSAD() local [all …]
|