Home
last modified time | relevance | path

Searched refs:temp (Results 1 – 25 of 86) sorted by relevance

1234

/art/test/015-switch/src/
DMain.java157 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/
Dfp_callees.cc46 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/
DTestCharShort.java63 int temp = a[i] * b[i]; in testDotProdSimple() local
64 s += temp; in testDotProdSimple()
113 int temp = ((short)(a[i] + 1)) * ((short)(b[i] + 1)); in testDotProdComplex() local
114 s += temp; in testDotProdComplex()
156 int temp = a[i] * b[i]; in testDotProdSimpleUnsigned() local
157 s += temp; in testDotProdSimpleUnsigned()
206 int temp = ((char)(a[i] + 1)) * ((char)(b[i] + 1)); in testDotProdComplexUnsigned() local
207 s += temp; in testDotProdComplexUnsigned()
256 int temp = ((short)(a[i] + 1)) * ((short)(b[i] + 1)); in testDotProdComplexUnsignedCastedToSigned() local
257 s += temp; in testDotProdComplexUnsignedCastedToSigned()
[all …]
DTestByte.java84 int temp = a[i] * b[i]; in testDotProdSimple() local
85 s += temp; in testDotProdSimple()
146 int temp = ((byte)(a[i] + 1)) * ((byte)(b[i] + 1)); in testDotProdComplex() local
147 s += temp; in testDotProdComplex()
209 int temp = (a[i] & 0xff) * (b[i] & 0xff); in testDotProdSimpleUnsigned() local
210 s += temp; in testDotProdSimpleUnsigned()
271 int temp = (((a[i] & 0xff) + 1) & 0xff) * (((b[i] & 0xff) + 1) & 0xff); in testDotProdComplexUnsigned() local
272 s += temp; in testDotProdComplexUnsigned()
333 int temp = ((byte)((a[i] & 0xff) + 1)) * ((byte)((b[i] & 0xff) + 1)); in testDotProdComplexUnsignedCastedToSigned() local
334 s += temp; in testDotProdComplexUnsignedCastedToSigned()
[all …]
DTestVarious.java71 int temp = b[i] * 89; in testDotProdConstRight() local
72 s += temp; in testDotProdConstRight()
124 int temp = 89 * (b[i] & 0xff); in testDotProdConstLeft() local
125 s += temp; in testDotProdConstLeft()
186 int temp = b[i] * ((byte)(param + 129)); in testDotProdLoopInvariantConvRight() local
187 s += temp; in testDotProdLoopInvariantConvRight()
197 int temp = ((char)((byte)(a[i] + 129))) * b[i]; in testDotProdByteToChar() local
198 s += temp; in testDotProdByteToChar()
208 int temp = a[i] * b[i]; in testDotProdMixedSize() local
209 s += temp; in testDotProdMixedSize()
[all …]
/art/test/550-checker-multiply-accumulate/src/
DMain.java172 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/
Dstride_iterator.h56 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;
Dhash_set.h76 HashSetIterator temp = *this; variable
78 return temp;
308 uint64_t temp; in HashSet() local
310 offset = ReadFromBytes(ptr, offset, &temp); in HashSet()
311 num_elements_ = static_cast<uint64_t>(temp); in HashSet()
312 offset = ReadFromBytes(ptr, offset, &temp); in HashSet()
313 num_buckets_ = static_cast<uint64_t>(temp); in HashSet()
315 offset = ReadFromBytes(ptr, offset, &temp); in HashSet()
316 elements_until_expand_ = static_cast<uint64_t>(temp); in HashSet()
588 T temp; in Verify() local
[all …]
/art/runtime/
Dclass_table-inl.h32 std::string temp; in operator() local
35 return ComputeModifiedUtf8Hash(slot.Read<kWithoutReadBarrier>()->GetDescriptor(&temp)); in operator()
48 std::string temp; in operator() local
50 b.Read<kWithoutReadBarrier>()->GetDescriptor(&temp))); in operator()
53 std::string temp; in operator() local
55 b.Read<kWithoutReadBarrier>()->GetDescriptor(&temp)); in operator()
185 std::string temp; in LookupByDescriptor() local
186 const char* descriptor = klass->GetDescriptor(&temp); in LookupByDescriptor()
Dart_field.cc63 std::string temp; in PrettyField() local
64 result += PrettyDescriptor(GetDeclaringClass()->GetDescriptor(&temp)); in PrettyField()
/art/dexlayout/
Ddex_container.h80 std::vector<uint8_t> temp; in ReleaseData() local
81 temp.swap(data_); in ReleaseData()
82 return temp; in ReleaseData()
/art/compiler/optimizing/
Dcode_generator_arm_vixl.cc1216 const vixl32::Register temp = temps.Acquire(); in GenerateLongDataProc() local
1218 __ Lsl(temp, second_hi, shift_value); in GenerateLongDataProc()
1219 __ Orr(temp, temp, Operand(second_lo, ShiftType::LSR, 32 - shift_value)); in GenerateLongDataProc()
1224 temp, in GenerateLongDataProc()
1249 const vixl32::Register temp = temps.Acquire(); in GenerateLongDataProc() local
1251 __ Lsr(temp, second_lo, shift_value); in GenerateLongDataProc()
1252 __ Orr(temp, temp, Operand(second_hi, ShiftType::LSL, 32 - shift_value)); in GenerateLongDataProc()
1256 temp, in GenerateLongDataProc()
1584 vixl32::Register temp; in GenerateEqualLong() local
1602 temp = temps.Acquire(); in GenerateEqualLong()
[all …]
Dcode_generator_arm64.cc1136 Register temp = temps.AcquireX(); in MaybeIncrementHotness() local
1138 __ Mov(temp, address); in MaybeIncrementHotness()
1139 __ Ldrh(counter, MemOperand(temp, ProfilingInfo::BaselineHotnessCountOffset().Int32Value())); in MaybeIncrementHotness()
1142 __ Strh(counter, MemOperand(temp, ProfilingInfo::BaselineHotnessCountOffset().Int32Value())); in MaybeIncrementHotness()
1180 Register temp = temps.AcquireX(); in GenerateFrameEntry() local
1182 __ Sub(temp, sp, static_cast<int32_t>(GetStackOverflowReservedBytes(InstructionSet::kArm64))); in GenerateFrameEntry()
1188 __ ldr(wzr, MemOperand(temp, 0)); in GenerateFrameEntry()
1308 Register temp = temps.AcquireW(); // Index within the CardTable - 32bit. in MarkGCCard() local
1317 __ Lsr(temp, object, gc::accounting::CardTable::kCardShift); in MarkGCCard()
1331 __ Strb(card, MemOperand(card, temp.X())); in MarkGCCard()
[all …]
Dintrinsics_x86.cc196 XmmRegister temp = locations->GetTemp(0).AsFpuRegister<XmmRegister>(); in MoveFPToInt() local
197 __ movsd(temp, input.AsFpuRegister<XmmRegister>()); in MoveFPToInt()
198 __ movd(output.AsRegisterPairLow<Register>(), temp); in MoveFPToInt()
199 __ psrlq(temp, Immediate(32)); in MoveFPToInt()
200 __ movd(output.AsRegisterPairHigh<Register>(), temp); in MoveFPToInt()
818 Register temp, in CheckPosition() argument
838 __ movl(temp, Address(input, length_offset)); in CheckPosition()
839 __ subl(temp, Immediate(pos_const)); in CheckPosition()
844 __ cmpl(temp, Immediate(length.GetConstant()->AsIntConstant()->GetValue())); in CheckPosition()
846 __ cmpl(temp, length.AsRegister<Register>()); in CheckPosition()
[all …]
Dintrinsics_arm_vixl.cc932 vixl32::Register temp = RegisterFrom(locations->GetTemp(0)); in VisitStringEquals() local
968 __ Ldr(temp, MemOperand(str, class_offset)); in VisitStringEquals()
973 __ Cmp(temp, out); in VisitStringEquals()
995 __ Ldr(temp, MemOperand(arg, count_offset)); in VisitStringEquals()
996 __ Cmp(temp, Operand(mirror::String::GetFlaggedCount(const_string_length, is_compressed))); in VisitStringEquals()
1000 __ Ldr(temp, MemOperand(str, count_offset)); in VisitStringEquals()
1004 __ Cmp(temp, out); in VisitStringEquals()
1025 __ Ldrd(temp, temp1, MemOperand(str, offset)); in VisitStringEquals()
1027 __ Cmp(temp, temp2); in VisitStringEquals()
1035 __ Ldr(temp, MemOperand(str, offset)); in VisitStringEquals()
[all …]
Dintrinsics_arm64.cc438 Register temp = (type == DataType::Type::kInt64) ? temps.AcquireX() : temps.AcquireW(); in GenHighestOneBit() local
442 __ Clz(temp, src); in GenHighestOneBit()
444 __ Bic(dst, dst, Operand(temp, LSL, high_bit - clz_high_bit)); // Clear dst if src was 0. in GenHighestOneBit()
445 __ Lsr(dst, dst, temp); in GenHighestOneBit()
471 Register temp = (type == DataType::Type::kInt64) ? temps.AcquireX() : temps.AcquireW(); in GenLowestOneBit() local
473 __ Neg(temp, src); in GenLowestOneBit()
474 __ And(dst, temp, src); in GenLowestOneBit()
716 Register temp = WRegisterFrom(locations->GetTemp(0)); in GenUnsafeGet() local
719 __ Add(temp, base, offset.W()); // Offset should not exceed 32 bits. in GenUnsafeGet()
723 MemOperand(temp.X()), in GenUnsafeGet()
[all …]
/art/compiler/utils/arm64/
Dassembler_arm64.h109 vixl::aarch64::Register temp = temps.AcquireX(); in SaveRestoreZRegisterList() local
110 vixl_masm_.Add(temp, vixl::aarch64::sp, stack_offset); in SaveRestoreZRegisterList()
115 vixl::aarch64::SVEMemOperand(temp, slot_no, vixl::aarch64::SVE_MUL_VL)); in SaveRestoreZRegisterList()
118 vixl::aarch64::SVEMemOperand(temp, slot_no, vixl::aarch64::SVE_MUL_VL)); in SaveRestoreZRegisterList()
147 void GenerateMarkingRegisterCheck(vixl::aarch64::Register temp, int code = 0);
/art/test/530-checker-peel-unroll/src/
DMain.java206 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/compiler/utils/arm/
Dassembler_arm_vixl.cc83 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/test/102-concurrent-gc/src/
DMain.java57 byte[] temp = l[a].bytes; in main()
59 l[b].bytes = temp; in main()
/art/test/458-checker-instruct-simplification/src/
DMain.java818 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/libdexfile/dex/
Ddex_instruction_iterator.h138 DexInstructionIterator temp = *this; variable
140 return temp;
190 SafeDexInstructionIterator temp = *this; variable
192 return temp;
Dclass_iterator.h60 ClassIterator temp = *this; variable
62 return temp;
/art/test/153-reference-stress/src/
DMain.java45 Object temp = new Object(); in GcThread() local
47 weakReferences[j] = new WeakReference(temp); in GcThread()
/art/libdexfile/external/
Ddex_file_ext.cc278 std::string& temp = self->adex->temporary_qualified_name_; in ADexFile_Method_getQualifiedName() local
279 temp.clear(); in ADexFile_Method_getQualifiedName()
280 self->adex->dex_file_->AppendPrettyMethod(self->index, with_params, &temp); in ADexFile_Method_getQualifiedName()
282 *out_size = temp.size(); in ADexFile_Method_getQualifiedName()
284 return temp.data(); in ADexFile_Method_getQualifiedName()

1234