Lines Matching refs:lowered_width
2181 unsigned lowered_width = MIN2(16, inst->exec_size); in get_lowered_simd_width() local
2192 lowered_width = MIN2(lowered_width, 4); in get_lowered_simd_width()
2204 lowered_width = MIN2(lowered_width, 4); in get_lowered_simd_width()
2212 lowered_width = MIN2(lowered_width, 4); in get_lowered_simd_width()
2224 lowered_width = MIN2(lowered_width, 4); in get_lowered_simd_width()
2226 return lowered_width; in get_lowered_simd_width()
2264 const unsigned lowered_width = in lower_simd_width() local
2266 assert(lowered_width <= inst->exec_size); in lower_simd_width()
2267 if (lowered_width == inst->exec_size) in lower_simd_width()
2283 for (unsigned n = 0; n < inst->exec_size / lowered_width; n++) { in lower_simd_width()
2284 unsigned channel_offset = lowered_width * n; in lower_simd_width()
2286 unsigned size_written = lowered_width * type_sz(inst->dst.type); in lower_simd_width()
2293 linst->exec_size = lowered_width; in lower_simd_width()
2305 copy->exec_size = lowered_width; in lower_simd_width()
2336 MOV(offset(inst->dst, lowered_width, n), src_reg(dst)); in lower_simd_width()
2337 mov->exec_size = lowered_width; in lower_simd_width()