Home
last modified time | relevance | path

Searched refs:queueIndex (Results 1 – 25 of 31) sorted by relevance

12

/external/sl4a/Common/src/com/googlecode/android_scripting/facade/bluetooth/media/
DBluetoothMediaPlayback.java55 private int queueIndex; field in BluetoothMediaPlayback
62 queueIndex = 0; in BluetoothMediaPlayback()
74 queueIndex++;
77 if (queueIndex >= musicProvider.getNumberOfItemsInQueue()) {
78 queueIndex = 0;
195 Log.d(TAG + " play queIndex: " + queueIndex); in play()
197 MediaMetadata newMetaData = musicProvider.getItemToPlay(queueIndex); in play()
229 queueIndex++; in skipNext()
230 if (queueIndex >= musicProvider.getNumberOfItemsInQueue()) { in skipNext()
231 queueIndex = 0; in skipNext()
[all …]
/external/deqp/external/vulkancts/modules/vulkan/api/
DvktApiDeviceInitializationTests.cpp363 const deUint32 queueIndex = 0; in createDeviceTest() local
392 deviceDriver.getDeviceQueue(device.get(), queueFamilyIndex, queueIndex, &queue); in createDeviceTest()
409 const deUint32 queueIndex = 0; in createMultipleDevicesTest() local
451 DE_ASSERT(queueIndex < queueCount); in createMultipleDevicesTest()
452 deviceDriver.getDeviceQueue(devices[deviceNdx], queueFamilyIndex, queueIndex, &queue); in createMultipleDevicesTest()
610 for (deUint32 queueIndex = 0; queueIndex < queueCount; queueIndex++) in createDeviceWithVariousQueueCountsTest() local
615 deviceDriver.getDeviceQueue(device.get(), queueFamilyIndex, queueIndex, &queue); in createDeviceWithVariousQueueCountsTest()
623 << ", queueIndex = " << queueIndex in createDeviceWithVariousQueueCountsTest()
655 const deUint32 queueIndex = 0; in createDeviceFeatures2Test() local
693 vkd.getDeviceQueue(device.get(), queueFamilyIndex, queueIndex, &queue); in createDeviceFeatures2Test()
DvktApiBufferTests.cpp144 …const deUint32 queueIndex = findQueueFamilyIndexWithCaps(vk, physicalDevice, VK_QUEUE_GRAPHICS_BIT… in createSparseContext() local
156 queueInfo.queueFamilyIndex = queueIndex; in createSparseContext()
172 return new SparseContext(device, queueIndex, vk); in createSparseContext()
/external/deqp/external/vulkancts/modules/vulkan/sparse_resources/
DvktSparseResourcesBase.cpp111 queue.queueIndex = queueNdx; in createDeviceSupportingQueues()
168 …m_deviceDriver->getDeviceQueue(*m_logicalDevice, queue.queueFamilyIndex, queue.queueIndex, &queueH… in createDeviceSupportingQueues()
175 …rseResourcesBaseInstance::getQueue (const VkQueueFlags queueFlags, const deUint32 queueIndex) const in getQueue()
177 return m_queues.find(queueFlags)->second[queueIndex]; in getQueue()
DvktSparseResourcesBase.hpp44 deUint32 queueIndex; member
67 …const Queue& getQueue (const vk::VkQueueFlags queueFlags, const deUint32 queueIndex)…
/external/deqp/external/vulkancts/modules/vulkan/synchronization/
DvktSynchronizationInternallySynchronizedObjectsTests.cpp136 void releaseQueue (const deUint32& queueFamilyIndex, const int& queueIndex) in releaseQueue() argument
139 m_queues[queueFamilyIndex].available[queueIndex] = true; in releaseQueue()
328 int queueIndex; in executeComputePipeline() local
329 while(!queues.getFreeQueue(queueFamilyIndex, queue, queueIndex)){} in executeComputePipeline()
375 queues.releaseQueue(queueFamilyIndex, queueIndex); in executeComputePipeline()
402 int queueIndex; in executeGraphicPipeline() local
403 while(!queues.getFreeQueue(queueFamilyIndex, queue, queueIndex)){} in executeGraphicPipeline()
473 queues.releaseQueue(queueFamilyIndex, queueIndex); in executeGraphicPipeline()
/external/deqp/external/vulkancts/modules/vulkan/
DvktTestCase.cpp143 deUint32 queueIndex, in createDefaultDevice() argument
178 queueInfo.queueFamilyIndex = queueIndex; in createDefaultDevice()
DvktRenderPassTests.cpp1147 deUint32 queueIndex, in createAttachmentImage() argument
1180 &queueIndex, in createAttachmentImage()
1253 deUint32 queueIndex, in AttachmentResources() argument
1257 …: m_image (createAttachmentImage(vk, device, queueIndex, size, attachmentInfo.getFormat(), attac… in AttachmentResources()
1285 …ice, 0, m_bufferSize, VK_BUFFER_USAGE_TRANSFER_DST_BIT, VK_SHARING_MODE_EXCLUSIVE, 1, &queueIndex); in AttachmentResources()
1290 …_secondaryBufferSize, VK_BUFFER_USAGE_TRANSFER_DST_BIT, VK_SHARING_MODE_EXCLUSIVE, 1, &queueIndex); in AttachmentResources()
1299 …ice, 0, m_bufferSize, VK_BUFFER_USAGE_TRANSFER_DST_BIT, VK_SHARING_MODE_EXCLUSIVE, 1, &queueIndex); in AttachmentResources()
2253 deUint32 queueIndex, in pushImageInitializationCommands() argument
2275 queueIndex, // srcQueueFamilyIndex; in pushImageInitializationCommands()
2276 queueIndex, // destQueueFamilyIndex; in pushImageInitializationCommands()
[all …]
/external/deqp/external/vulkancts/framework/vulkan/
DvkNullDriver.cpp806 …L getDeviceQueue (VkDevice device, deUint32 queueFamilyIndex, deUint32 queueIndex, VkQueue* pQueue) in getDeviceQueue() argument
812 *pQueue = reinterpret_cast<VkQueue>((deUint64)queueIndex + 1); in getDeviceQueue()
DvkDeviceDriverImpl.inl10 void DeviceDriver::getDeviceQueue (VkDevice device, deUint32 queueFamilyIndex, deUint32 queueIndex,… argument
12 m_vk.getDeviceQueue(device, queueFamilyIndex, queueIndex, pQueue);
DvkConcreteDeviceInterface.inl5 …iceQueue (VkDevice device, deUint32 queueFamilyIndex, deUint32 queueIndex, VkQueue* pQueue…
DvkVirtualDeviceInterface.inl5 …iceQueue (VkDevice device, deUint32 queueFamilyIndex, deUint32 queueIndex, VkQueue* pQueue…
DvkFunctionPointerTypes.inl21 …eueFunc) (VkDevice device, deUint32 queueFamilyIndex, deUint32 queueIndex, VkQueue* pQueue…
/external/deqp/external/vulkancts/modules/vulkan/wsi/
DvktWsiSharedPresentableImageTests.cpp225 …onst vk::DeviceInterface& vkd, vk::VkDevice device, deUint32 queueFamilyIndex, deUint32 queueIndex) in getDeviceQueue() argument
228 vkd.getDeviceQueue(device, queueFamilyIndex, queueIndex, &queue); in getDeviceQueue()
DvktWsiIncrementalPresentTests.cpp216 …onst vk::DeviceInterface& vkd, vk::VkDevice device, deUint32 queueFamilyIndex, deUint32 queueIndex) in getDeviceQueue() argument
219 vkd.getDeviceQueue(device, queueFamilyIndex, queueIndex, &queue); in getDeviceQueue()
DvktWsiDisplayTimingTests.cpp88 …Queue (const DeviceInterface& vkd, VkDevice device, deUint32 queueFamilyIndex, deUint32 queueIndex) in getDeviceQueue() argument
92 vkd.getDeviceQueue(device, queueFamilyIndex, queueIndex, &queue); in getDeviceQueue()
DvktWsiSwapchainTests.cpp217 …Queue (const DeviceInterface& vkd, VkDevice device, deUint32 queueFamilyIndex, deUint32 queueIndex) in getDeviceQueue() argument
220 vkd.getDeviceQueue(device, queueFamilyIndex, queueIndex, &queue); in getDeviceQueue()
/external/vulkan-validation-layers/layers/
Dparameter_validation.cpp1766 bool PreGetDeviceQueue(VkDevice device, uint32_t queueFamilyIndex, uint32_t queueIndex) { in PreGetDeviceQueue() argument
1773 if (queue_data->second <= queueIndex) { in PreGetDeviceQueue()
1778 queueIndex); in PreGetDeviceQueue()
1784 …LL GetDeviceQueue(VkDevice device, uint32_t queueFamilyIndex, uint32_t queueIndex, VkQueue *pQueue… in GetDeviceQueue() argument
1789 … parameter_validation_vkGetDeviceQueue(my_data->report_data, queueFamilyIndex, queueIndex, pQueue); in GetDeviceQueue()
1792 PreGetDeviceQueue(device, queueFamilyIndex, queueIndex); in GetDeviceQueue()
1794 …h_table(pc_device_table_map, device)->GetDeviceQueue(device, queueFamilyIndex, queueIndex, pQueue); in GetDeviceQueue()
Dswapchain.cpp2236 GetDeviceQueue(VkDevice device, uint32_t queueFamilyIndex, uint32_t queueIndex, VkQueue *pQueue) { in GetDeviceQueue() argument
2242 … my_data->device_dispatch_table->GetDeviceQueue(device, queueFamilyIndex, queueIndex, pQueue); in GetDeviceQueue()
Dobject_tracker.cpp3271 …LL GetDeviceQueue(VkDevice device, uint32_t queueFamilyIndex, uint32_t queueIndex, VkQueue *pQueue… in GetDeviceQueue() argument
3276 …h_table(ot_device_table_map, device)->GetDeviceQueue(device, queueFamilyIndex, queueIndex, pQueue); in GetDeviceQueue()
/external/vulkan-validation-layers/tests/layers/
Dwrap_objects.cpp215 … vkGetDeviceQueue(VkDevice device, uint32_t queueFamilyIndex, uint32_t queueIndex, VkQueue* pQueue) in vkGetDeviceQueue() argument
217 device_dispatch_table(device)->GetDeviceQueue(device, queueFamilyIndex, queueIndex, pQueue); in vkGetDeviceQueue()
/external/vulkan-validation-layers/loader/
Dtrampoline.c959 vkGetDeviceQueue(VkDevice device, uint32_t queueNodeIndex, uint32_t queueIndex, argument
965 disp->GetDeviceQueue(device, queueNodeIndex, queueIndex, pQueue);
/external/vulkan-validation-layers/include/vulkan/
Dvulkan.h2270 …vkGetDeviceQueue)(VkDevice device, uint32_t queueFamilyIndex, uint32_t queueIndex, VkQueue* pQueue…
2478 uint32_t queueIndex,
Dvulkan.hpp16037 void getQueue( uint32_t queueFamilyIndex, uint32_t queueIndex, Queue* pQueue ) const in getQueue() argument
16039 … vkGetDeviceQueue( m_device, queueFamilyIndex, queueIndex, reinterpret_cast<VkQueue*>( pQueue ) ); in getQueue()
16043 Queue getQueue( uint32_t queueFamilyIndex, uint32_t queueIndex ) const in getQueue()
16046 … vkGetDeviceQueue( m_device, queueFamilyIndex, queueIndex, reinterpret_cast<VkQueue*>( &queue ) ); in getQueue()
/external/deqp/external/vulkancts/scripts/src/
Dvulkan.h.in2304 …vkGetDeviceQueue)(VkDevice device, uint32_t queueFamilyIndex, uint32_t queueIndex, VkQueue* pQueue…
2512 uint32_t queueIndex,

12