Home
last modified time | relevance | path

Searched refs:type_bits (Results 1 – 10 of 10) sorted by relevance

/third_party/gstreamer/gstplugins_bad/gst-libs/gst/vulkan/
Dgstvkmemory.c230 device, guint32 type_bits, VkMemoryPropertyFlags properties, in gst_vulkan_memory_find_memory_type_index_with_type_properties() argument
237 if ((type_bits & 1) == 1) { in gst_vulkan_memory_find_memory_type_index_with_type_properties()
245 type_bits >>= 1; in gst_vulkan_memory_find_memory_type_index_with_type_properties()
Dgstvkmemory.h140 guint32 type_bits,
/third_party/mesa3d/src/vulkan/wsi/
Dwsi_common_drm.c69 uint32_t type_bits) in select_memory_type() argument
71 assert(type_bits); in select_memory_type()
78 if ((type_bits & (1 << i)) && local == want_device_local) in select_memory_type()
86 return ffs(type_bits) - 1; in select_memory_type()
Dwsi_common_win32.c318 uint32_t type_bits) in select_memory_type() argument
322 if ((type_bits & (1 << i)) && (type.propertyFlags & props) == props) in select_memory_type()
/third_party/mesa3d/src/compiler/nir/
Dnir_algebraic.py64 def type_bits(type_str): function
641 dst_type_bits = type_bits(nir_op.output_type)
648 src_type_bits = type_bits(src_type)
/third_party/skia/third_party/externals/brotli/c/enc/
Dbrotli_bit_stream.c103 uint16_t type_bits[BROTLI_MAX_BLOCK_TYPE_SYMBOLS]; member
744 BrotliWriteBits(code->type_depths[typecode], code->type_bits[typecode], in StoreBlockSwitch()
779 &code->type_depths[0], &code->type_bits[0], in BuildAndStoreBlockSplitCode()
/third_party/node/deps/brotli/c/enc/
Dbrotli_bit_stream.c103 uint16_t type_bits[BROTLI_MAX_BLOCK_TYPE_SYMBOLS]; member
744 BrotliWriteBits(code->type_depths[typecode], code->type_bits[typecode], in StoreBlockSwitch()
779 &code->type_depths[0], &code->type_bits[0], in BuildAndStoreBlockSplitCode()
/third_party/flutter/skia/third_party/externals/imgui/examples/
Dimgui_impl_vulkan.cpp153 static uint32_t ImGui_ImplVulkan_MemoryType(VkMemoryPropertyFlags properties, uint32_t type_bits) in ImGui_ImplVulkan_MemoryType() argument
158 if ((prop.memoryTypes[i].propertyFlags & properties) == properties && type_bits & (1<<i)) in ImGui_ImplVulkan_MemoryType()
/third_party/skia/third_party/externals/imgui/backends/
Dimgui_impl_vulkan.cpp318 static uint32_t ImGui_ImplVulkan_MemoryType(VkMemoryPropertyFlags properties, uint32_t type_bits) in ImGui_ImplVulkan_MemoryType() argument
325 if ((prop.memoryTypes[i].propertyFlags & properties) == properties && type_bits & (1 << i)) in ImGui_ImplVulkan_MemoryType()
/third_party/mesa3d/src/vulkan/overlay-layer/
Doverlay.cpp1012 uint32_t type_bits) in vk_memory_type() argument
1017 if ((prop.memoryTypes[i].propertyFlags & properties) == properties && type_bits & (1<<i)) in vk_memory_type()