Home
last modified time | relevance | path

Searched refs:conv (Results 1 – 10 of 10) sorted by relevance

/art/compiler/optimizing/
Dinduction_var_analysis_test.cc1088 HInstruction* conv = InsertInstruction( in TEST_F() local
1090 HInstruction* store1 = InsertArrayStore(conv, 0); in TEST_F()
1119 HInstruction* conv = InsertInstruction( in TEST_F() local
1121 HInstruction* store1 = InsertArrayStore(conv, 0); in TEST_F()
1123 new (&allocator_) HAdd(Primitive::kPrimInt, conv, constant1_), 0); in TEST_F()
1151 HInstruction* conv = InsertInstruction( in TEST_F() local
1153 k_header->AddInput(conv); in TEST_F()
1179 HInstruction* conv = InsertInstruction( in TEST_F() local
1181 k_header->AddInput(conv); in TEST_F()
1199 HInstruction* conv = InsertInstruction( in TEST_F() local
[all …]
/art/test/370-dex-v37/
Dbuild26 printf '037' | dd status=none conv=notrunc of=classes.dex bs=1 seek=4 count=3
/art/test/640-checker-float-simd/src/
DMain.java129 static void conv(int[] b) { in conv() method in Main
196 conv(b); in main()
/art/test/640-checker-double-simd/src/
DMain.java127 static void conv(long[] b) { in conv() method in Main
194 conv(b); in main()
/art/runtime/native/
Dsun_misc_Unsafe.cc451 union {int32_t val; jfloat converted;} conv; in Unsafe_getFloat() local
452 conv.val = obj->GetField32(MemberOffset(offset)); in Unsafe_getFloat()
453 return conv.converted; in Unsafe_getFloat()
459 union {int32_t converted; jfloat val;} conv; in Unsafe_putFloat() local
460 conv.val = newValue; in Unsafe_putFloat()
462 obj->SetField32<false>(MemberOffset(offset), conv.converted); in Unsafe_putFloat()
468 union {int64_t val; jdouble converted;} conv; in Unsafe_getDouble() local
469 conv.val = obj->GetField64(MemberOffset(offset)); in Unsafe_getDouble()
470 return conv.converted; in Unsafe_getDouble()
476 union {int64_t converted; jdouble val;} conv; in Unsafe_putDouble() local
[all …]
/art/dexdump/
Ddexdump.cc461 } conv; in dumpEncodedValue() local
462 conv.data = static_cast<u4>(readVarWidth(data, arg, false)) << (3 - arg) * 8; in dumpEncodedValue()
463 fprintf(gOutFile, "%g", conv.f); in dumpEncodedValue()
471 } conv; in dumpEncodedValue() local
472 conv.data = readVarWidth(data, arg, false) << (7 - arg) * 8; in dumpEncodedValue()
473 fprintf(gOutFile, "%g", conv.d); in dumpEncodedValue()
1069 } conv; in dumpInstruction() local
1070 conv.i = pDecInsn->VRegB(); in dumpInstruction()
1072 pDecInsn->VRegA(), conv.f, pDecInsn->VRegB()); in dumpInstruction()
1123 } conv; in dumpInstruction() local
[all …]
/art/runtime/arch/
Dstub_test.cc1150 } conv; in TEST_F() local
1151 conv.r = result; in TEST_F()
1153 EXPECT_TRUE(e == 0 ? conv.i == 0 : true) << "x=" << c[x] << " y=" << c[y] << " res=" << in TEST_F()
1154 conv.r; in TEST_F()
1155 EXPECT_TRUE(e < 0 ? conv.i < 0 : true) << "x=" << c[x] << " y=" << c[y] << " res=" << in TEST_F()
1156 conv.r; in TEST_F()
1157 EXPECT_TRUE(e > 0 ? conv.i > 0 : true) << "x=" << c[x] << " y=" << c[y] << " res=" << in TEST_F()
1158 conv.r; in TEST_F()
2022 } conv; in TEST_F() local
2023 conv.r = result; in TEST_F()
[all …]
/art/dexlayout/
Ddex_ir.cc269 } conv; in ReadEncodedValue() local
270 conv.data = static_cast<uint32_t>(ReadVarWidth(data, length, false)) << (3 - length) * 8; in ReadEncodedValue()
271 item->SetFloat(conv.f); in ReadEncodedValue()
279 } conv; in ReadEncodedValue() local
280 conv.data = ReadVarWidth(data, length, false) << (7 - length) * 8; in ReadEncodedValue()
281 item->SetDouble(conv.d); in ReadEncodedValue()
Ddexlayout.cc993 } conv; in DumpInstruction() local
994 conv.i = dec_insn->VRegB(); in DumpInstruction()
996 dec_insn->VRegA(), conv.f, dec_insn->VRegB()); in DumpInstruction()
1048 } conv; in DumpInstruction() local
1049 conv.j = dec_insn->WideVRegB(); in DumpInstruction()
1051 dec_insn->VRegA(), conv.d, dec_insn->WideVRegB()); in DumpInstruction()
/art/test/
DAndroid.run-test.mk89 $(HOST_OUT_EXECUTABLES)/hprof-conv \