Searched defs:pointer (Results 1 - 10 of 10) sorted by path

/art/compiler/utils/
H A Darray_ref.h49 typedef T* pointer; typedef in class:art::ArrayRef
H A Dintrusive_forward_list.h130 typedef T* pointer; typedef in class:art::IntrusiveForwardList
H A Dswap_space.h106 typedef void* pointer; typedef in class:art::SwapAllocator
137 typedef T* pointer; typedef in class:art::SwapAllocator
162 pointer address(reference x) const { return &x; }
165 pointer allocate(size_type n, SwapAllocator<void>::pointer hint ATTRIBUTE_UNUSED = nullptr) {
175 void deallocate(pointer p, size_type n) {
183 void construct(pointer p, const_reference val) {
190 void destroy(pointer p) {
/art/runtime/base/
H A Dallocator.h113 typedef typename std::allocator<T>::pointer pointer; typedef in class:art::TrackingAllocatorImpl
134 pointer allocate(size_type n, const_pointer hint ATTRIBUTE_UNUSED = 0) {
137 return reinterpret_cast<pointer>(malloc(size));
H A Darena_containers.h114 typedef void* pointer; typedef in class:art::ArenaAllocatorAdapter
147 typedef T* pointer; typedef in class:art::ArenaAllocatorAdapter
176 pointer address(reference x) const { return &x; }
179 pointer allocate(size_type n,
180 ArenaAllocatorAdapter<void>::pointer hint ATTRIBUTE_UNUSED = nullptr) {
184 void deallocate(pointer p, size_type n) {
H A Diteration_range.h32 typedef typename std::iterator_traits<Iter>::pointer pointer; typedef in class:art::IterationRange
H A Dscoped_arena_containers.h74 typedef void* pointer; typedef in class:art::ScopedArenaAllocatorAdapter
113 typedef T* pointer; typedef in class:art::ScopedArenaAllocatorAdapter
147 pointer address(reference x) const { return &x; }
150 pointer allocate(size_type n,
151 ScopedArenaAllocatorAdapter<void>::pointer hint ATTRIBUTE_UNUSED = nullptr) {
157 void deallocate(pointer p, size_type n) {
209 // Writing to the memory will fail ift we already destroyed the pointer with
H A Dstringpiece.h36 typedef const char* pointer; typedef in class:art::StringPiece
57 // data() may return a pointer to a buffer with embedded NULs, and the
/art/runtime/
H A Dmemory_region.h41 void* pointer() const { return pointer_; } function in class:art::FINAL
159 pointer_ = region.pointer();
171 // Locate the bit with the given offset. Returns a pointer to the byte
/art/tools/ahat/src/
H A DInstanceUtils.java296 public long pointer; field in class:InstanceUtils.NativeAllocation
299 public NativeAllocation(long size, Heap heap, long pointer, Instance referent) { argument
302 this.pointer = pointer;
317 Long pointer = InstanceUtils.getLongField(inst, "nativePtr", null);
318 if (pointer == null) {
359 return new NativeAllocation(size, inst.getHeap(), pointer, referent);

Completed in 509 milliseconds