Home
last modified time | relevance | path

Searched defs:temp (Results 1 – 25 of 54) sorted by relevance

123

/art/test/684-checker-simd-dotprod/src/other/
DTestCharShort.java54 int temp = a[i] * b[i]; in testDotProdSimple() local
95 int temp = ((short)(a[i] + 1)) * ((short)(b[i] + 1)); in testDotProdComplex() local
129 int temp = a[i] * b[i]; in testDotProdSimpleUnsigned() local
170 int temp = ((char)(a[i] + 1)) * ((char)(b[i] + 1)); in testDotProdComplexUnsigned() local
211 int temp = ((short)(a[i] + 1)) * ((short)(b[i] + 1)); in testDotProdComplexUnsignedCastedToSigned() local
252 int temp = ((char)(a[i] + 1)) * ((char)(b[i] + 1)); in testDotProdComplexSignedCastedToUnsigned() local
263 int temp = ((int)(a[i])) * ((int)(b[i])); in testDotProdSignedToInt() local
274 int temp = (short)(x) * b[i]; in testDotProdParamSigned() local
285 int temp = (char)(x) * b[i]; in testDotProdParamUnsigned() local
296 int temp = b[i] * (x); in testDotProdIntParam() local
[all …]
DTestByte.java54 int temp = a[i] * b[i]; in testDotProdSimple() local
95 int temp = ((byte)(a[i] + 1)) * ((byte)(b[i] + 1)); in testDotProdComplex() local
129 int temp = (a[i] & 0xff) * (b[i] & 0xff); in testDotProdSimpleUnsigned() local
170 int temp = (((a[i] & 0xff) + 1) & 0xff) * (((b[i] & 0xff) + 1) & 0xff); in testDotProdComplexUnsigned() local
211 int temp = ((byte)((a[i] & 0xff) + 1)) * ((byte)((b[i] & 0xff) + 1)); in testDotProdComplexUnsignedCastedToSigned() local
252 int temp = ((a[i] + 1) & 0xff) * ((b[i] + 1) & 0xff); in testDotProdComplexSignedCastedToUnsigned() local
263 int temp = ((short)(a[i])) * ((short)(b[i])); in testDotProdSignedWidening() local
274 int temp = (byte)(x) * b[i]; in testDotProdParamSigned() local
285 int temp = (x & 0xff) * (b[i] & 0xff); in testDotProdParamUnsigned() local
298 int temp = b[i] * (x); in testDotProdIntParam() local
[all …]
DTestVarious.java53 int temp = b[i] * 89; in testDotProdConstRight() local
88 int temp = 89 * (b[i] & 0xff); in testDotProdConstLeft() local
131 int temp = b[i] * ((byte)(param + 129)); in testDotProdLoopInvariantConvRight() local
142 int temp = ((char)((byte)(a[i] + 129))) * b[i]; in testDotProdByteToChar() local
153 int temp = a[i] * b[i]; in testDotProdMixedSize() local
164 int temp = a[i] * b[i]; in testDotProdMixedSizeAndSign() local
197 int temp = a[i] * b[i]; in testDotProdInt32() local
/art/libartbase/base/
Dstride_iterator.h56 StrideIterator<T> temp = *this; variable
67 StrideIterator<T> temp = *this; variable
78 StrideIterator<T> temp = *this; variable
89 StrideIterator<T> temp = *this; variable
Dstl_util.h44 ForwardIterator temp = begin; in STLDeleteContainerPointers() local
46 delete *temp; in STLDeleteContainerPointers() local
Dhash_set.h76 HashSetIterator temp = *this; variable
266 uint64_t temp; in HashSet() local
546 T temp; in Verify() local
/art/test/550-checker-multiply-accumulate/src/
DMain.java178 int temp = left * right; in $opt$noinline$multipleUses1() local
236 long temp = left * right; in $opt$noinline$multipleUses2() local
487 int temp = 12345 * array1[j]; in SimdMulMultipleUses() local
495 long temp = 12345 * array1[j]; in SimdMulMultipleUsesLong() local
/art/libdexfile/dex/
Ddex_instruction_iterator.h138 DexInstructionIterator temp = *this; variable
190 SafeDexInstructionIterator temp = *this; variable
Dclass_iterator.h60 ClassIterator temp = *this; variable
/art/runtime/
Dart_field.cc63 std::string temp; in PrettyField() local
Dclass_table.cc187 std::string temp; in operator ()() local
198 std::string temp; in operator ()() local
203 std::string temp; in operator ()() local
299 std::string temp; in HashDescriptor() local
Dproxy_test.cc73 std::string temp; in TEST_F() local
125 std::string temp; in TEST_F() local
Dclass_linker_test.cc90 std::string temp; in AssertPrimitiveClass() local
129 std::string temp; in AssertObjectClass() local
189 std::string temp; in AssertArrayClass() local
202 std::string temp; in AssertArrayClass() local
268 std::string temp; in AssertClass() local
418 std::string temp; in AssertDexFileClass() local
938 std::string temp; in TEST_F() local
1406 std::string temp; in TEST_F() local
Dcommon_throws.cc396 std::string temp; in ThrowNoSuchFieldError() local
404 std::string temp; in ThrowNoSuchFieldException() local
416 std::string temp; in ThrowNoSuchMethodError() local
/art/test/153-reference-stress/src/
DMain.java45 Object temp = new Object(); in GcThread() local
/art/test/642-fp-callees/
Dfp_callees.cc46 double temp = array[0]; in Java_Main_holdFpTemporaries() local
/art/test/530-checker-peel-unroll/src/
DMain.java206 int temp = array[i + 1]; in unrollingSwapElements() local
471 int temp = a[i + 1]; in unrollingSimpleLiveOuts() local
556 int temp = a[i + 1]; in unrollingLiveOutsNested() local
/art/test/015-switch/src/
DMain.java157 long temp = value; in packedSwitch7() local
/art/compiler/utils/arm/
Dassembler_arm_vixl.cc83 void ArmVIXLAssembler::GenerateMarkingRegisterCheck(vixl32::Register temp, int code) { in GenerateMarkingRegisterCheck()
148 vixl32::Register temp, in AdjustLoadStoreOffset()
319 vixl32::Register temp = (dest.Is(base)) ? temps.Acquire() : dest; in LoadFromOffset() local
/art/test/458-checker-instruct-simplification/src/
DMain.java818 long temp = -arg2; in $noinline$AddNeg2() local
874 int temp = -arg; in $noinline$NegNeg2() local
959 int temp = arg1 - arg2; in $noinline$NegSub2() local
1021 int temp = -arg1; in $noinline$SubNeg2() local
1057 long temp = -arg1; in $noinline$SubNeg3() local
1930 int temp = shift & 31; in $noinline$otherUseOfUnnecessaryShiftMasking() local
/art/compiler/utils/arm64/
Djni_macro_assembler_arm64.cc96 Register temp = temps.AcquireX(); in AddConstant() local
186 Register temp = temps.AcquireX(); in StoreStackPointerToThread() local
212 Register temp = temps.AcquireX(); in LoadImmediate() local
684 Register temp = temps.AcquireX(); in EmitExceptionPoll() local
811 Register temp = temps.AcquireW(); in RemoveFrame() local
Dassembler_arm64.cc185 void Arm64Assembler::GenerateMarkingRegisterCheck(Register temp, int code) { in GenerateMarkingRegisterCheck()
/art/runtime/verifier/
Dreg_type.cc527 std::string temp; in GetSuperClass() local
920 std::string temp; in Merge() local
937 std::string temp; in CheckInvariants() local
Dverifier_deps.cc122 std::string temp; in GetClassDescriptorStringId() local
128 std::string temp; in GetClassDescriptorStringId() local
1062 std::string temp; in VerifyFields() local
1131 std::string temp; in VerifyMethods() local
/art/runtime/mirror/
Dobject.cc290 std::string temp; in PrettyTypeOf() local

123