Home
last modified time | relevance | path

Searched refs:pointer (Results 1 – 17 of 17) sorted by relevance

/art/compiler/utils/
Dscoped_arena_containers.h66 typedef void* pointer; typedef
105 typedef T* pointer; typedef
139 pointer address(reference x) const { return &x; } in address()
142 pointer allocate(size_type n, ScopedArenaAllocatorAdapter<void>::pointer hint = nullptr) {
148 void deallocate(pointer p, size_type n) { in deallocate()
152 void construct(pointer p, const_reference val) { in construct()
156 void destroy(pointer p) { in destroy()
Darena_containers.h92 typedef void* pointer; typedef
127 typedef T* pointer; typedef
158 pointer address(reference x) const { return &x; } in address()
161 pointer allocate(size_type n, ArenaAllocatorAdapter<void>::pointer hint = nullptr) {
166 void deallocate(pointer p, size_type n) { in deallocate()
169 void construct(pointer p, const_reference val) { in construct()
172 void destroy(pointer p) { in destroy()
Dswap_space.h108 typedef void* pointer; typedef
136 typedef T* pointer; typedef
161 pointer address(reference x) const { return &x; } in address()
164 pointer allocate(size_type n, SwapAllocator<void>::pointer hint = nullptr) {
172 void deallocate(pointer p, size_type n) { in deallocate()
180 void construct(pointer p, const_reference val) { in construct()
187 void destroy(pointer p) { in destroy()
Darray_ref.h49 typedef T* pointer; typedef
/art/runtime/arch/arm/
Dportable_entrypoints_arm.S39 mov r11, sp @ save the stack pointer
42 mov r9, r3 @ move managed thread pointer into r9
44 add r5, r2, #16 @ create space for method pointer in frame
47 add r0, sp, #4 @ pass stack pointer + method ptr as dest for memcpy
56 ldr ip, [r0, #METHOD_PORTABLE_CODE_OFFSET_32] @ get pointer to the code
58 mov sp, r11 @ restore the stack pointer
59 ldr ip, [sp, #24] @ load the result pointer
60 strd r0, [ip] @ store r0/r1 into result pointer
121 cmp r0, #0 @ is code pointer null?
Djni_entrypoints_arm.S31 sub sp, #12 @ pad stack pointer to align frame
35 add sp, #12 @ restore stack pointer
Dquick_entrypoints_arm.S305 mov r11, sp @ save the stack pointer
307 mov r9, r3 @ move managed thread pointer into r9
311 add r5, r2, #4 @ create space for method pointer in frame
317 add r0, sp, #4 @ pass stack pointer + method ptr as dest for memcpy
325 ldr ip, [r0, #METHOD_QUICK_CODE_OFFSET_32] @ get pointer to the code
327 mov sp, r11 @ restore the stack pointer
328 ldr ip, [sp, #24] @ load the result pointer
329 strd r0, [ip] @ store r0/r1 into result pointer
981 cbz r0, 1f @ is code pointer null? goto exception
/art/runtime/
Dmemory_region.h34 MemoryRegion(void* pointer, uword size) : pointer_(pointer), size_(size) {} in MemoryRegion() argument
36 void* pointer() const { return pointer_; } in pointer() function
88 pointer_ = region.pointer(); in Extend()
Dmemory_region.cc28 CHECK(from.pointer() != NULL); in CopyFrom()
33 from.pointer(), from.size()); in CopyFrom()
Dstack_map.h196 return region_.pointer() == other.region_.pointer() in Equals()
/art/runtime/base/
Dallocator.h99 typedef typename std::allocator<T>::pointer pointer; typedef
121 pointer allocate(size_type n, const_pointer hint = 0) {
124 return reinterpret_cast<pointer>(malloc(size));
Dstringpiece.h126 typedef const char* pointer; typedef
/art/test/122-secondarydex/
Dexpected.txt3 Got null pointer exception
/art/runtime/arch/mips/
Dquick_entrypoints_mips.S496 move $s1, $a3 # move managed thread pointer into s1
498 addiu $t0, $a2, 16 # create space for method pointer in frame
502 addiu $a0, $sp, 4 # pass stack pointer + method ptr as dest for memcpy
510 lw $t9, METHOD_QUICK_CODE_OFFSET_32($a0) # get pointer to the code
524 lw $t0, 16($sp) # get result pointer
1022 move $t9, $v0 # code pointer must be in $t9 to generate the global pointer
/art/compiler/llvm/
Dart_module.ll26 , %JavaObject* ; Method object pointer
/art/compiler/dex/quick/
Dcodegen_util.cc437 static void PushPointer(std::vector<uint8_t>&buf, const void* pointer, bool target64) { in PushPointer() argument
438 uint64_t data = reinterpret_cast<uintptr_t>(pointer); in PushPointer()
Dmir_to_lir.h617 uint32_t WrapPointer(void* pointer) { in WrapPointer() argument
619 pointer_storage_.Insert(pointer); in WrapPointer()