Home
last modified time | relevance | path

Searched refs:queue_ (Results 1 – 1 of 1) sorted by relevance

/freebsd-12.1/sys/contrib/zstd/contrib/pzstd/utils/
H A DWorkQueue.h33 std::queue<T> queue_; variable
42 return queue_.size() >= maxSize_; in full()
72 queue_.push(std::move(item)); in push()
93 if (queue_.empty()) { in pop()
98 queue_.pop(); in pop()
143 WorkQueue<Buffer> queue_; variable
151 queue_.push(std::move(buffer)); in push()
155 bool result = queue_.pop(buffer); in pop()
163 queue_.setMaxSize(maxSize); in setMaxSize()
167 queue_.finish(); in finish()
[all …]