Home
last modified time | relevance | path

Searched refs:x (Results 226 – 250 of 267) sorted by relevance

1234567891011

/art/tools/
Dbuildbot-setup-device.sh121 [[ "x$ART_TEST_CHROOT" = x/* ]] || { echo "$ART_TEST_CHROOT is not an absolute path"; exit 1; }
/art/runtime/gc/
Dheap-inl.h51 [&pre_fence_visitor](auto... x) REQUIRES_SHARED(Locks::mutator_lock_) { in AllocObjectWithAllocator()
53 pre_fence_visitor(x...); in AllocObjectWithAllocator()
/art/compiler/optimizing/
Dcodegen_test.cc639 const uint64_t x = i; in TestComparison() local
668 expected_result = (x < y); in TestComparison()
672 expected_result = (x <= y); in TestComparison()
676 expected_result = (x > y); in TestComparison()
680 expected_result = (x >= y); in TestComparison()
Dinduction_var_range.cc593 Value x = MulValue(Value(a), t); in GetPolynomial() local
595 return AddValue(AddValue(x, y), c); in GetPolynomial()
1163 HInstruction* x = nullptr; in GenerateLastValuePeriodic() local
1167 GenerateCode(info->op_a, nullptr, graph, block, graph ? &x : nullptr, false, false) && in GenerateLastValuePeriodic()
1178 *result = Insert(block, new (graph->GetAllocator()) HSelect(is_even, x, y, kNoDexPc)); in GenerateLastValuePeriodic()
1186 *result = Insert(block, new (allocator) HSelect(is_taken, *result, x, kNoDexPc)); in GenerateLastValuePeriodic()
Dloop_optimization.cc972 HInstruction* x = i->offset; in ShouldVectorize() local
977 if (x != y) { in ShouldVectorize()
988 if (x != y) { in ShouldVectorize()
1860 #define GENERATE_VEC(x, y) \ argument
1862 vector = (x); \
/art/test/800-smali/smali/
DsameFieldNames.smali47 .field static public x:Ljava/lang/Integer;
/art/test/dexdump/
Dinvoke-polymorphic.txt104 0x0016 - 0x001e reg=8 x I
/art/test/953-invoke-polymorphic-compiler/src/
DMain.java105 int u, int v, int w, int x, in Min2Print26() argument
108 n, o, p, q, r, s, t, u, v, w, x, y, z }; in Min2Print26()
/art/runtime/base/
Dlocks.cc91 volatile uint32_t x = 0; in BackOff() local
94 ++x; // Volatile; hence should not be optimized away. in BackOff()
Dmutex.cc94 volatile uint32_t x = 0; in BackOff() local
97 ++x; // Volatile; hence should not be optimized away. in BackOff()
/art/test/100-reflect2/src/
DMain.java242 for (int x : xs) { in sumArray()
243 result += x; in sumArray()
/art/runtime/mirror/
Dobject_test.cc588 Handle<Object> x(hs.NewHandle(X->AllocObject(soa.Self()))); in TEST_F() local
590 ASSERT_TRUE(x != nullptr); in TEST_F()
593 EXPECT_TRUE(x->InstanceOf(X.Get())); in TEST_F()
594 EXPECT_FALSE(x->InstanceOf(Y.Get())); in TEST_F()
/art/dex2oat/driver/
Dcompiler_driver.cc105 static double Percentage(size_t x, size_t y) { in Percentage() argument
106 return 100.0 * (static_cast<double>(x)) / (static_cast<double>(x + y)); in Percentage()
109 static void DumpStat(size_t x, size_t y, const char* str) { in DumpStat() argument
110 if (x == 0 && y == 0) { in DumpStat()
113 LOG(INFO) << Percentage(x, y) << "% of " << str << " for " << (x + y) << " cases"; in DumpStat()
/art/test/046-reflect/src/
DMain.java111 int x = field.getInt(instance); in checkAccess() local
113 System.out.println("field get unexpectedly worked: " + x); in checkAccess()
/art/openjdkjvmti/
Dti_redefine.cc997 !std::all_of(seen_old_methods.cbegin(), seen_old_methods.cend(), [](auto x) { return x; })) { in CheckMethods() argument
1000 std::find_if(seen_old_methods.cbegin(), seen_old_methods.cend(), [](auto x) { return !x; }); in CheckMethods() argument
1057 if (!std::all_of(seen_old_fields.cbegin(), seen_old_fields.cend(), [](auto x) { return x; })) { in CheckFields() argument
1059 std::find_if(seen_old_fields.cbegin(), seen_old_fields.cend(), [](auto x) { return !x; }); in CheckFields() argument
/art/tools/jvmti-agents/ti-fast/
Dtifast.cc32 #define EVENT(x) JVMTI_EVENT_ ## x argument
/art/runtime/
Dthread.cc3327 #define DO_THREAD_OFFSET(x, y) \ in DumpThreadOffset() argument
3328 if (offset == (x).Uint32Value()) { \ in DumpThreadOffset()
3347 #define JNI_ENTRY_POINT_INFO(x) \ in DumpThreadOffset() argument
3348 if (JNI_ENTRYPOINT_OFFSET(ptr_size, x).Uint32Value() == offset) { \ in DumpThreadOffset()
3349 os << #x; \ in DumpThreadOffset()
3356 #define QUICK_ENTRY_POINT_INFO(x) \ in DumpThreadOffset() argument
3357 if (QUICK_ENTRYPOINT_OFFSET(ptr_size, x).Uint32Value() == offset) { \ in DumpThreadOffset()
3358 os << #x; \ in DumpThreadOffset()
/art/test/510-checker-try-catch/smali/
DRuntime.smali443 ## CHECK-NEXT: ParallelMove moves:[{{.*->}}2x{{\d+}}(sp)]
445 ## CHECK-NEXT: ParallelMove moves:[{{.*->}}2x{{\d+}}(sp)]
/art/test/959-invoke-polymorphic-accessors/src/
DMain.java762 byte x = (byte) h0.invoke(); in testStaticGetter()
785 byte x = (byte) h0.invoke(valueHolder); in testMemberGetter()
/art/test/1968-force-early-return/src/art/
DTest1968.java682 new Test1968((x) -> {}).runTests();
/art/test/1954-pop-frame-jit/src/art/
DTest1953.java698 new Test1953(canRunClassLoadTests, (x)-> {}).runTests();
/art/test/1953-pop-frame/src/art/
DTest1953.java698 new Test1953(canRunClassLoadTests, (x)-> {}).runTests();
/art/test/1955-pop-frame-jit-called/src/art/
DTest1953.java698 new Test1953(canRunClassLoadTests, (x)-> {}).runTests();
/art/test/1956-pop-frame-jit-calling/src/art/
DTest1953.java698 new Test1953(canRunClassLoadTests, (x)-> {}).runTests();
/art/compiler/utils/x86_64/
Dassembler_x86_64.cc4193 void X86_64Assembler::rex(bool force, bool w, Register* r, Register* x, Register* b) {
4207 if (x != nullptr && *x >= Register::R8 && *x < Register::kNumberOfCpuRegisters) {
4209 *x = static_cast<Register>(*x - 8);
5256 void X86_64Assembler::EmitOptionalRex(bool force, bool w, bool r, bool x, bool b) { in EmitOptionalRex() argument
5269 if (x) { in EmitOptionalRex()

1234567891011