/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 | 136 HInstruction* conv = instruction->InputAt(0); in IsSignExtensionAndGet() local 137 DataType::Type from = conv->GetType(); in IsSignExtensionAndGet() 144 *operand = conv; in IsSignExtensionAndGet() 201 HInstruction* conv = instruction->InputAt(0); in IsZeroExtensionAndGet() local 202 DataType::Type from = conv->GetType(); in IsZeroExtensionAndGet() 207 *operand = conv; in IsZeroExtensionAndGet()
|
/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-float-simd/src/ |
D | Main.java | 115 static void conv(int[] b) { in conv() method in Main 182 conv(b); in main()
|
/art/test/640-checker-double-simd/src/ |
D | Main.java | 116 static void conv(long[] b) { in conv() method in Main 183 conv(b); in main()
|
/art/runtime/native/ |
D | sun_misc_Unsafe.cc | 460 union {int32_t val; jfloat converted;} conv; in Unsafe_getFloat() local 461 conv.val = obj->GetField32(MemberOffset(offset)); in Unsafe_getFloat() 462 return conv.converted; in Unsafe_getFloat() 468 union {int32_t converted; jfloat val;} conv; in Unsafe_putFloat() local 469 conv.val = newValue; in Unsafe_putFloat() 471 obj->SetField32<false>(MemberOffset(offset), conv.converted); in Unsafe_putFloat() 477 union {int64_t val; jdouble converted;} conv; in Unsafe_getDouble() local 478 conv.val = obj->GetField64(MemberOffset(offset)); in Unsafe_getDouble() 479 return conv.converted; in Unsafe_getDouble() 485 union {int64_t converted; jdouble val;} conv; in Unsafe_putDouble() local [all …]
|
/art/dexdump/ |
D | dexdump.cc | 465 } conv; in dumpEncodedValue() local 466 conv.data = static_cast<u4>(readVarWidth(data, arg, false)) << (3 - arg) * 8; in dumpEncodedValue() 467 fprintf(gOutFile, "%g", conv.f); in dumpEncodedValue() 475 } conv; in dumpEncodedValue() local 476 conv.data = readVarWidth(data, arg, false) << (7 - arg) * 8; in dumpEncodedValue() 477 fprintf(gOutFile, "%g", conv.d); in dumpEncodedValue() 1086 } conv; in dumpInstruction() local 1087 conv.i = pDecInsn->VRegB(); in dumpInstruction() 1089 pDecInsn->VRegA(), conv.f, pDecInsn->VRegB()); in dumpInstruction() 1140 } conv; in dumpInstruction() local [all …]
|
/art/runtime/arch/ |
D | stub_test.cc | 1151 } conv; in TEST_F() local 1152 conv.r = result; in TEST_F() 1154 EXPECT_TRUE(e == 0 ? conv.i == 0 : true) << "x=" << c[x] << " y=" << c[y] << " res=" << in TEST_F() 1155 conv.r; in TEST_F() 1156 EXPECT_TRUE(e < 0 ? conv.i < 0 : true) << "x=" << c[x] << " y=" << c[y] << " res=" << in TEST_F() 1157 conv.r; in TEST_F() 1158 EXPECT_TRUE(e > 0 ? conv.i > 0 : true) << "x=" << c[x] << " y=" << c[y] << " res=" << in TEST_F() 1159 conv.r; in TEST_F() 2023 } conv; in TEST_F() local 2024 conv.r = result; in TEST_F() [all …]
|
/art/dexlayout/ |
D | dex_ir.cc | 235 } conv; in ReadEncodedValue() local 236 conv.data = static_cast<uint32_t>(ReadVarWidth(data, length, false)) << (3 - length) * 8; in ReadEncodedValue() 237 item->SetFloat(conv.f); in ReadEncodedValue() 245 } conv; in ReadEncodedValue() local 246 conv.data = ReadVarWidth(data, length, false) << (7 - length) * 8; in ReadEncodedValue() 247 item->SetDouble(conv.d); in ReadEncodedValue()
|
D | dexlayout.cc | 966 } conv; in DumpInstruction() local 967 conv.i = dec_insn->VRegB(); in DumpInstruction() 969 dec_insn->VRegA(), conv.f, dec_insn->VRegB()); in DumpInstruction() 1021 } conv; in DumpInstruction() local 1022 conv.j = dec_insn->WideVRegB(); in DumpInstruction() 1024 dec_insn->VRegA(), conv.d, dec_insn->WideVRegB()); in DumpInstruction()
|
/art/test/ |
D | Android.run-test.mk | 68 $(HOST_OUT_EXECUTABLES)/hprof-conv \
|
/art/ |
D | Android.mk | 401 hprof-conv \
|