Lines Matching defs:array
948 * highest array id, i.e. tgsi_shader_info::array_max[file].
949 * @param arrays info for array of each ID will be written to arrays[ID - 1].
976 struct tgsi_array_info *array = &arrays[decl->Array.ArrayID - 1];
977 assert(!array->declared);
978 array->declared = true;
979 array->range = decl->Range;
1004 struct tgsi_array_info *array = &arrays[j];
1005 if (array->declared &&
1006 dst->Register.Index >= array->range.First &&
1007 dst->Register.Index <= array->range.Last)
1008 array->writemask |= dst->Register.WriteMask;