Searched refs:back_ (Results 1 – 5 of 5) sorted by relevance
/external/v8/src/zone/ |
D | zone-chunk-list.h | 59 back_ = front_; in zone_() 141 Chunk* back_ = nullptr; variable 221 if (list->back_ == nullptr) return End(list); in Begin() 222 if (list->back_->position_ == 0) { in Begin() 223 if (list->back_->previous_ != nullptr) { in Begin() 224 return ZoneChunkListIterator(list->back_->previous_, in Begin() 225 list->back_->previous_->capacity_ - 1); in Begin() 230 return ZoneChunkListIterator(list->back_, list->back_->position_ - 1); in Begin() 238 if (list->back_ == nullptr) return Begin(list); in End() 240 DCHECK_LE(list->back_->position_, list->back_->capacity_); in End() [all …]
|
/external/parameter-framework/asio-1.10.6/include/asio/detail/ |
D | op_queue.hpp | 55 return q.back_; in back() 67 back_(0) in op_queue() 95 back_ = 0; in pop() 104 if (back_) in push() 106 op_queue_access::next(back_, h); in push() 107 back_ = h; in push() 111 front_ = back_ = h; in push() 122 if (back_) in push() 123 op_queue_access::next(back_, other_front); in push() 126 back_ = op_queue_access::back(q); in push() [all …]
|
/external/v8/src/base/ |
D | list.h | 18 List() : front_(nullptr), back_(nullptr) {} in List() 23 if (back_) { in PushBack() 25 InsertAfter(element, back_); in PushBack() 35 DCHECK(back_); in PushFront() 44 if (back_ == element) { in Remove() 45 back_ = element->list_node().prev(); in Remove() 67 bool Empty() { return !front_ && !back_; } in Empty() 70 T* back() { return back_; } in back() 74 DCHECK(!back_); in AddFirstElement() 81 back_ = element; in AddFirstElement() [all …]
|
/external/eigen/unsupported/Eigen/CXX11/src/ThreadPool/ |
D | RunQueue.h | 41 RunQueue() : front_(0), back_(0) { in RunQueue() 87 unsigned back = back_.load(std::memory_order_relaxed); in PushBack() 94 back_.store(back, std::memory_order_relaxed); in PushBack() 106 unsigned back = back_.load(std::memory_order_relaxed); in PopBack() 114 back_.store(back + 1 + (kSize << 1), std::memory_order_relaxed); in PopBack() 124 unsigned back = back_.load(std::memory_order_relaxed); in PopBackHalf() 149 back_.store(start + 1 + (kSize << 1), std::memory_order_relaxed); in PopBackHalf() 161 unsigned back = back_.load(std::memory_order_acquire); in Size() 201 std::atomic<unsigned> back_; variable
|
/external/vulkan-headers/include/vulkan/ |
D | vulkan.hpp | 29687 StencilOpState back_ = StencilOpState(), in PipelineDepthStencilStateCreateInfo() 29697 , back( back_ ) in PipelineDepthStencilStateCreateInfo() 29761 PipelineDepthStencilStateCreateInfo & setBack( StencilOpState back_ ) in setBack() 29763 back = back_; in setBack()
|