Searched defs:queue (Results 76 - 100 of 134) sorted by relevance

123456

/external/jmonkeyengine/engine/src/blender/com/jme3/asset/
H A DBlenderKey.java700 protected void breadthFirstTraversal(SceneGraphVisitor visitor, Queue<Spatial> queue) {} argument
/external/linux-tools-perf/util/
H A Dannotate.c115 struct objdump_line *queue)
154 if (queue != NULL) {
155 list_for_each_entry_from(queue, &notes->src->source, node) {
156 if (queue == oline)
158 objdump_line__print(queue, sym, evidx, len,
185 if (queue)
512 struct objdump_line *pos, *queue = NULL; local
531 if (context && queue == NULL) {
532 queue = pos;
537 printed, max_lines, queue)) {
112 objdump_line__print(struct objdump_line *oline, struct symbol *sym, int evidx, u64 len, int min_pcnt, int printed, int max_lines, struct objdump_line *queue) argument
[all...]
/external/openfst/src/include/fst/
H A Dqueue.h0 // queue.h
44 // // Returns the head of the queue
48 // // Removes the head of the queue
52 // // Does the queue contain no elements?
54 // // Remove all states from queue
58 // State queue types.
60 TRIVIAL_QUEUE = 0, // Single state queue
61 FIFO_QUEUE = 1, // First-in, first-out queue
62 LIFO_QUEUE = 2, // Last-in, first-out queue
63 SHORTEST_FIRST_QUEUE = 3, // Shortest-first queue
446 SccQueue(const vector<StateId> &scc, vector<Queue*> *queue) argument
807 PruneQueue(const vector<Weight> &distance, Q *queue, L comp, const C &class_func, Weight threshold) argument
877 NaturalPruneQueue(const vector<W> &distance, Q *queue, const C &class_func_, Weight threshold) argument
[all...]
/external/openssl/crypto/rand/
H A Drand_win.c392 GETQUEUESTATUS queue; local
396 queue = (GETQUEUESTATUS) GetProcAddress(user, "GetQueueStatus");
424 if (queue)
426 /* message queue status */
428 w = queue(QS_ALLEVENTS);
/external/openssl/ssl/
H A Dd1_pkt.c207 dtls1_buffer_record(SSL *s, record_pqueue *queue, unsigned char *priority) argument
212 /* Limit the size of the queue to prevent DOS attacks */
213 if (pqueue_size(queue->q) >= 100)
243 if (pqueue_insert(queue->q, item) == NULL)
268 dtls1_retrieve_buffered_record(SSL *s, record_pqueue *queue) argument
272 item = pqueue_pop(queue->q);
/external/qemu/hw/
H A Dps2.c81 PS2Queue queue; member in struct:__anon10987
126 PS2Queue *q = &s->queue;
162 q = &s->queue;
349 (s->common.queue.count < (PS2_QUEUE_SIZE - 16))) {
496 q = &s->queue;
506 qemu_put_be32 (f, s->queue.rptr);
507 qemu_put_be32 (f, s->queue.wptr);
508 qemu_put_be32 (f, s->queue.count);
509 qemu_put_buffer (f, s->queue.data, sizeof (s->queue
[all...]
/external/qemu/telephony/
H A Dsysdeps_posix.c41 sys_queue_reset( SysQueue queue )
43 queue->start = queue->end = 0;
47 sys_queue_add( SysQueue queue, void* item ) argument
49 assert( queue->end - queue->start < SYS_MAX_QUEUE );
50 assert( queue->start == 0 );
52 queue->pending[ queue->end++ ] = item;
57 sys_queue_remove( SysQueue queue, voi
[all...]
/external/v8/benchmarks/
H A Drichards.js51 var queue = new Packet(null, ID_WORKER, KIND_WORK);
52 queue = new Packet(queue, ID_WORKER, KIND_WORK);
53 scheduler.addWorkerTask(ID_WORKER, 1000, queue);
55 queue = new Packet(null, ID_DEVICE_A, KIND_DEVICE);
56 queue = new Packet(queue, ID_DEVICE_A, KIND_DEVICE);
57 queue = new Packet(queue, ID_DEVICE_A, KIND_DEVICE);
58 scheduler.addHandlerTask(ID_HANDLER_A, 2000, queue);
[all...]
/external/webkit/PerformanceTests/SunSpider/tests/v8-v4/
H A Dv8-richards.js46 var queue = new Packet(null, ID_WORKER, KIND_WORK);
47 queue = new Packet(queue, ID_WORKER, KIND_WORK);
48 scheduler.addWorkerTask(ID_WORKER, 1000, queue);
50 queue = new Packet(null, ID_DEVICE_A, KIND_DEVICE);
51 queue = new Packet(queue, ID_DEVICE_A, KIND_DEVICE);
52 queue = new Packet(queue, ID_DEVICE_A, KIND_DEVICE);
53 scheduler.addHandlerTask(ID_HANDLER_A, 2000, queue);
[all...]
/external/webkit/PerformanceTests/SunSpider/tests/v8-v5/
H A Dv8-richards.js46 var queue = new Packet(null, ID_WORKER, KIND_WORK);
47 queue = new Packet(queue, ID_WORKER, KIND_WORK);
48 scheduler.addWorkerTask(ID_WORKER, 1000, queue);
50 queue = new Packet(null, ID_DEVICE_A, KIND_DEVICE);
51 queue = new Packet(queue, ID_DEVICE_A, KIND_DEVICE);
52 queue = new Packet(queue, ID_DEVICE_A, KIND_DEVICE);
53 scheduler.addHandlerTask(ID_HANDLER_A, 2000, queue);
[all...]
/external/webkit/PerformanceTests/SunSpider/tests/v8-v6/
H A Dv8-richards.js46 var queue = new Packet(null, ID_WORKER, KIND_WORK);
47 queue = new Packet(queue, ID_WORKER, KIND_WORK);
48 scheduler.addWorkerTask(ID_WORKER, 1000, queue);
50 queue = new Packet(null, ID_DEVICE_A, KIND_DEVICE);
51 queue = new Packet(queue, ID_DEVICE_A, KIND_DEVICE);
52 queue = new Packet(queue, ID_DEVICE_A, KIND_DEVICE);
53 scheduler.addHandlerTask(ID_HANDLER_A, 2000, queue);
[all...]
/external/webkit/Source/WebCore/platform/network/qt/
H A DQNetworkReplyHandler.cpp202 QueueLocker(QNetworkReplyHandlerCallQueue* queue) : m_queue(queue) { m_queue->lock(); } argument
208 QNetworkReplyWrapper::QNetworkReplyWrapper(QNetworkReplyHandlerCallQueue* queue, QNetworkReply* reply, bool sniffMIMETypes, QObject* parent) argument
211 , m_queue(queue)
/external/chromium/net/socket/
H A Dclient_socket_pool_base.cc200 // InsertRequestIntoQueue inserts the request into the queue based on
772 const RequestQueue& queue = curr_group->pending_requests(); local
773 if (queue.empty())
/external/chromium/third_party/libjingle/source/talk/base/
H A Dwin32socketserver.cc723 void Win32SocketServer::SetMessageQueue(MessageQueue* queue) { argument
724 message_queue_ = queue;
780 // Dispatch all the messages that are currently in our queue. If new messages
/external/doclava/src/com/google/doclava/
H A DMethodInfo.java46 private static void addInterfaces(ArrayList<ClassInfo> ifaces, ArrayList<ClassInfo> queue) { argument
48 queue.add(i);
51 addInterfaces(i.interfaces(), queue);
66 ArrayList<ClassInfo> queue = new ArrayList<ClassInfo>();
67 addInterfaces(containingClass().interfaces(), queue);
68 for (ClassInfo iface : queue) {
79 private static void addRealInterfaces(ArrayList<ClassInfo> ifaces, ArrayList<ClassInfo> queue) { argument
81 queue.add(i);
83 queue.add(i.superclass());
87 addInterfaces(i.realInterfaces(), queue);
[all...]
/external/guava/guava-tests/test/com/google/common/collect/
H A DIterablesTest.java1200 Queue<Integer> queue = Lists.newLinkedList(asList(5, 14));
1203 Iterables.consumingIterable(queue).iterator();
1205 assertEquals(5, queue.peek().intValue());
1208 assertEquals(14, queue.peek().intValue());
1210 assertTrue(queue.isEmpty());
1214 Queue<Integer> queue =
1218 Iterables.consumingIterable(queue).iterator();
1227 private Queue<T> queue; field in class:IterablesTest.UnIterableQueue
1229 UnIterableQueue(Queue<T> queue) { argument
1230 this.queue
[all...]
H A DMapMakerInternalMapTest.java1859 public ValueReference<K, V> copyFor(ReferenceQueue<V> queue, ReferenceEntry<K, V> entry) { argument
/external/jmonkeyengine/engine/src/core/com/jme3/scene/
H A DSpatial.java46 import com.jme3.renderer.queue.RenderQueue;
47 import com.jme3.renderer.queue.RenderQueue.Bucket;
48 import com.jme3.renderer.queue.RenderQueue.ShadowMode;
1060 * @see Spatial#setShadowMode(com.jme3.renderer.queue.RenderQueue.ShadowMode)
1263 capsule.write(queueBucket, "queue", RenderQueue.Bucket.Inherit);
1280 queueBucket = ic.readEnum("queue", RenderQueue.Bucket.class,
1354 * render queue buckets.
1378 * @return The locally set queue bucket mode
1380 * @see Spatial#setQueueBucket(com.jme3.renderer.queue.RenderQueue.Bucket)
1389 * @see Spatial#setShadowMode(com.jme3.renderer.queue
1477 breadthFirstTraversal(SceneGraphVisitor visitor, Queue<Spatial> queue) argument
[all...]
/external/kernel-headers/original/linux/raid/
H A Dmd_k.h226 request_queue_t *queue; /* for plugging ... */ member in struct:mddev_s
/external/libppp/src/
H A Dipcp.c1440 struct mqueue *queue; local
1457 queue = ipcp->Queue + IPCP_QUEUES(ipcp) - 1;
1459 if (queue->top) {
1460 bp = m_dequeue(queue);
1474 } while (queue-- != ipcp->Queue);
/external/openssh/
H A Dmux.c70 #include "openbsd-compat/sys-queue.h"
1048 /* Append exit message packet to control socket output queue */
1070 /* Append exit message packet to control socket output queue */
1325 Buffer queue; local
1333 buffer_init(&queue);
1334 buffer_put_string(&queue, buffer_ptr(m), buffer_len(m));
1336 need = buffer_len(&queue);
1337 ptr = buffer_ptr(&queue);
1341 buffer_free(&queue);
1358 buffer_free(&queue);
1377 Buffer queue; local
[all...]
/external/valgrind/main/drd/tests/
H A Dtsan_thread_wrappers_pthread.h50 #include <queue>
371 /// Just a message queue.
392 // Blocks if the queue is empty.
402 // If queue is not empty,
403 // remove an element from queue, put it into *res and return true.
414 std::queue<void*> q_; // protected by mu_
426 static bool IsQueueNotEmpty(std::queue<void*> * queue) { argument
427 return !queue->empty();
/external/wpa_supplicant_8/hostapd/
H A Dconfig_file.c853 struct hostapd_tx_queue_params *queue; local
876 queue = &conf->tx_queue[num];
879 queue->aifs = atoi(val);
880 if (queue->aifs < 0 || queue->aifs > 255) {
882 queue->aifs);
886 queue->cwmin = atoi(val);
887 if (!valid_cw(queue->cwmin)) {
889 queue->cwmin);
893 queue
[all...]
/external/wpa_supplicant_8/hostapd/src/ap/
H A Dap_drv_ops.c508 int hostapd_set_tx_queue_params(struct hostapd_data *hapd, int queue, int aifs, argument
513 return hapd->driver->set_tx_queue_params(hapd->drv_priv, queue, aifs,
/external/wpa_supplicant_8/src/ap/
H A Dap_drv_ops.c508 int hostapd_set_tx_queue_params(struct hostapd_data *hapd, int queue, int aifs, argument
513 return hapd->driver->set_tx_queue_params(hapd->drv_priv, queue, aifs,

Completed in 600 milliseconds

123456