Searched refs:src_left_shift (Results 1 – 1 of 1) sorted by relevance
287 uint32_t src_mask, int src_left_shift) in nir_mask_shift_or() argument292 if (src_left_shift > 0) { in nir_mask_shift_or()293 shifted = nir_ishl(b, masked, nir_imm_int(b, src_left_shift)); in nir_mask_shift_or()294 } else if (src_left_shift < 0) { in nir_mask_shift_or()295 shifted = nir_ushr(b, masked, nir_imm_int(b, -src_left_shift)); in nir_mask_shift_or()297 assert(src_left_shift == 0); in nir_mask_shift_or()