Home
last modified time | relevance | path

Searched refs:n_hi (Results 1 – 3 of 3) sorted by relevance

/external/u-boot/include/
Ddiv64.h165 u32 n_hi = n >> 32; in __arch_xprod_64() local
181 res += (u64)m_lo * n_hi; in __arch_xprod_64()
185 tmp = res += (u64)m_lo * n_hi; in __arch_xprod_64()
191 res += (u64)m_hi * n_hi; in __arch_xprod_64()
/external/mesa3d/src/compiler/nir/
Dnir_lower_int64.c506 nir_ssa_def *n_hi = nir_unpack_64_2x32_split_y(b, n); in lower_udiv64_mod64() local
513 nir_ssa_def *n_hi_before_if = n_hi; in lower_udiv64_mod64()
522 nir_iand(b, nir_ieq_imm(b, d_hi, 0), nir_uge(b, n_hi, d_lo)); in lower_udiv64_mod64()
540 nir_ssa_def *new_n_hi = nir_isub(b, n_hi, d_shift); in lower_udiv64_mod64()
543 nir_uge(b, n_hi, d_shift)); in lower_udiv64_mod64()
551 n_hi = nir_bcsel(b, cond, new_n_hi, n_hi); in lower_udiv64_mod64()
556 n_hi = nir_if_phi(b, n_hi, n_hi_before_if); in lower_udiv64_mod64()
561 n = nir_pack_64_2x32_split(b, n_lo, n_hi); in lower_udiv64_mod64()
599 nir_ssa_def *n_hi = nir_unpack_64_2x32_split_y(b, n); in lower_idiv64() local
602 nir_ssa_def *negate = nir_ine(b, nir_ilt(b, n_hi, nir_imm_int(b, 0)), in lower_idiv64()
[all …]
/external/libgav1/libgav1/src/utils/
Dcommon.h123 const auto n_hi = static_cast<unsigned long>(n >> 32); // NOLINT(runtime/int) in CountLeadingZeros() local
124 if (n_hi != 0) { in CountLeadingZeros()
125 const unsigned char bit_set = _BitScanReverse(&first_set_bit, n_hi); in CountLeadingZeros()