HomeSort by relevance Sort by last modified time
    Searched defs:back_ (Results 1 - 3 of 3) sorted by null

  /external/parameter-framework/asio-1.10.6/include/asio/detail/
op_queue.hpp 55 return q.back_;
67 back_(0)
95 back_ = 0;
104 if (back_)
106 op_queue_access::next(back_, h);
107 back_ = h;
111 front_ = back_ = h;
122 if (back_)
123 op_queue_access::next(back_, other_front);
126 back_ = op_queue_access::back(q)
145 Operation* back_; member in class:asio::detail::op_queue
    [all...]
  /external/eigen/unsupported/Eigen/CXX11/src/ThreadPool/
RunQueue.h 41 RunQueue() : front_(0), back_(0) {
87 unsigned back = back_.load(std::memory_order_relaxed);
94 back_.store(back, std::memory_order_relaxed);
106 unsigned back = back_.load(std::memory_order_relaxed);
114 back_.store(back + 1 + (kSize << 1), std::memory_order_relaxed);
124 unsigned back = back_.load(std::memory_order_relaxed);
149 back_.store(start + 1 + (kSize << 1), std::memory_order_relaxed);
161 unsigned back = back_.load(std::memory_order_acquire);
193 // Low log(kSize) + 1 bits in front_ and back_ contain rolling index of
198 // consistent snapshot of front_/back_ for Size operation using th
201 std::atomic<unsigned> back_; member in class:Eigen::RunQueue
    [all...]
  /external/v8/src/zone/
zone-chunk-list.h 57 back_ = front_;
133 Chunk* back_ = nullptr; member in class:v8::internal::ZoneChunkList::StartMode
215 if (list->back_ == nullptr) return Begin(list);
217 DCHECK_LE(list->back_->position_, list->back_->capacity_);
218 if (list->back_->position_ == list->back_->capacity_) {
222 return ForwardZoneChunkListIterator<T>(list->back_, list->back_->position_);
263 if (list->back_ == nullptr) return End(list)
    [all...]

Completed in 87 milliseconds