Home
last modified time | relevance | path

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

/art/runtime/arch/arm/
Dfault_handler_arm.cc148 uint8_t* ptr1 = ptr2 - 4; in Action() local
160 uint8_t* limit = ptr1 - 40; // Compiler will hoist to a max of 20 instructions. in Action()
162 while (ptr1 > limit) { in Action()
163 uint32_t inst1 = ((ptr1[0] | ptr1[1] << 8) << 16) | (ptr1[2] | ptr1[3] << 8); in Action()
169 ptr1 -= 2; // Min instruction size is 2 bytes. in Action()
/art/runtime/gc/space/
Dspace_create_test.cc105 MutableHandle<mirror::Object> ptr1(hs.NewHandle(Alloc(space, in TEST_P() local
111 EXPECT_TRUE(ptr1.Get() != nullptr); in TEST_P()
164 size_t free1 = space->AllocationSize(ptr1.Get(), nullptr); in TEST_P()
165 space->Free(self, ptr1.Assign(nullptr)); in TEST_P()
190 ptr1.Assign(Alloc(space, in TEST_P()
196 EXPECT_TRUE(ptr1.Get() != nullptr); in TEST_P()
221 free1 = space->AllocationSize(ptr1.Get(), nullptr); in TEST_P()
222 space->Free(self, ptr1.Assign(nullptr)); in TEST_P()
239 MutableHandle<mirror::Object> ptr1(hs.NewHandle(Alloc(space, in TEST_P() local
245 EXPECT_TRUE(ptr1.Get() != nullptr); in TEST_P()
[all …]
/art/runtime/arch/arm64/
Dfault_handler_arm64.cc121 uint8_t* ptr1 = ptr2 - 4; in Action() local
133 uint8_t* limit = ptr1 - 80; // Compiler will hoist to a max of 20 instructions. in Action()
135 while (ptr1 > limit) { in Action()
136 uint32_t inst1 = *reinterpret_cast<uint32_t*>(ptr1); in Action()
142 ptr1 -= 4; in Action()