Home
last modified time | relevance | path

Searched refs:explicit_size (Results 1 – 4 of 4) sorted by relevance

/third_party/mesa3d/src/panfrost/lib/genxml/
Dgen_pack.py301 self.explicit_size = int(attrs["size"]) if "size" in attrs else 0
317 if self.explicit_size > 0:
318 assert(self.explicit_size >= size)
319 self.size = self.explicit_size
/third_party/mesa3d/src/compiler/
Dglsl_types.h683 unsigned explicit_size(bool align_to_stride=false) const;
Dglsl_types.cpp2464 glsl_type::explicit_size(bool align_to_stride) const in explicit_size() function in glsl_type
2473 this->fields.structure[i].type->explicit_size(); in explicit_size()
2497 …unsigned elem_size = align_to_stride ? this->explicit_stride : this->fields.array->explicit_size(); in explicit_size()
2515 unsigned elem_size = align_to_stride ? this->explicit_stride : elem_type->explicit_size(); in explicit_size()
Dnir_types.cpp1047 return type->explicit_size(align_to_stride); in glsl_get_explicit_size()