/external/chromium_org/base/memory/ |
D | manual_constructor.h | 47 return space_.template data_as<Type>(); in get() 50 return space_.template data_as<Type>(); in get() 61 new(space_.void_data()) Type; in Init() 66 new(space_.void_data()) Type(p1); in Init() 71 new(space_.void_data()) Type(p1, p2); in Init() 76 new(space_.void_data()) Type(p1, p2, p3); in Init() 81 new(space_.void_data()) Type(p1, p2, p3, p4); in Init() 87 new(space_.void_data()) Type(p1, p2, p3, p4, p5); in Init() 94 new(space_.void_data()) Type(p1, p2, p3, p4, p5, p6); in Init() 101 new(space_.void_data()) Type(p1, p2, p3, p4, p5, p6, p7); in Init() [all …]
|
/external/v8/src/ |
D | string-stream.h | 51 ~HeapStringAllocator() { DeleteArray(space_); } in ~HeapStringAllocator() 55 char* space_; 65 char* allocate(unsigned bytes) { return space_; } in allocate() 69 char* space_; variable
|
D | string-stream.cc | 41 space_ = NewArray<char>(bytes); in allocate() 42 return space_; in allocate() 49 space_ = memory; in NoAllocationStringAllocator() 567 return space_; in grow() 571 return space_; in grow() 573 memcpy(new_space, space_, *bytes); in grow() 575 DeleteArray(space_); in grow() 576 space_ = new_space; in grow() 585 return space_; in grow()
|
D | spaces-inl.h | 54 : space_(space), in PageIterator() 60 return next_page_ != &space_->anchor_; in has_next() 111 if (cur_addr_ == space_->top() && cur_addr_ != space_->limit()) { in FromCurrentPage() 112 cur_addr_ = space_->limit(); in FromCurrentPage()
|
D | liveobjectlist.cc | 271 AllocationSpace space_; member in v8::internal::LolFilter 279 space_(kInvalidSpace), in LolFilter() 312 space_ = FindSpaceFor(space_str); in InitSpaceFilter() 313 if (space_ != kInvalidSpace) { in InitSpaceFilter() 338 if ((space_ != kInvalidSpace) && !InSpace(space_, obj)) { in MatchesSlow()
|
D | spaces.cc | 93 space_ = space; in Initialize() 108 cur_page = space_->anchor(); in AdvanceToNextPage() 114 if (cur_page == space_->anchor()) return false; in AdvanceToNextPage()
|
D | spaces.h | 1141 PagedSpace* space_; variable 1171 PagedSpace* space_;
|
/external/chromium_org/v8/src/ |
D | string-stream.h | 51 ~HeapStringAllocator() { DeleteArray(space_); } in ~HeapStringAllocator() 55 char* space_; 65 char* allocate(unsigned bytes) { return space_; } in allocate() 69 char* space_; variable
|
D | string-stream.cc | 39 space_ = NewArray<char>(bytes); in allocate() 40 return space_; in allocate() 47 space_ = memory; in NoAllocationStringAllocator() 567 return space_; in grow() 571 return space_; in grow() 573 OS::MemCopy(new_space, space_, *bytes); in grow() 575 DeleteArray(space_); in grow() 576 space_ = new_space; in grow() 585 return space_; in grow()
|
D | spaces-inl.h | 55 : space_(space), in PageIterator() 61 return next_page_ != &space_->anchor_; in has_next() 112 if (cur_addr_ == space_->top() && cur_addr_ != space_->limit()) { in FromCurrentPage() 113 cur_addr_ = space_->limit(); in FromCurrentPage()
|
D | spaces.h | 1280 PagedSpace* space_; variable 1310 PagedSpace* space_;
|
D | spaces.cc | 94 space_ = space; in Initialize() 109 cur_page = space_->anchor(); in AdvanceToNextPage() 115 if (cur_page == space_->anchor()) return false; in AdvanceToNextPage()
|
/external/ceres-solver/include/ceres/internal/ |
D | manual_constructor.h | 101 return reinterpret_cast<Type*>(space_); 104 return reinterpret_cast<const Type*>(space_); 115 return reinterpret_cast<void*>(space_); 200 CERES_ALIGNED_CHAR_ARRAY(Type, 1) space_;
|
/external/chromium_org/third_party/leveldatabase/src/db/ |
D | dbformat.cc | 125 if (needed <= sizeof(space_)) { in LookupKey() 126 dst = space_; in LookupKey()
|
D | dbformat.h | 217 char space_[200]; // Avoid allocation for short keys variable 225 if (start_ != space_) delete[] start_; in ~LookupKey()
|