Home
last modified time | relevance | path

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

/external/eigen/unsupported/Eigen/CXX11/src/ThreadPool/
DRunQueue.h39 class RunQueue {
41 RunQueue() : front_(0), back_(0) { in RunQueue() function
50 ~RunQueue() { eigen_assert(Size() == 0); } in ~RunQueue()
204 RunQueue(const RunQueue&) = delete;
205 void operator=(const RunQueue&) = delete;
DNonBlockingThreadPool.h20 typedef RunQueue<Task, 1024> Queue;
/external/eigen/unsupported/test/
Dcxx11_runqueue.cpp30 RunQueue<int, 4> q; in test_basic_runqueue()
122 RunQueue<int, 4> q; in test_empty_runqueue()
163 RunQueue<int, 8> q; in test_stress_runqueue()
/external/eigen/unsupported/Eigen/CXX11/
DThreadPool54 #include "src/ThreadPool/RunQueue.h"