HomeSort by relevance Sort by last modified time
    Searched defs:queue (Results 476 - 500 of 1176) sorted by null

<<11121314151617181920>>

  /external/tensorflow/tensorflow/core/grappler/optimizers/
constant_folding.cc 1148 std::deque<NodeDef*> queue; local
    [all...]
layout_optimizer.cc 1161 std::deque<NodeDef*> queue; local
    [all...]
  /external/tensorflow/tensorflow/core/kernels/
remote_fused_graph_execute_utils.cc 19 #include <queue>
376 std::priority_queue<std::tuple<int, const TensorShapeType*>> queue; local
379 queue.emplace(std::make_tuple(it->second.first, &it->second.second));
381 int last_port = queue.size();
384 while (!queue.empty()) {
385 const int port = std::get<0>(queue.top());
386 const TensorShapeType* tst = std::get<1>(queue.top());
392 queue.pop();
739 std::deque<const Node*> queue; local
740 queue.emplace_back(FindNodeByName(*remaining_nodes.begin(), graph))
893 std::deque<const Node*> queue; local
    [all...]
  /external/v8/src/compiler/
scheduler.cc 233 Queue(scheduler_->graph_->end());
240 Queue(node->InputAt(i));
254 Queue(exit);
275 Queue(node->InputAt(i));
294 void Queue(Node* node) {
569 ZoneQueue<Node*> queue_; // Queue used for breadth-first traversal.
1343 ZoneQueue<Node*>* queue = &(scheduler_->schedule_queue_); local
    [all...]
  /frameworks/base/services/core/java/com/android/server/am/
BroadcastQueue.java 76 * Recognizable moniker for this queue
81 * Timeout period for this queue's broadcasts
256 private BroadcastRecord replaceBroadcastLocked(ArrayList<BroadcastRecord> queue,
259 for (int i = queue.size() - 1; i > 0; i--) {
260 final BroadcastRecord old = queue.get(i);
266 queue.set(i, r);
438 if (waitForServices && r.curComponent != null && r.queue.mDelayBehindServices
439 && r.queue.mOrderedBroadcasts.size() > 0
440 && r.queue.mOrderedBroadcasts.get(0) == r) {
453 // but are on a queue that would like to wait for services to finish before movin
    [all...]
  /frameworks/native/cmds/dumpstate/
dumpstate.cpp 513 // read merges requests number of read I/Os merged with in-queue I/O
521 // write merges requests number of write I/Os merged with in-queue I/O
569 // requests that are in the queue but not yet issued to the device driver.
656 unsigned queue = (fields[__STAT_IN_QUEUE] local
661 printf("%-30s: perf(ios) rd: %luKB/s(%lu/s) q: %u\n", path, read_perf, read_ios, queue);
664 read_ios, write_perf, write_ios, queue);
    [all...]
  /frameworks/native/vulkan/nulldrv/
null_driver.cpp 102 VkQueue_T queue; member in struct:VkDevice_T
569 // case since we only expose one queue family.
676 device->queue.dispatch.magic = HWVULKAN_DISPATCH_MAGIC;
698 void GetDeviceQueue(VkDevice device, uint32_t, uint32_t, VkQueue* queue) {
699 *queue = &device->queue;
    [all...]
  /prebuilts/ndk/r16/sources/third_party/vulkan/src/layers/
object_tracker.cpp 54 // Add new queue to head of global queue list
55 static void AddQueueInfo(VkDevice device, uint32_t queue_node_index, VkQueue queue) {
57 auto queueItem = device_data->queue_info_map.find(queue);
62 p_queue_info->queue = queue;
64 device_data->queue_info_map[queue] = p_queue_info;
67 reinterpret_cast<uint64_t>(queue), __LINE__, OBJTRACK_INTERNAL_ERROR, LayerName,
68 "ERROR: VK_ERROR_OUT_OF_HOST_MEMORY -- could not allocate memory for Queue Information");
82 // Destroy the items in the queue ma
83 auto queue = device_data->object_map[VK_DEBUG_REPORT_OBJECT_TYPE_QUEUE_EXT].begin(); local
    [all...]
  /prebuilts/tools/common/m2/repository/org/pcollections/pcollections/2.1.2/
pcollections-2.1.2.jar 
  /packages/apps/LegacyCamera/src/com/android/camera/
Camera.java 407 MessageQueue queue = Looper.myQueue(); local
408 queue.addIdleHandler(new MessageQueue.IdleHandler() {
    [all...]
  /bionic/libc/kernel/uapi/sound/
asequencer.h 150 unsigned char queue; member in struct:snd_seq_ev_queue_control
170 unsigned char queue; member in struct:snd_seq_event
180 struct snd_seq_ev_queue_control queue; member in union:snd_seq_event::__anon1372
254 unsigned char queue; member in struct:snd_seq_remove_events
306 int queue; member in struct:snd_seq_queue_info
314 int queue; member in struct:snd_seq_queue_status
323 int queue; member in struct:snd_seq_queue_tempo
334 int queue; member in struct:snd_seq_queue_timer
345 int queue; member in struct:snd_seq_queue_client
358 unsigned char queue; member in struct:snd_seq_port_subscribe
370 unsigned char queue; member in struct:snd_seq_query_subs
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/usb/device/
UsbDeviceTestActivity.java 461 receiveZero.queue(zeroBuffer, 1);
469 * Send a USB request using the {@link UsbRequest#queue legacy path} and receive it back.
533 boolean wasQueued = receive.queue(bufferReceivedSliced, size);
535 wasQueued = sent.queue(bufferSentSliced, size);
598 receiveZero.queue(zeroBuffer);
672 boolean wasQueued = receive.queue(bufferReceivedSliced);
674 wasQueued = sent.queue(bufferSentSliced);
711 * Send a USB request using the {@link UsbRequest#queue legacy path} and receive it back.
765 boolean wasQueued = receive.queue(bufferReceived, totalSize);
767 wasQueued = sent.queue(bufferSent, totalSize)
    [all...]
  /device/linaro/bootloader/OpenPlatformPkg/Chips/Hisilicon/Drivers/SasV1Dxe/
SasV1Dxe.c 145 // Delivery queue header
280 int queue; member in struct:hisi_hba
319 int queue = hba->queue; local
329 w = READ_REG32(base, DLVRY_Q_0_WR_PTR + (queue * 0x14));
330 r = READ_REG32(base, DLVRY_Q_0_RD_PTR + (queue * 0x14));
331 slot_idx = queue * QUEUE_SLOTS + w;
334 queue = (queue + 1) % QUEUE_CNT;
335 if (queue == hba->queue) {
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/image/
vktImageCompressionTranscodingSupport.cpp 555 const VkQueue queue = m_context.getUniversalQueue(); local
614 submitCommandsAndWait(vk, device, queue, cmdBuffer);
624 const VkQueue queue = m_context.getUniversalQueue(); local
719 submitCommandsAndWait(vk, device, queue, cmdBuffer);
728 const VkQueue queue = m_context.getUniversalQueue(); local
772 submitCommandsAndWait(vk, device, queue, cmdBuffer);
886 const VkQueue queue = m_context.getUniversalQueue(); local
1203 const VkQueue queue = m_context.getUniversalQueue(); local
1503 const VkQueue queue = m_context.getUniversalQueue(); local
1637 const VkQueue queue = m_context.getUniversalQueue(); local
1844 const VkQueue queue = m_context.getUniversalQueue(); local
2059 const VkQueue queue = m_context.getUniversalQueue(); local
2199 const VkQueue queue = m_context.getUniversalQueue(); local
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/pipeline/
vktPipelineMultisampleTests.cpp 2723 const VkQueue queue = m_context.getUniversalQueue(); local
2757 const VkQueue queue = m_context.getUniversalQueue(); local
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/
vktShaderExecutor.cpp 735 const VkQueue queue = m_context.getUniversalQueue(); local
1909 const VkQueue queue = m_context.getUniversalQueue(); local
2144 const VkQueue queue = m_context.getUniversalQueue(); local
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/ssbo/
vktSSBOLayoutCase.cpp 1965 const vk::VkQueue queue = m_context.getUniversalQueue(); local
    [all...]
  /external/kernel-headers/original/uapi/sound/
asequencer.h 75 #define SNDRV_SEQ_EVENT_SETPOS_TICK 33 /* set tick queue position */
76 #define SNDRV_SEQ_EVENT_SETPOS_TIME 34 /* set realtime queue position */
80 #define SNDRV_SEQ_EVENT_QUEUE_SKEW 38 /* skew queue tempo */
250 /* queue timer control */
252 unsigned char queue; /* affected queue */ member in struct:snd_seq_ev_queue_control
278 unsigned char queue; /* schedule queue */ member in struct:snd_seq_event
291 struct snd_seq_ev_queue_control queue; member in union:snd_seq_event::__anon23580
397 unsigned char queue; /* Queue for REMOVE_DEST * member in struct:snd_seq_remove_events
476 int queue; \/* queue id *\/ member in struct:snd_seq_queue_info
492 int queue; \/* queue id *\/ member in struct:snd_seq_queue_status
504 int queue; \/* sequencer queue *\/ member in struct:snd_seq_queue_tempo
520 int queue; \/* sequencer queue *\/ member in struct:snd_seq_queue_timer
533 int queue; \/* sequencer queue *\/ member in struct:snd_seq_queue_client
551 unsigned char queue; \/* input time-stamp queue (optional) *\/ member in struct:snd_seq_port_subscribe
566 unsigned char queue; \/* R\/O: result *\/ member in struct:snd_seq_query_subs
    [all...]
  /external/owasp/sanitizer/tools/findbugs/lib/
asm-analysis-3.3.jar 
  /frameworks/support/media/src/main/java/android/support/v4/media/session/
MediaControllerCompat.java 327 * Gets the current play queue for this session if one is set. If you only
330 * @return The current play queue or null.
337 * Adds a queue item from the given {@code description} at the end of the play queue
353 * Adds a queue item from the given {@code description} at the specified position
354 * in the play queue of this session. Shifts the queue item currently at that position
355 * (if any) and any subsequent queue items to the right (adds one to their indices).
374 * with the given {@link MediaDescriptionCompat description} in the play queue of the
390 * Removes an queue item at the specified position in the play queu
403 List<QueueItem> queue = getQueue(); local
    [all...]
  /hardware/qcom/msm8996/kernel-headers/sound/
asequencer.h 181 unsigned char queue; member in struct:snd_seq_ev_queue_control
206 unsigned char queue; member in struct:snd_seq_event
219 struct snd_seq_ev_queue_control queue; member in union:snd_seq_event::__anon51541
309 unsigned char queue; member in struct:snd_seq_remove_events
374 int queue; member in struct:snd_seq_queue_info
384 int queue; member in struct:snd_seq_queue_status
395 int queue; member in struct:snd_seq_queue_tempo
409 int queue; member in struct:snd_seq_queue_timer
422 int queue; member in struct:snd_seq_queue_client
439 unsigned char queue; member in struct:snd_seq_port_subscribe
454 unsigned char queue; member in struct:snd_seq_query_subs
    [all...]
  /hardware/qcom/msm8996/original-kernel-headers/sound/
asequencer.h 73 #define SNDRV_SEQ_EVENT_SETPOS_TICK 33 /* set tick queue position */
74 #define SNDRV_SEQ_EVENT_SETPOS_TIME 34 /* set realtime queue position */
78 #define SNDRV_SEQ_EVENT_QUEUE_SKEW 38 /* skew queue tempo */
248 /* queue timer control */
250 unsigned char queue; /* affected queue */ member in struct:snd_seq_ev_queue_control
276 unsigned char queue; /* schedule queue */ member in struct:snd_seq_event
289 struct snd_seq_ev_queue_control queue; member in union:snd_seq_event::__anon51692
393 unsigned char queue; /* Queue for REMOVE_DEST * member in struct:snd_seq_remove_events
472 int queue; \/* queue id *\/ member in struct:snd_seq_queue_info
488 int queue; \/* queue id *\/ member in struct:snd_seq_queue_status
500 int queue; \/* sequencer queue *\/ member in struct:snd_seq_queue_tempo
516 int queue; \/* sequencer queue *\/ member in struct:snd_seq_queue_timer
529 int queue; \/* sequencer queue *\/ member in struct:snd_seq_queue_client
547 unsigned char queue; \/* input time-stamp queue (optional) *\/ member in struct:snd_seq_port_subscribe
562 unsigned char queue; \/* R\/O: result *\/ member in struct:snd_seq_query_subs
    [all...]
  /packages/apps/Bluetooth/src/com/android/bluetooth/gatt/
ScanManager.java 194 * Returns the regular scan queue.
201 * Returns batch scan queue.
577 Log.d(TAG, "configureRegularScanParams() - queue=" + mRegularScanClients.size());
610 Log.d(TAG, "configureRegularScanParams() - queue emtpy, scan stopped");
949 ScanFilterQueue queue = new ScanFilterQueue(); local
    [all...]
  /packages/apps/Settings/src/com/android/settings/
RadioInfo.java     [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/sound/
asequencer.h 73 #define SNDRV_SEQ_EVENT_SETPOS_TICK 33 /* set tick queue position */
74 #define SNDRV_SEQ_EVENT_SETPOS_TIME 34 /* set realtime queue position */
78 #define SNDRV_SEQ_EVENT_QUEUE_SKEW 38 /* skew queue tempo */
248 /* queue timer control */
250 unsigned char queue; /* affected queue */ member in struct:snd_seq_ev_queue_control
276 unsigned char queue; /* schedule queue */ member in struct:snd_seq_event
289 struct snd_seq_ev_queue_control queue; member in union:snd_seq_event::__anon63063
393 unsigned char queue; /* Queue for REMOVE_DEST * member in struct:snd_seq_remove_events
472 int queue; \/* queue id *\/ member in struct:snd_seq_queue_info
488 int queue; \/* queue id *\/ member in struct:snd_seq_queue_status
500 int queue; \/* sequencer queue *\/ member in struct:snd_seq_queue_tempo
516 int queue; \/* sequencer queue *\/ member in struct:snd_seq_queue_timer
529 int queue; \/* sequencer queue *\/ member in struct:snd_seq_queue_client
547 unsigned char queue; \/* input time-stamp queue (optional) *\/ member in struct:snd_seq_port_subscribe
562 unsigned char queue; \/* R\/O: result *\/ member in struct:snd_seq_query_subs
    [all...]

Completed in 1662 milliseconds

<<11121314151617181920>>