Home
last modified time | relevance | path

Searched refs:is_array (Results 1 – 9 of 9) sorted by relevance

/hardware/google/gfxstream/codegen/vulkan/vulkan-docs-next/scripts/
Dhostsyncgenerator.py106 is_array = False
111 is_array = True
126 is_array = (' element of ' in readable)
132 if is_array:
Dvaliditygenerator.py657 is_array = self.paramIsArray(param)
659 needs_recursive_validity = (is_array
694 if is_array:
/hardware/google/gfxstream/guest/mesa/src/util/format/
Du_format_parse.py134 if self.is_array():
144 elif self.is_bitmask() and not self.is_array():
228 def is_array(self): member in Format
Du_format_table.py227 print(" %s,\t/* is_array */" % (bool_map(format.is_array()),))
Du_format.h170 unsigned is_array:1; member
1532 return desc->is_unorm && desc->is_array && desc->channel[c].size == 8; in util_format_is_unorm8()
Du_format_pack.py156 if not format.is_array():
/hardware/google/gfxstream/guest/mesa/src/vulkan/runtime/
Dvk_nir_convert_ycbcr.c171 tex->is_array = glsl_sampler_type_is_array(type); in get_texture_size()
271 tex->is_array = old_tex->is_array; in create_plane_tex_instr_implicit()
Dvk_meta_blit_resolve.c297 const bool is_array = key->dim != GLSL_SAMPLER_DIM_3D; in build_blit_shader() local
299 glsl_sampler_type(key->dim, false, is_array, base_type); in build_blit_shader()
/hardware/google/gfxstream/guest/android-emu/aemu/base/fit/
DUtilityInternal.h99 struct IsUnboundedArray : std::conjunction<std::is_array<T>, std::negation<std::extent<T>>> {};