| /art/test/684-checker-simd-dotprod/src/other/ |
| D | TestCharShort.java | 63 int temp = a[i] * b[i]; in testDotProdSimple() local 113 int temp = ((short)(a[i] + 1)) * ((short)(b[i] + 1)); in testDotProdComplex() local 156 int temp = a[i] * b[i]; in testDotProdSimpleUnsigned() local 206 int temp = ((char)(a[i] + 1)) * ((char)(b[i] + 1)); in testDotProdComplexUnsigned() local 256 int temp = ((short)(a[i] + 1)) * ((short)(b[i] + 1)); in testDotProdComplexUnsignedCastToSigned() local 306 int temp = ((char)(a[i] + 1)) * ((char)(b[i] + 1)); in testDotProdComplexSignedCastToUnsigned() local 326 int temp = ((int)(a[i])) * ((int)(b[i])); in testDotProdSignedToInt() local 346 int temp = (short)(x) * b[i]; in testDotProdParamSigned() local 366 int temp = (char)(x) * b[i]; in testDotProdParamUnsigned() local 377 int temp = b[i] * (x); in testDotProdIntParam() local [all …]
|
| D | TestByte.java | 84 int temp = a[i] * b[i]; in testDotProdSimple() local 146 int temp = ((byte)(a[i] + 1)) * ((byte)(b[i] + 1)); in testDotProdComplex() local 209 int temp = (a[i] & 0xff) * (b[i] & 0xff); in testDotProdSimpleUnsigned() local 271 int temp = (((a[i] & 0xff) + 1) & 0xff) * (((b[i] & 0xff) + 1) & 0xff); in testDotProdComplexUnsigned() local 333 int temp = ((byte)((a[i] & 0xff) + 1)) * ((byte)((b[i] & 0xff) + 1)); in testDotProdComplexUnsignedCastToSigned() local 395 int temp = ((a[i] + 1) & 0xff) * ((b[i] + 1) & 0xff); in testDotProdComplexSignedCastToUnsigned() local 406 int temp = ((short)(a[i])) * ((short)(b[i])); in testDotProdSignedWidening() local 417 int temp = (byte)(x) * b[i]; in testDotProdParamSigned() local 428 int temp = (x & 0xff) * (b[i] & 0xff); in testDotProdParamUnsigned() local 441 int temp = b[i] * (x); in testDotProdIntParam() local [all …]
|
| D | TestVarious.java | 71 int temp = b[i] * 89; in testDotProdConstRight() local 124 int temp = 89 * (b[i] & 0xff); in testDotProdConstLeft() local 186 int temp = b[i] * ((byte)(param + 129)); in testDotProdLoopInvariantConvRight() local 197 int temp = ((char)((byte)(a[i] + 129))) * b[i]; in testDotProdByteToChar() local 208 int temp = a[i] * b[i]; in testDotProdMixedSize() local 219 int temp = a[i] * b[i]; in testDotProdMixedSizeAndSign() local 270 int temp = a[i] * b[i]; in testDotProdInt32() local
|
| /art/libartbase/base/ |
| D | stride_iterator.h | 59 StrideIterator<T> temp = *this; variable 70 StrideIterator<T> temp = *this; variable 81 StrideIterator<T> temp = *this; variable 92 StrideIterator<T> temp = *this; variable
|
| D | stl_util.h | 45 ForwardIterator temp = begin; in STLDeleteContainerPointers() local 47 delete *temp; in STLDeleteContainerPointers() local
|
| /art/test/550-checker-multiply-accumulate/src/ |
| D | Main.java | 172 int temp = left * right; in $opt$noinline$multipleUses1() local 229 long temp = left * right; in $opt$noinline$multipleUses2() local 476 int temp = 12345 * array1[j]; in SimdMulMultipleUses() local 484 long temp = 12345 * array1[j]; in SimdMulMultipleUsesLong() local
|
| /art/runtime/ |
| D | art_field.cc | 64 std::string temp; in PrettyField() local
|
| D | proxy_test.cc | 64 std::string temp; in TEST_F() local 114 std::string temp; in TEST_F() local
|
| D | class_linker_test.cc | 91 std::string temp; in AssertPrimitiveClass() local 128 std::string temp; in AssertObjectClass() local 183 std::string temp; in AssertArrayClass() local 196 std::string temp; in AssertArrayClass() local 259 std::string temp; in AssertClass() local 407 std::string temp; in AssertDexFileClass() local 965 std::string temp; in TEST_F() local 1391 std::string temp; in TEST_F() local
|
| D | common_throws.cc | 405 std::string temp; in ThrowNoSuchFieldError() local 413 std::string temp; in ThrowNoSuchFieldException() local 425 std::string temp; in ThrowNoSuchMethodError() local 435 std::string temp; in ThrowNoSuchMethodError() local
|
| D | class_table-inl.h | 244 std::string temp; in LookupByDescriptor() local
|
| /art/test/153-reference-stress/src/ |
| D | Main.java | 45 Object temp = new Object(); in GcThread() local
|
| /art/libdexfile/dex/ |
| D | class_iterator.h | 63 ClassIterator temp = *this; variable
|
| D | dex_instruction_iterator.h | 140 DexInstructionIterator temp = *this; variable
|
| /art/test/642-fp-callees/ |
| D | fp_callees.cc | 46 double temp = array[0]; in Java_Main_holdFpTemporaries() local
|
| /art/test/530-checker-peel-unroll/src/ |
| D | Main.java | 251 int temp = array[i + 1]; in unrollingSwapElements() local 625 int temp = a[i + 1]; in unrollingSimpleLiveOuts() local 725 int temp = a[i + 1]; in unrollingLiveOutsNested() local
|
| /art/test/odsign/test-src/com/android/tests/odsign/ |
| D | CompOsDenialHostTest.java | 108 String temp = PENDING_ARTIFACTS_DIR + "/temp"; in denyDueToInconsistentFileName() local
|
| /art/test/015-checker-switch/src/ |
| D | Main.java | 163 long temp = value; in $noinline$packedSwitch7() local
|
| /art/compiler/optimizing/ |
| D | code_generator_arm_vixl.cc | 1240 const vixl32::Register temp = temps.Acquire(); in GenerateLongDataProc() local 1273 const vixl32::Register temp = temps.Acquire(); in GenerateLongDataProc() local 1608 vixl32::Register temp; in GenerateEqualLong() local 2273 vixl32::Register temp = temps.Acquire(); in MaybeIncrementHotness() local 2389 vixl32::Register temp; in GenerateFrameEntry() local 2476 vixl32::Register temp = temps.Acquire(); in GenerateFrameEntry() local 2744 vixl32::Register temp = temps.Acquire(); in Move32() local 3032 vixl32::Register temp = temps.Acquire(); in VisitIf() local 3273 vixl32::Register temp) { in GenerateConditionWithZero() 3712 vixl32::Register temp = RegisterFrom(locations->GetTemp(0)); in VisitInvokeInterface() local [all …]
|
| D | code_generator_arm64.cc | 1471 Register temp = temps.AcquireX(); in GenerateFrameEntry() local 1629 Register temp = temps.AcquireW(); // Index within the CardTable - 32bit. in MarkGCCard() local 1653 Register temp = temps.AcquireW(); // Index within the CardTable - 32bit. in CheckGCCardIsValid() local 1868 CPURegister temp; in MoveLocation() local 1906 CPURegister temp = AcquireFPOrCoreCPURegisterOfSize( in MoveLocation() local 2010 Register temp = dst.Is64Bits() ? temps.AcquireX() : temps.AcquireW(); in LoadAcquire() local 2174 Register temp = temps.AcquireW(); in GenerateClassInitializationCheck() local 2188 HTypeCheckInstruction* check, vixl::aarch64::Register temp) { in GenerateBitstringTypeCheckCompare() 2271 Register temp = temps.AcquireW(); in GenerateSuspendCheck() local 2437 Register temp = temps.AcquireW(); in HandleFieldSet() local [all …]
|
| /art/compiler/utils/arm/ |
| D | assembler_arm_vixl.cc | 83 void ArmVIXLAssembler::GenerateMarkingRegisterCheck(vixl32::Register temp, int code) { in GenerateMarkingRegisterCheck() 146 vixl32::Register temp, in AdjustLoadStoreOffset() 305 vixl32::Register temp = (dest.Is(base)) ? temps.Acquire() : dest; in LoadFromOffset() local
|
| /art/runtime/base/ |
| D | gc_visited_arena_pool.cc | 340 TrackedArena* temp = down_cast<TrackedArena*>(first); in FreeArenaChain() local 403 TrackedArena* temp = down_cast<TrackedArena*>(arena->Next()); in DeleteUnusedArenas() local
|
| /art/compiler/utils/arm64/ |
| D | assembler_arm64.h | 109 vixl::aarch64::Register temp = temps.AcquireX(); in SaveRestoreZRegisterList() local
|
| /art/runtime/verifier/ |
| D | reg_type_cache.cc | 273 std::string temp; in FromClass() local 505 std::string temp; in GetComponentType() local
|
| /art/test/623-checker-loop-regressions/src/ |
| D | Main.java | 738 int temp = a[i] * b[i]; in testDotProdAndSet() local 754 int temp = a[i] * b[i]; in testDotProdAndDotProd() local 783 int temp = Math.abs(x[i] - y[i]); in testSADAndSet() local 811 int temp = Math.abs(x[i] - y[i]); in testSADAndSAD() local
|