Home
last modified time | relevance | path

Searched refs:queueCount (Results 1 – 25 of 545) sorted by relevance

12345678910>>...22

/dports/www/firefox-legacy/firefox-52.8.0esr/gfx/skia/skia/src/gpu/vk/
H A DGrVkBackendContext.cpp138 uint32_t queueCount;
139 vkGetPhysicalDeviceQueueFamilyProperties(physDev, &queueCount, nullptr);
140 SkASSERT(queueCount >= 1);
142 SkAutoMalloc queuePropsAlloc(queueCount * sizeof(VkQueueFamilyProperties));
146 vkGetPhysicalDeviceQueueFamilyProperties(physDev, &queueCount, queueProps);
149 uint32_t graphicsQueueIndex = queueCount;
150 for (uint32_t i = 0; i < queueCount; i++) {
156 SkASSERT(graphicsQueueIndex < queueCount);
161 for (uint32_t i = 0; i < queueCount; i++) {
167 SkASSERT(presentQueueIndex < queueCount);
/dports/lang/spidermonkey60/firefox-60.9.0/gfx/skia/skia/src/gpu/vk/
H A DGrVkBackendContext.cpp166 uint32_t queueCount; in Create() local
167 grVkGetPhysicalDeviceQueueFamilyProperties(physDev, &queueCount, nullptr); in Create()
168 if (!queueCount) { in Create()
174 SkAutoMalloc queuePropsAlloc(queueCount * sizeof(VkQueueFamilyProperties)); in Create()
178 grVkGetPhysicalDeviceQueueFamilyProperties(physDev, &queueCount, queueProps); in Create()
181 uint32_t graphicsQueueIndex = queueCount; in Create()
182 for (uint32_t i = 0; i < queueCount; i++) { in Create()
188 if (graphicsQueueIndex == queueCount) { in Create()
195 uint32_t presentQueueIndex = queueCount; in Create()
197 for (uint32_t i = 0; i < queueCount; i++) { in Create()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/angle/third_party/VK-GL-CTS/src/external/vulkancts/modules/vulkan/sparse_resources/
H A DvktSparseResourcesBase.cpp44 QueueFamilyQueuesCount() : queueCount(0u) {}; in QueueFamilyQueuesCount()
46 deUint32 queueCount; member
138 …yCount = deMin32(queueFamilyProperties[queueFamilyIndex].queueCount, queueRequirement.queueCount -… in createDeviceSupportingQueues()
140 …eueFamilies[queueFamilyIndex].queueCount = deMax32(queuesPerFamilyCount, selectedQueueFamilies[que… in createDeviceSupportingQueues()
154 } while (queuesFoundCount < queueRequirement.queueCount); in createDeviceSupportingQueues()
161 for (deUint32 queueNdx = 0; queueNdx < queueFamilyIter->second.queueCount; ++queueNdx) in createDeviceSupportingQueues()
170 queueFamilyIter->second.queueCount, // uint32_t queueCount; in createDeviceSupportingQueues()
H A DvktSparseResourcesBase.hpp53 , queueCount(qCount) in QueueRequirements()
57 deUint32 queueCount; member
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/swiftshader/src/Vulkan/
H A DVkDevice.cpp102 queueCount += queueCreateInfo.queueCount;
110 for(uint32_t j = 0; j < queueCreateInfo.queueCount; j++, queueID++)
116 …ns = reinterpret_cast<ExtensionName *>(static_cast<uint8_t *>(mem) + (sizeof(Queue) * queueCount));
148 for(uint32_t i = 0; i < queueCount; i++) in destroy()
158 uint32_t queueCount = 0; in ComputeRequiredAllocationSize() local
161 queueCount += pCreateInfo->pQueueCreateInfos[i].queueCount; in ComputeRequiredAllocationSize()
164 return (sizeof(Queue) * queueCount) + (pCreateInfo->enabledExtensionCount * sizeof(ExtensionName)); in ComputeRequiredAllocationSize()
251 for(uint32_t i = 0; i < queueCount; i++) in waitIdle()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/swiftshader/src/Vulkan/
H A DVkDevice.cpp107 queueCount += queueCreateInfo.queueCount;
115 for(uint32_t j = 0; j < queueCreateInfo.queueCount; j++, queueID++)
121 …ns = reinterpret_cast<ExtensionName *>(static_cast<uint8_t *>(mem) + (sizeof(Queue) * queueCount));
153 for(uint32_t i = 0; i < queueCount; i++) in destroy()
163 uint32_t queueCount = 0; in ComputeRequiredAllocationSize() local
166 queueCount += pCreateInfo->pQueueCreateInfos[i].queueCount; in ComputeRequiredAllocationSize()
169 return (sizeof(Queue) * queueCount) + (pCreateInfo->enabledExtensionCount * sizeof(ExtensionName)); in ComputeRequiredAllocationSize()
256 for(uint32_t i = 0; i < queueCount; i++) in waitIdle()
/dports/misc/usd/USD-21.11/pxr/imaging/hgiVulkan/
H A Dcapabilities.cpp38 uint32_t queueCount = 0; in HgiVulkanCapabilities() local
39 vkGetPhysicalDeviceQueueFamilyProperties(physicalDevice, &queueCount, 0); in HgiVulkanCapabilities()
40 std::vector<VkQueueFamilyProperties> queues(queueCount); in HgiVulkanCapabilities()
44 &queueCount, in HgiVulkanCapabilities()
H A Ddevice.cpp44 uint32_t queueCount = 0; in _GetGraphicsQueueFamilyIndex() local
45 vkGetPhysicalDeviceQueueFamilyProperties(physicalDevice, &queueCount, 0); in _GetGraphicsQueueFamilyIndex()
47 std::vector<VkQueueFamilyProperties> queues(queueCount); in _GetGraphicsQueueFamilyIndex()
50 &queueCount, in _GetGraphicsQueueFamilyIndex()
53 for (uint32_t i = 0; i < queueCount; i++) { in _GetGraphicsQueueFamilyIndex()
172 queueInfo.queueCount = 1; in HgiVulkanDevice()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/skia/tests/
H A DVkPriorityExtensionTest.cpp155 uint32_t queueCount; in DEF_GPUTEST() local
156 grVkGetPhysicalDeviceQueueFamilyProperties(physDev, &queueCount, nullptr); in DEF_GPUTEST()
157 if (!queueCount) { in DEF_GPUTEST()
163 SkAutoMalloc queuePropsAlloc(queueCount * sizeof(VkQueueFamilyProperties)); in DEF_GPUTEST()
167 grVkGetPhysicalDeviceQueueFamilyProperties(physDev, &queueCount, queueProps); in DEF_GPUTEST()
170 uint32_t graphicsQueueIndex = queueCount; in DEF_GPUTEST()
171 for (uint32_t i = 0; i < queueCount; i++) { in DEF_GPUTEST()
177 if (graphicsQueueIndex == queueCount) { in DEF_GPUTEST()
/dports/devel/hyperscan/hyperscan-5.4.0/src/
H A Dscratch.c75 u32 queueCount = proto->queueCount; in alloc_scratch() local
92 size_t queue_size = queueCount * sizeof(struct mq); in alloc_scratch()
93 size_t qmpq_size = queueCount * sizeof(struct queue_match); in alloc_scratch()
236 for (struct mq *qi = s->queues; qi != s->queues + queueCount; ++qi) { in alloc_scratch()
335 u32 queueCount = rose->queueCount; in hs_alloc_scratch() local
336 if (queueCount > proto->queueCount) { in hs_alloc_scratch()
338 proto->queueCount = queueCount; in hs_alloc_scratch()
H A Dscratch_dump.cpp55 s->queueCount * sizeof(struct mq)); in dumpScratch()
59 s->queueCount * sizeof(struct queue_match)); in dumpScratch()
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Data.SqlClient/src/System/Data/SqlClient/SNI/
H A DSNIMarsHandle.cs280 int queueCount = _receivedPacketQueue.Count; in ReceiveAsync()
287 if (queueCount == 0) in ReceiveAsync()
295 if (queueCount == 1) in ReceiveAsync()
422 int queueCount; in Receive()
434 queueCount = _receivedPacketQueue.Count; in Receive()
436 if (queueCount > 0) in Receive()
440 if (queueCount == 1) in Receive()
/dports/games/libretro-scummvm/scummvm-7b1e929/backends/audiocd/
H A Daudiocd-stream.cpp144 uint32 queueCount = _bufferQueue.size(); in onTimer() local
148 if (queueCount >= kBufferThreshold) in onTimer()
151 …while (!shouldForceStop() && queueCount < kBufferThreshold && getStartFrame() + _bufferFrame < get… in onTimer()
169 queueCount = _bufferQueue.size(); in onTimer()
/dports/games/residualvm/residualvm-0.3.1/backends/audiocd/
H A Daudiocd-stream.cpp144 uint32 queueCount = _bufferQueue.size(); in onTimer() local
148 if (queueCount >= kBufferThreshold) in onTimer()
151 …while (!shouldForceStop() && queueCount < kBufferThreshold && getStartFrame() + _bufferFrame < get… in onTimer()
169 queueCount = _bufferQueue.size(); in onTimer()
/dports/games/scummvm/scummvm-2.5.1/backends/audiocd/
H A Daudiocd-stream.cpp144 uint32 queueCount = _bufferQueue.size(); in onTimer() local
148 if (queueCount >= kBufferThreshold) in onTimer()
151 …while (!shouldForceStop() && queueCount < kBufferThreshold && getStartFrame() + _bufferFrame < get… in onTimer()
169 queueCount = _bufferQueue.size(); in onTimer()
/dports/multimedia/musikcube/musikcube-0.96.7/src/musikdroid/app/src/main/java/io/casey/musikcube/remote/service/playback/impl/streaming/
H A DStreamingPlaybackService.kt53 var queueCount: Int = 0 in <lambda>() variable in io.casey.musikcube.remote.service.playback.impl.streaming.PlaybackContext
317 override val queueCount: Int in <lambda>() constant
318 get() = playContext.queueCount in <lambda>()
468 if (playContext.queueCount > 0) { in <lambda>()
470 playContext.currentIndex, playContext.queueCount)) in <lambda>()
483 val next = resolveNextIndex(index, playContext.queueCount, userInitiated) in <lambda>()
616 if (queueCount > 0) { in <lambda>()
617 context.queueCount = queueCount in <lambda>()
629 if (queueCount > 1) { /* let's prefetch the next track as well */ in <lambda>()
630 context.nextIndex = resolveNextIndex(context.currentIndex, queueCount, false) in <lambda>()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/skia/tools/gpu/vk/
H A DVkTestUtils.cpp580 uint32_t queueCount; in CreateVkBackendContext() local
581 grVkGetPhysicalDeviceQueueFamilyProperties(physDev, &queueCount, nullptr); in CreateVkBackendContext()
582 if (!queueCount) { in CreateVkBackendContext()
588 SkAutoMalloc queuePropsAlloc(queueCount * sizeof(VkQueueFamilyProperties)); in CreateVkBackendContext()
592 grVkGetPhysicalDeviceQueueFamilyProperties(physDev, &queueCount, queueProps); in CreateVkBackendContext()
595 uint32_t graphicsQueueIndex = queueCount; in CreateVkBackendContext()
596 for (uint32_t i = 0; i < queueCount; i++) { in CreateVkBackendContext()
602 if (graphicsQueueIndex == queueCount) { in CreateVkBackendContext()
609 uint32_t presentQueueIndex = queueCount; in CreateVkBackendContext()
611 for (uint32_t i = 0; i < queueCount; i++) { in CreateVkBackendContext()
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/skia/tools/gpu/vk/
H A DVkTestUtils.cpp568 uint32_t queueCount; in CreateVkBackendContext() local
569 grVkGetPhysicalDeviceQueueFamilyProperties(physDev, &queueCount, nullptr); in CreateVkBackendContext()
570 if (!queueCount) { in CreateVkBackendContext()
576 SkAutoMalloc queuePropsAlloc(queueCount * sizeof(VkQueueFamilyProperties)); in CreateVkBackendContext()
580 grVkGetPhysicalDeviceQueueFamilyProperties(physDev, &queueCount, queueProps); in CreateVkBackendContext()
583 uint32_t graphicsQueueIndex = queueCount; in CreateVkBackendContext()
584 for (uint32_t i = 0; i < queueCount; i++) { in CreateVkBackendContext()
590 if (graphicsQueueIndex == queueCount) { in CreateVkBackendContext()
597 uint32_t presentQueueIndex = queueCount; in CreateVkBackendContext()
599 for (uint32_t i = 0; i < queueCount; i++) { in CreateVkBackendContext()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/angle/third_party/VK-GL-CTS/src/external/vulkancts/modules/vulkan/api/
H A DvktApiDeviceInitializationTests.cpp618 const deUint32 queueCount = 1; in createDeviceTest() local
630 queueCount, //queueCount; in createDeviceTest()
677 queueCount, //queueCount; in createMultipleDevicesTest()
834 for (deUint32 queueCount = 1; queueCount <= maxQueueCount; queueCount += queueCountDiff) in createDeviceWithVariousQueueCountsTest() local
842 queueCount, in createDeviceWithVariousQueueCountsTest()
870 const deUint32 queueCount = deviceCreateInfo.pQueueCreateInfos->queueCount; in createDeviceWithVariousQueueCountsTest() local
1001 const deUint32 queueCount = 1; in createDeviceFeatures2Test() local
1013 queueCount, in createDeviceFeatures2Test()
1064 const deUint32 queueCount = 1; in createDeviceWithUnsupportedFeaturesTest() local
1151 queueCount, in createDeviceWithUnsupportedFeaturesTest()
[all …]
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Web/UI/
H A DSessionPageStatePersister.cs129 int queueCount = queue.Count; in Save()
131 if (cfg != null && queueCount > cfg.HistorySize || in Save()
132 cfg == null && queueCount > SessionPageStateSection.DefaultHistorySize) { in Save()
/dports/devel/ice37/ice-3.7.2/python/modules/IcePy/
H A DBatchRequestInterceptor.cpp242 IcePy::BatchRequestInterceptor::enqueue(const Ice::BatchRequest& request, int queueCount, int queue… in enqueue() argument
259 tmp = PyObject_CallFunction(_interceptor.get(), STRCAST("Oii"), obj, queueCount, queueSize); in enqueue()
263 …ect_CallMethod(_interceptor.get(), STRCAST("enqueue"), STRCAST("Oii"), obj, queueCount, queueSize); in enqueue()
/dports/devel/php-ice37/ice-3.7.2/python/modules/IcePy/
H A DBatchRequestInterceptor.cpp242 IcePy::BatchRequestInterceptor::enqueue(const Ice::BatchRequest& request, int queueCount, int queue… in enqueue() argument
259 tmp = PyObject_CallFunction(_interceptor.get(), STRCAST("Oii"), obj, queueCount, queueSize); in enqueue()
263 …ect_CallMethod(_interceptor.get(), STRCAST("enqueue"), STRCAST("Oii"), obj, queueCount, queueSize); in enqueue()
/dports/devel/py-ice37/ice-3.7.2/python/modules/IcePy/
H A DBatchRequestInterceptor.cpp242 IcePy::BatchRequestInterceptor::enqueue(const Ice::BatchRequest& request, int queueCount, int queue… in enqueue() argument
259 tmp = PyObject_CallFunction(_interceptor.get(), STRCAST("Oii"), obj, queueCount, queueSize); in enqueue()
263 …ect_CallMethod(_interceptor.get(), STRCAST("enqueue"), STRCAST("Oii"), obj, queueCount, queueSize); in enqueue()
/dports/www/firefox-esr/firefox-91.8.0/nsprpub/pr/include/private/
H A Dprimpl.h452 PR_ASSERT((_thread)->queueCount == 0); \
453 (_thread)->queueCount = QUEUE_RUN; \
464 (_thread)->queueCount = 0; \
468 PR_ASSERT((_thread)->queueCount == 0); \
469 (_thread)->queueCount = QUEUE_SLEEP; \
474 (_thread)->queueCount = 0; \
478 PR_ASSERT((_thread)->queueCount == 0); \
479 (_thread)->queueCount = QUEUE_JOIN; \
484 (_thread)->queueCount = 0; \
494 (_thread)->queueCount = 0; \
[all …]
/dports/www/firefox/firefox-99.0/nsprpub/pr/include/private/
H A Dprimpl.h452 PR_ASSERT((_thread)->queueCount == 0); \
453 (_thread)->queueCount = QUEUE_RUN; \
464 (_thread)->queueCount = 0; \
468 PR_ASSERT((_thread)->queueCount == 0); \
469 (_thread)->queueCount = QUEUE_SLEEP; \
474 (_thread)->queueCount = 0; \
478 PR_ASSERT((_thread)->queueCount == 0); \
479 (_thread)->queueCount = QUEUE_JOIN; \
484 (_thread)->queueCount = 0; \
494 (_thread)->queueCount = 0; \
[all …]

12345678910>>...22