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

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

Completed in 2117 milliseconds