/hardware/qcom/media/mm-video-legacy/vidc/vdec/inc/ |
queue.h | 31 typedef struct Queue Queue; 33 Queue *alloc_queue(); 34 void free_queue(Queue *q); 35 void free_queue_and_qelement(Queue *q); 36 int push(Queue *q, void * element); 37 void *pop(Queue *q);
|
/hardware/qcom/media/mm-video-v4l2/vidc/vdec/inc/ |
queue.h | 31 typedef struct Queue Queue; 33 Queue *alloc_queue(); 34 void free_queue(Queue *q); 35 void free_queue_and_qelement(Queue *q); 36 int push(Queue *q, void * element); 37 void *pop(Queue *q);
|
/external/dropbear/ |
queue.h | 35 struct Queue { 43 void initqueue(struct Queue* queue); 44 int isempty(struct Queue* queue); 45 void* dequeue(struct Queue* queue); 46 void *examine(struct Queue* queue); 47 void enqueue(struct Queue* queue, void* item) [all...] |
queue.c | 27 #include "queue.h" 29 void initqueue(struct Queue* queue) { 31 queue->head = NULL; 32 queue->tail = NULL; 33 queue->count = 0; 36 int isempty(struct Queue* queue) { 38 return (queue->head == NULL); 41 void* dequeue(struct Queue* queue) [all...] |
/external/guava/guava-testlib/src/com/google/common/collect/testing/ |
TestQueueGenerator.java | 19 import java.util.Queue; 30 Queue<E> create(Object... elements);
|
/external/guava/guava-testlib/src/com/google/common/collect/testing/testers/ |
AbstractQueueTester.java | 21 import java.util.Queue; 24 * Base class for queue collection tests. 31 protected final Queue<E> getQueue() { 32 return (Queue<E>) collection;
|
/external/chromium_org/media/base/ |
serial_runner.h | 8 #include <queue> 31 // Serial queue of bound functions to run. 32 class MEDIA_EXPORT Queue { 34 Queue(); 35 ~Queue(); 46 std::queue<BoundPipelineStatusCB> bound_fns_; 64 const Queue& bound_fns, const PipelineStatusCB& done_cb); 69 SerialRunner(const Queue& bound_fns, const PipelineStatusCB& done_cb); 76 Queue bound_fns_;
|
decoder_buffer_queue.h | 18 // Maintains a queue of DecoderBuffers in increasing timestamp order. 21 // queue i.e., the queue must have at least 2 in-order buffers to calculate 30 // Push |buffer| to the end of the queue. If |buffer| is queued out of order 36 // Pops a DecoderBuffer from the front of the queue. 38 // It is invalid to call Pop() on an empty queue. 44 // Returns true if this queue is empty. 47 // Returns the duration of encoded data stored in this queue as measured by 51 // Returns zero if the queue is empty. 55 typedef std::deque<scoped_refptr<DecoderBuffer> > Queue; [all...] |
serial_runner.cc | 33 SerialRunner::Queue::Queue() {} 34 SerialRunner::Queue::~Queue() {} 36 void SerialRunner::Queue::Push( 41 void SerialRunner::Queue::Push( 46 SerialRunner::BoundPipelineStatusCB SerialRunner::Queue::Pop() { 52 bool SerialRunner::Queue::empty() { 57 const Queue& bound_fns, const PipelineStatusCB& done_cb) 76 const Queue& bound_fns, const PipelineStatusCB& done_cb) [all...] |
/external/chromium/testing/gtest/samples/ |
sample3-inl.h | 40 // Queue is a simple queue implemented as a singled-linked list. 44 class Queue; 46 // QueueNode is a node in a Queue, which consists of an element of 50 friend class Queue<E>; 56 // Gets the next node in the queue. 74 class Queue { 77 // Creates an empty queue. 78 Queue() : head_(NULL), last_(NULL), size_(0) {} 80 // D'tor. Clears the queue [all...] |
sample3_unittest.cc | 95 // A helper function for testing Queue::Map(). 96 void MapTester(const Queue<int> * q) { 97 // Creates a new queue, where each element is twice as big as the 99 const Queue<int> * const new_q = q->Map(Double); 101 // Verifies that the new queue has the same size as q. 114 Queue<int> q0_; 115 Queue<int> q1_; 116 Queue<int> q2_; 146 // Tests the Queue::Map() function.
|
/external/gtest/samples/ |
sample3-inl.h | 40 // Queue is a simple queue implemented as a singled-linked list. 44 class Queue; 46 // QueueNode is a node in a Queue, which consists of an element of 50 friend class Queue<E>; 56 // Gets the next node in the queue. 74 class Queue { 77 // Creates an empty queue. 78 Queue() : head_(NULL), last_(NULL), size_(0) {} 80 // D'tor. Clears the queue [all...] |
sample3_unittest.cc | 95 // A helper function for testing Queue::Map(). 96 void MapTester(const Queue<int> * q) { 97 // Creates a new queue, where each element is twice as big as the 99 const Queue<int> * const new_q = q->Map(Double); 101 // Verifies that the new queue has the same size as q. 114 Queue<int> q0_; 115 Queue<int> q1_; 116 Queue<int> q2_; 146 // Tests the Queue::Map() function.
|
/external/protobuf/gtest/samples/ |
sample3-inl.h | 40 // Queue is a simple queue implemented as a singled-linked list. 44 class Queue; 46 // QueueNode is a node in a Queue, which consists of an element of 50 friend class Queue<E>; 56 // Gets the next node in the queue. 74 class Queue { 77 // Creates an empty queue. 78 Queue() : head_(NULL), last_(NULL), size_(0) {} 80 // D'tor. Clears the queue [all...] |
/hardware/qcom/media/mm-video-legacy/vidc/vdec/src/ |
queue.c | 29 Queue with Linked list 32 #include "queue.h" 43 struct Queue 50 Queue *alloc_queue() 52 Queue *q = (Queue *) malloc(sizeof(Queue)); 61 void free_queue(Queue *q) 69 void free_queue_and_qelement(Queue *q) 79 int push(Queue *q, void * element [all...] |
/hardware/qcom/media/mm-video-v4l2/vidc/vdec/src/ |
queue.c | 29 Queue with Linked list 32 #include "queue.h" 42 struct Queue { 48 Queue *alloc_queue() 50 Queue *q = (Queue *) malloc(sizeof(Queue)); 60 void free_queue(Queue *q) 67 void free_queue_and_qelement(Queue *q) 77 int push(Queue *q, void * element [all...] |
/packages/apps/Nfc/nci/jni/ |
DataQueue.h | 18 * Store data bytes in a variable-size queue. 59 ** Description: Append data to the queue. 73 ** Description: Retrieve and remove data from the front of the queue. 88 ** Description: Whether the queue is empty. 101 typedef std::list<tHeader*> Queue; 103 Queue mQueue;
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/dummy/ |
connection.py | 37 from Queue import Queue 46 self._backlog_queue = Queue(backlog) 58 _in, _out = Queue(), Queue() 64 a, b = Queue(), Queue()
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/dummy/ |
connection.py | 37 from Queue import Queue 46 self._backlog_queue = Queue(backlog) 58 _in, _out = Queue(), Queue() 64 a, b = Queue(), Queue()
|
/external/chromium_org/testing/gtest/samples/ |
sample3-inl.h | 40 // Queue is a simple queue implemented as a singled-linked list. 44 class Queue; 46 // QueueNode is a node in a Queue, which consists of an element of 50 friend class Queue<E>; 56 // Gets the next node in the queue. 74 class Queue { 76 // Creates an empty queue. 77 Queue() : head_(NULL), last_(NULL), size_(0) {} 79 // D'tor. Clears the queue [all...] |
sample3_unittest.cc | 95 // A helper function for testing Queue::Map(). 96 void MapTester(const Queue<int> * q) { 97 // Creates a new queue, where each element is twice as big as the 99 const Queue<int> * const new_q = q->Map(Double); 101 // Verifies that the new queue has the same size as q. 114 Queue<int> q0_; 115 Queue<int> q1_; 116 Queue<int> q2_; 146 // Tests the Queue::Map() function.
|
/ndk/sources/third_party/googletest/googletest/samples/ |
sample3-inl.h | 40 // Queue is a simple queue implemented as a singled-linked list. 44 class Queue; 46 // QueueNode is a node in a Queue, which consists of an element of 50 friend class Queue<E>; 56 // Gets the next node in the queue. 74 class Queue { 76 // Creates an empty queue. 77 Queue() : head_(NULL), last_(NULL), size_(0) {} 79 // D'tor. Clears the queue [all...] |
/libcore/luni/src/main/java/java/util/ |
Queue.java | 21 * specifically for use with capacity-restricted <tt>Queue</tt> 54 * Whatever the ordering used, the <em>head</em> of the queue is that 56 * {@link #poll()}. In a FIFO queue, all new elements are inserted at 57 * the <em> tail</em> of the queue. Other kinds of queues may use 58 * different placement rules. Every <tt>Queue</tt> implementation 70 * return the head of the queue. 71 * Exactly which element is removed from the queue is a 72 * function of the queue's ordering policy, which differs from 75 * queue is empty: the <tt>remove()</tt> method throws an exception, 79 * not remove, the head of the queue [all...] |
/external/openfst/src/include/fst/script/ |
shortest-path.h | 71 typedef AutoQueue<StateId> Queue; 72 Queue *queue = QueueConstructor<Queue, Arc, local 74 fst::ShortestPathOptions<Arc, Queue, ArcFilter> spopts( 75 queue, ArcFilter(), opts.nshortest, opts.unique, 79 delete queue; 83 typedef FifoQueue<StateId> Queue; 84 Queue *queue = QueueConstructor<Queue, Arc local 96 Queue *queue = QueueConstructor<Queue, Arc, local 108 Queue *queue = QueueConstructor<Queue, Arc, local 120 Queue *queue = QueueConstructor<Queue, Arc, local 132 Queue *queue = QueueConstructor<Queue, Arc, local [all...] |
/external/llvm/lib/CodeGen/ |
LatencyPriorityQueue.cpp | 1 //===---- LatencyPriorityQueue.cpp - A latency-oriented priority queue ----===// 83 Queue.push_back(SU); 111 // Since it is available, it must be in the priority queue. First remove it. 114 // Reinsert the node into the priority queue, which recomputes its 121 std::vector<SUnit *>::iterator Best = Queue.begin(); 122 for (std::vector<SUnit *>::iterator I = llvm::next(Queue.begin()), 123 E = Queue.end(); I != E; ++I) 127 if (Best != prior(Queue.end())) 128 std::swap(*Best, Queue.back()); 129 Queue.pop_back() [all...] |