Home
last modified time | relevance | path

Searched refs:hi_shifted (Results 1 - 1 of 1) sorted by relevance

/third_party/mesa3d/src/compiler/nir/
H A Dnir_lower_int64.c179 * uint32_t hi_shifted = hi << c; in lower_ishl64()
181 * return pack_64(lo_shifted, hi_shifted | lo_shifted_hi); in lower_ishl64()
193 nir_ssa_def *hi_shifted = nir_ishl(b, x_hi, y); in lower_ishl64() local
198 nir_ior(b, hi_shifted, lo_shifted_hi)); in lower_ishl64()
222 * uint32_t hi_shifted = hi >> c; in lower_ishr64()
224 * return pack_64(hi_shifted, hi_shifted_lo | lo_shifted); in lower_ishr64()
226 * uint32_t hi_shifted = hi >> 31; in lower_ishr64()
228 * return pack_64(hi_shifted, hi_shifted_lo); in lower_ishr64()
237 nir_ssa_def *hi_shifted = nir_ishr(b, x_hi, y); in lower_ishr64() local
242 hi_shifted); in lower_ishr64()
280 nir_ssa_def *hi_shifted = nir_ushr(b, x_hi, y); lower_ushr64() local
[all...]

Completed in 2 milliseconds