Searched refs:conv (Results 1 – 6 of 6) sorted by relevance
/art/compiler/optimizing/ |
D | induction_var_analysis_test.cc | 595 HInstruction *conv = InsertInstruction( in TEST_F() local 597 HInstruction* store1 = InsertArrayStore(conv, 0); in TEST_F() 622 HInstruction* conv = new(&allocator_) HTypeConversion(Primitive::kPrimByte, increment_[0], -1); in TEST_F() local 623 loop_body_[0]->InsertInstructionBefore(conv, increment_[0]->GetNext()); in TEST_F() 624 basic_[0]->ReplaceInput(conv, 1); in TEST_F() 641 HInstruction* conv = new(&allocator_) HTypeConversion(Primitive::kPrimByte, increment_[0], -1); in TEST_F() local 642 loop_body_[0]->InsertInstructionBefore(conv, increment_[0]->GetNext()); in TEST_F() 643 basic_[0]->ReplaceInput(conv, 1); in TEST_F() 659 HInstruction* conv = new(&allocator_) HTypeConversion(Primitive::kPrimShort, increment_[0], -1); in TEST_F() local 660 loop_body_[0]->InsertInstructionBefore(conv, increment_[0]->GetNext()); in TEST_F() [all …]
|
/art/runtime/native/ |
D | sun_misc_Unsafe.cc | 446 union {int32_t val; jfloat converted;} conv; in Unsafe_getFloat() local 447 conv.val = obj->GetField32(MemberOffset(offset)); in Unsafe_getFloat() 448 return conv.converted; in Unsafe_getFloat() 454 union {int32_t converted; jfloat val;} conv; in Unsafe_putFloat() local 455 conv.val = newValue; in Unsafe_putFloat() 457 obj->SetField32<false>(MemberOffset(offset), conv.converted); in Unsafe_putFloat() 463 union {int64_t val; jdouble converted;} conv; in Unsafe_getDouble() local 464 conv.val = obj->GetField64(MemberOffset(offset)); in Unsafe_getDouble() 465 return conv.converted; in Unsafe_getDouble() 471 union {int64_t converted; jdouble val;} conv; in Unsafe_putDouble() local [all …]
|
/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/runtime/arch/ |
D | stub_test.cc | 1264 } conv; in TEST_F() local 1265 conv.r = result; in TEST_F() 1267 EXPECT_TRUE(e == 0 ? conv.i == 0 : true) << "x=" << c[x] << " y=" << c[y] << " res=" << in TEST_F() 1268 conv.r; in TEST_F() 1269 EXPECT_TRUE(e < 0 ? conv.i < 0 : true) << "x=" << c[x] << " y=" << c[y] << " res=" << in TEST_F() 1270 conv.r; in TEST_F() 1271 EXPECT_TRUE(e > 0 ? conv.i > 0 : true) << "x=" << c[x] << " y=" << c[y] << " res=" << in TEST_F() 1272 conv.r; in TEST_F() 2136 } conv; in TEST_F() local 2137 conv.r = result; in TEST_F() [all …]
|
/art/dexdump/ |
D | dexdump.cc | 760 } conv; in dumpInstruction() local 761 conv.i = pDecInsn->VRegB(); in dumpInstruction() 763 pDecInsn->VRegA(), conv.f, pDecInsn->VRegB()); in dumpInstruction() 830 } conv; in dumpInstruction() local 831 conv.j = pDecInsn->WideVRegB(); in dumpInstruction() 833 pDecInsn->VRegA(), conv.d, pDecInsn->WideVRegB()); in dumpInstruction()
|
/art/test/ |
D | Android.run-test.mk | 914 $$(run_test_rule_name): $(TEST_ART_RUN_TEST_DEPENDENCIES) $(HOST_OUT_EXECUTABLES)/hprof-conv $$(pre…
|