Home
last modified time | relevance | path

Searched refs:_countof (Results 1 – 12 of 12) sorted by relevance

/external/angle/third_party/vulkan_memory_allocator/src/VmaReplay/
DConstants.cpp60 _countof(VMA_FUNCTION_NAMES) == (size_t)VMA_FUNCTION::Count,
73 const size_t VMA_POOL_CREATE_FLAG_COUNT = _countof(VMA_POOL_CREATE_FLAG_NAMES);
75 _countof(VMA_POOL_CREATE_FLAG_NAMES) == _countof(VMA_POOL_CREATE_FLAG_VALUES),
90 const size_t VK_BUFFER_CREATE_FLAG_COUNT = _countof(VK_BUFFER_CREATE_FLAG_NAMES);
92 _countof(VK_BUFFER_CREATE_FLAG_NAMES) == _countof(VK_BUFFER_CREATE_FLAG_VALUES),
121 const size_t VK_BUFFER_USAGE_FLAG_COUNT = _countof(VK_BUFFER_USAGE_FLAG_NAMES);
123 _countof(VK_BUFFER_USAGE_FLAG_NAMES) == _countof(VK_BUFFER_USAGE_FLAG_VALUES),
130 const size_t VK_SHARING_MODE_COUNT = _countof(VK_SHARING_MODE_NAMES);
164 const size_t VK_IMAGE_CREATE_FLAG_COUNT = _countof(VK_IMAGE_CREATE_FLAG_NAMES);
166 _countof(VK_IMAGE_CREATE_FLAG_NAMES) == _countof(VK_IMAGE_CREATE_FLAG_VALUES),
[all …]
DVmaReplay.cpp73 if(v < _countof(m_BaseCount)) in PostValue()
94 …(!m_ExtendedCount.empty() || std::count_if(m_BaseCount, m_BaseCount + _countof(m_BaseCount), [](ui… in Print()
98 for(size_t i = 0; i < _countof(m_BaseCount); ++i) in Print()
185 std::count_if(count, count + _countof(count), [](uint32_t v) { return v > 0; })) in Print()
/external/skqp/src/compute/skc/
Dskc_styling.h86 #define SKC_STYLING_CMDS(...) _countof(__VA_ARGS__),__VA_ARGS__
87 #define SKC_GROUP_IDS(...) _countof(__VA_ARGS__),__VA_ARGS__
/external/skqp/src/compute/tests/groups/
Dgroups.c261 _countof(cmds),cmds); in groups_layers_decode()
275 cmds[_countof(cmds)-1] = SKC_STYLING_OPCODE_BLEND_OVER | SKC_STYLING_OPCODE_IS_FINAL; in groups_layers_decode()
280 _countof(cmds),cmds); in groups_layers_decode()
/external/Reactive-Extensions/RxCpp/Ix/CPP/unittest/
Dtestbench.cpp399 VERIFY_EQ(_countof(expect), std::distance(range2.begin(), range2.end())); in TEST()
400 VERIFY_EQ(_countof(expect), std::distance(range2.begin(), range2.end())); in TEST()
402 auto result = std::mismatch(expect, expect + _countof(expect), range2.begin()); in TEST()
492 auto range1 = int_range(0, _countof(num)-5); // 5 digit numbers, plus null terminator in TEST()
506 cout << "length of input: " << (_countof(num)-1) << endl; in TEST()
/external/angle/third_party/vulkan_memory_allocator/src/
DVulkanSample.cpp378 size_t vertexBufferSize = sizeof(Vertex) * _countof(vertices); in CreateMesh()
379 size_t indexBufferSize = sizeof(uint16_t) * _countof(indices); in CreateMesh()
380 g_IndexCount = (uint32_t)_countof(indices); in CreateMesh()
859 renderPassInfo.attachmentCount = (uint32_t)_countof(attachments); in CreateSwapchain()
925 … pipelineVertexInputStateInfo.vertexAttributeDescriptionCount = _countof(attributeDescriptions); in CreateSwapchain()
1039 framebufferInfo.attachmentCount = (uint32_t)_countof(attachments); in CreateSwapchain()
1664 descriptorPoolInfo.poolSizeCount = (uint32_t)_countof(descriptorPoolSizes); in InitializeApplication()
1864 renderPassBeginInfo.clearValueCount = (uint32_t)_countof(clearValues); in DrawFrame()
1924 submitInfo.signalSemaphoreCount = _countof(submitSignalSemaphores); in DrawFrame()
1932 presentInfo.waitSemaphoreCount = _countof(presentWaitSemaphores); in DrawFrame()
DTests.cpp308 strftime(timeStr, _countof(timeStr), "%c", &timeInfo); in CurrentTimeToStr()
/external/mesa3d/src/gallium/drivers/swr/rasterizer/common/
Dos.h266 #define _countof(a) (sizeof(a) / sizeof(*(a))) macro
/external/mesa3d/src/gallium/drivers/swr/rasterizer/core/
Drasterizer.cpp290 for (uint32_t i = 0; i < _countof(triDesc.coverageMask); ++i) in RasterizeSimplePoint()
/external/oboe/samples/RhythmGame/third_party/glm/detail/
Dsetup.hpp817 # define GLM_COUNTOF(arr) _countof(arr)
/external/python/cpython2/Objects/
Dfileobject.c253 for(encoding = 0; encoding<_countof(e); ++encoding) { in _PyVerify_Mode_WINNT()
260 if (encoding == _countof(e)) in _PyVerify_Mode_WINNT()
/external/skia/src/gpu/d3d/
DGrD3DCaps.cpp130 flDesc.NumFeatureLevels = _countof(featureLevels); in init()