Lines Matching defs:array
67 type = type->fields.array) {
119 if (!ir->array->type->is_array())
122 /* If this array dereference is a child of an array dereference that was
128 if (last_array_deref && last_array_deref->array == ir) {
142 assert(deref->array->type->is_array());
144 ir_rvalue *const array = deref->array;
148 dr->size = array->type->array_size();
153 /* An unsized array can occur at the end of an SSBO. We can't track
154 * accesses to such an array, so bail.
156 if (array->type->array_size() == 0)
162 rv = array;
167 /* If the array being dereferenced is not a variable, bail. At the very