Home
last modified time | relevance | path

Searched refs:ptr1 (Results 1 – 2 of 2) sorted by relevance

/art/runtime/arch/arm/
Dfault_handler_arm.cc130 uint8_t* ptr1 = ptr2 - 4; in Action() local
142 uint8_t* limit = ptr1 - 40; // Compiler will hoist to a max of 20 instructions. in Action()
144 while (ptr1 > limit) { in Action()
145 uint32_t inst1 = ((ptr1[0] | ptr1[1] << 8) << 16) | (ptr1[2] | ptr1[3] << 8); in Action()
151 ptr1 -= 2; // Min instruction size is 2 bytes. in Action()
/art/runtime/gc/space/
Dspace_create_test.cc102 MutableHandle<mirror::Object> ptr1(hs.NewHandle(Alloc(space, in TEST_P() local
108 EXPECT_TRUE(ptr1 != nullptr); in TEST_P()
161 size_t free1 = space->AllocationSize(ptr1.Get(), nullptr); in TEST_P()
162 space->Free(self, ptr1.Assign(nullptr)); in TEST_P()
187 ptr1.Assign(Alloc(space, in TEST_P()
193 EXPECT_TRUE(ptr1 != nullptr); in TEST_P()
218 free1 = space->AllocationSize(ptr1.Get(), nullptr); in TEST_P()
219 space->Free(self, ptr1.Assign(nullptr)); in TEST_P()
236 MutableHandle<mirror::Object> ptr1(hs.NewHandle(Alloc(space, in TEST_P() local
242 EXPECT_TRUE(ptr1 != nullptr); in TEST_P()
[all …]