Searched refs:back_ (Results 1 – 8 of 8) 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/v8/src/heap/ |
D | list.h | 19 List() : front_(nullptr), back_(nullptr) {} in List() 21 back_(std::exchange(other.back_, nullptr)) {} in List() 24 back_ = std::exchange(other.back_, nullptr); 30 other->back_ = back_; in ShallowCopyTo() 36 if (back_) { in PushBack() 38 InsertAfter(element, back_); in PushBack() 48 DCHECK(back_); in PushFront() 57 if (back_ == element) { in Remove() 58 back_ = element->list_node().prev(); in Remove() 80 bool Empty() const { return !front_ && !back_; } in Empty() [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/libgav1/libgav1/src/utils/ |
D | unbounded_queue.h | 54 back_(other.back_) { in UnboundedQueue() 58 other.back_ = 0; in UnboundedQueue() 66 back_ = other.back_; 70 other.back_ = 0; 102 if (back_ == kBlockCapacity) { in GrowIfNeeded() 111 back_ = 0; in GrowIfNeeded() 120 assert(back_ < kBlockCapacity); in Push() 122 new (&elements[back_++]) T(value); in Push() 127 assert(back_ < kBlockCapacity); in Push() 129 new (&elements[back_++]) T(std::move(value)); in Push() [all …]
|
/external/libgav1/libgav1/src/ |
D | residual_buffer_pool.h | 56 assert(back_ < max_size_); in Push() 57 non_zero_coeff_count_[back_] = non_zero_coeff_count; in Push() 58 tx_type_[back_++] = tx_type; in Push() 63 assert(front_ != back_); in NonZeroCoeffCount() 69 assert(front_ != back_); in Type() 76 assert(front_ != back_); in Pop() 83 back_ = 0; in Reset() 87 int Size() const { return back_ - front_; } in Size() 94 int back_ = 0; variable
|
/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 | 35163 vk::StencilOpState back_ = vk::StencilOpState(), in PipelineDepthStencilStateCreateInfo() 35173 , back( back_ ) in PipelineDepthStencilStateCreateInfo() 35215 vk::StencilOpState back_ = vk::StencilOpState(), in PipelineDepthStencilStateCreateInfo() 35218 …le_, depthCompareOp_, depthBoundsTestEnable_, stencilTestEnable_, front_, back_, minDepthBounds_, … in PipelineDepthStencilStateCreateInfo() 35279 PipelineDepthStencilStateCreateInfo & setBack( vk::StencilOpState back_ ) in setBack() 35281 back = back_; in setBack()
|
/external/angle/third_party/vulkan-headers/src/include/vulkan/ |
D | vulkan.hpp | 38766 … VULKAN_HPP_NAMESPACE::StencilOpState back_ = {}, 38776 , back( back_ ) 38846 …PipelineDepthStencilStateCreateInfo & setBack( VULKAN_HPP_NAMESPACE::StencilOpState back_ ) VULKAN… in setBack() 38848 back = back_; in setBack()
|