/art/compiler/optimizing/ |
D | induction_var_analysis_test.cc | 1089 HInstruction* conv = InsertInstruction( in TEST_F() local 1091 HInstruction* store1 = InsertArrayStore(conv, 0); in TEST_F() 1120 HInstruction* conv = InsertInstruction( in TEST_F() local 1122 HInstruction* store1 = InsertArrayStore(conv, 0); in TEST_F() 1124 new (GetAllocator()) HAdd(DataType::Type::kInt32, conv, constant1_), 0); in TEST_F() 1152 HInstruction* conv = InsertInstruction( in TEST_F() local 1154 k_header->AddInput(conv); in TEST_F() 1180 HInstruction* conv = InsertInstruction( in TEST_F() local 1182 k_header->AddInput(conv); in TEST_F() 1200 HInstruction* conv = InsertInstruction( in TEST_F() local [all …]
|
D | loop_optimization.cc | 131 HInstruction* conv = instruction->InputAt(0); in IsSignExtensionAndGet() local 132 DataType::Type from = conv->GetType(); in IsSignExtensionAndGet() 139 *operand = conv; in IsSignExtensionAndGet() 196 HInstruction* conv = instruction->InputAt(0); in IsZeroExtensionAndGet() local 197 DataType::Type from = conv->GetType(); in IsZeroExtensionAndGet() 202 *operand = conv; in IsZeroExtensionAndGet()
|
/art/test/180-native-default-method/ |
D | build | 26 printf '035' | dd status=none conv=notrunc of=classes.dex bs=1 seek=4 count=3
|
/art/test/370-dex-v37/ |
D | build | 26 printf '037' | dd status=none conv=notrunc of=classes.dex bs=1 seek=4 count=3
|
/art/test/640-checker-simd/src/ |
D | SimdFloat.java | 115 static void conv(int[] b) { in conv() method in SimdFloat 182 conv(b); in main()
|
D | SimdDouble.java | 116 static void conv(long[] b) { in conv() method in SimdDouble 183 conv(b); in main()
|
/art/runtime/native/ |
D | sun_misc_Unsafe.cc | 474 union {int32_t val; jfloat converted;} conv; in Unsafe_getFloat() local 475 conv.val = obj->GetField32(MemberOffset(offset)); in Unsafe_getFloat() 476 return conv.converted; in Unsafe_getFloat() 482 union {int32_t converted; jfloat val;} conv; in Unsafe_putFloat() local 483 conv.val = newValue; in Unsafe_putFloat() 485 obj->SetField32<false>(MemberOffset(offset), conv.converted); in Unsafe_putFloat() 491 union {int64_t val; jdouble converted;} conv; in Unsafe_getDouble() local 492 conv.val = obj->GetField64(MemberOffset(offset)); in Unsafe_getDouble() 493 return conv.converted; in Unsafe_getDouble() 499 union {int64_t converted; jdouble val;} conv; in Unsafe_putDouble() local [all …]
|
/art/tools/ |
D | build_linux_bionic_tests.sh | 82 $soong_out/bin/hprof-conv
|
/art/dexdump/ |
D | dexdump.cc | 463 } conv; in dumpEncodedValue() local 464 conv.data = static_cast<u4>(readVarWidth(data, arg, false)) << (3 - arg) * 8; in dumpEncodedValue() 465 fprintf(gOutFile, "%g", conv.f); in dumpEncodedValue() 473 } conv; in dumpEncodedValue() local 474 conv.data = readVarWidth(data, arg, false) << (7 - arg) * 8; in dumpEncodedValue() 475 fprintf(gOutFile, "%g", conv.d); in dumpEncodedValue() 1057 } conv; in dumpInstruction() local 1058 conv.i = pDecInsn->VRegB(); in dumpInstruction() 1060 pDecInsn->VRegA(), conv.f, pDecInsn->VRegB()); in dumpInstruction() 1111 } conv; in dumpInstruction() local [all …]
|
/art/runtime/arch/ |
D | stub_test.cc | 1021 } conv; in TEST_F() local 1022 conv.r = result; in TEST_F() 1024 EXPECT_TRUE(e == 0 ? conv.i == 0 : true) << "x=" << c[x] << " y=" << c[y] << " res=" << in TEST_F() 1025 conv.r; in TEST_F() 1026 EXPECT_TRUE(e < 0 ? conv.i < 0 : true) << "x=" << c[x] << " y=" << c[y] << " res=" << in TEST_F() 1027 conv.r; in TEST_F() 1028 EXPECT_TRUE(e > 0 ? conv.i > 0 : true) << "x=" << c[x] << " y=" << c[y] << " res=" << in TEST_F() 1029 conv.r; in TEST_F() 1899 } conv; in TEST_F() local 1900 conv.r = result; in TEST_F() [all …]
|
/art/test/ |
D | Android.run-test.mk | 59 $(HOST_OUT_EXECUTABLES)/hprof-conv \
|
/art/dexlayout/ |
D | dex_ir_builder.cc | 1140 } conv; in ReadEncodedValue() local 1141 conv.data = static_cast<uint32_t>(ReadVarWidth(data, length, false)) << (3 - length) * 8; in ReadEncodedValue() 1142 item->SetFloat(conv.f); in ReadEncodedValue() 1150 } conv; in ReadEncodedValue() local 1151 conv.data = ReadVarWidth(data, length, false) << (7 - length) * 8; in ReadEncodedValue() 1152 item->SetDouble(conv.d); in ReadEncodedValue()
|
D | dexlayout.cc | 952 } conv; in DumpInstruction() local 953 conv.i = dec_insn->VRegB(); in DumpInstruction() 955 dec_insn->VRegA(), conv.f, dec_insn->VRegB()); in DumpInstruction() 1007 } conv; in DumpInstruction() local 1008 conv.j = dec_insn->WideVRegB(); in DumpInstruction() 1010 dec_insn->VRegA(), conv.d, dec_insn->WideVRegB()); in DumpInstruction()
|
/art/build/apex/ |
D | Android.bp | 136 "hprof-conv",
|
/art/ |
D | Android.mk | 424 hprof-conv \
|