Searched defs:pointer (Results 1 - 9 of 9) sorted by relevance

/art/runtime/base/
H A Diteration_range.h32 typedef typename std::iterator_traits<Iter>::pointer pointer; typedef in class:art::IterationRange
H A Darena_containers.h92 typedef void* pointer; typedef in class:art::ArenaAllocatorAdapter
125 typedef T* pointer; typedef in class:art::ArenaAllocatorAdapter
154 pointer address(reference x) const { return &x; }
157 pointer allocate(size_type n, ArenaAllocatorAdapter<void>::pointer hint = nullptr) {
162 void deallocate(pointer p, size_type n) {
166 void construct(pointer p, const_reference val) {
169 void destroy(pointer p) {
H A Dscoped_arena_containers.h72 typedef void* pointer; typedef in class:art::ScopedArenaAllocatorAdapter
111 typedef T* pointer; typedef in class:art::ScopedArenaAllocatorAdapter
145 pointer address(reference x) const { return &x; }
148 pointer allocate(size_type n, ScopedArenaAllocatorAdapter<void>::pointer hint = nullptr) {
155 void deallocate(pointer p, size_type n) {
161 void construct(pointer p, const_reference val) {
165 void destroy(pointer p) {
H A Dallocator.h110 typedef typename std::allocator<T>::pointer pointer; typedef in class:art::TrackingAllocatorImpl
133 pointer allocate(size_type n, const_pointer hint = 0) {
137 return reinterpret_cast<pointer>(malloc(size));
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/compiler/utils/
H A Darray_ref.h49 typedef T* pointer; typedef in class:art::ArrayRef
H A Dswap_space.h107 typedef void* pointer; typedef in class:art::SwapAllocator
135 typedef T* pointer; typedef in class:art::SwapAllocator
160 pointer address(reference x) const { return &x; }
163 pointer allocate(size_type n, SwapAllocator<void>::pointer hint ATTRIBUTE_UNUSED = nullptr) {
171 void deallocate(pointer p, size_type n) {
179 void construct(pointer p, const_reference val) {
186 void destroy(pointer p) {
/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/compiler/dex/quick/
H A Dmir_to_lir.h275 * an aliased group is used. In our case, it would be d2's. The master_storage pointer
594 uint32_t WrapPointer(const T* pointer) { argument
596 pointer_storage_.push_back(pointer);
1226 * @brief Portable way of getting a special register for storing a pointer.
1851 // a PC of an instruction (or another PC-relative address such as a pointer to

Completed in 345 milliseconds