Home
last modified time | relevance | path

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

/art/runtime/arch/arm/
Dfault_handler_arm.cc143 uint8_t* ptr1 = ptr2 - 4; in Action() local
155 uint8_t* limit = ptr1 - 40; // Compiler will hoist to a max of 20 instructions. in Action()
157 while (ptr1 > limit) { in Action()
158 uint32_t inst1 = ((ptr1[0] | ptr1[1] << 8) << 16) | (ptr1[2] | ptr1[3] << 8); in Action()
164 ptr1 -= 2; // Min instruction size is 2 bytes. in Action()
/art/runtime/arch/arm64/
Dfault_handler_arm64.cc117 uint8_t* ptr1 = ptr2 - 4; in Action() local
129 uint8_t* limit = ptr1 - 80; // Compiler will hoist to a max of 20 instructions. in Action()
131 while (ptr1 > limit) { in Action()
132 uint32_t inst1 = *reinterpret_cast<uint32_t*>(ptr1); in Action()
138 ptr1 -= 4; 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 …]