Home
last modified time | relevance | path

Searched refs:low_bit (Results 1 – 6 of 6) sorted by relevance

/third_party/rust/crates/unicode-width/scripts/
Dunicode.py227 def make_buckets(entries, low_bit: BitPos, cap_bit: BitPos) -> "list[Bucket]":
231 num_bits = cap_bit - low_bit
236 buckets[(codepoint >> low_bit) & mask].append(codepoint, width)
255 self, entry_groups, low_bit: BitPos, cap_bit: BitPos, offset_type: OffsetType
261 self.low_bit = low_bit
269 buckets.extend(make_buckets(entries, self.low_bit, self.cap_bit))
318 for (low_bit, cap_bit, offset_type) in table_cfgs:
319 table = Table(entry_groups, low_bit, cap_bit, offset_type)
/third_party/selinux/libsepol/src/
Dutil.c132 uint16_t low_bit; in sepol_extended_perms_to_string() local
159 low_bit = bit; in sepol_extended_perms_to_string()
167 low_value = xperms->driver<<8 | low_bit; in sepol_extended_perms_to_string()
175 low_value = low_bit << 8; in sepol_extended_perms_to_string()
Dkernel_to_cil.c1634 uint16_t low_bit; in xperms_to_str() local
1661 low_bit = bit; in xperms_to_str()
1669 low_value = xperms->driver<<8 | low_bit; in xperms_to_str()
1678 low_value = low_bit << 8; in xperms_to_str()
Dmodule_to_cil.c632 uint16_t low_bit; in xperms_to_cil() local
651 low_bit = bit; in xperms_to_cil()
664 low_value = xperms->driver<<8 | low_bit; in xperms_to_cil()
673 low_value = low_bit << 8; in xperms_to_cil()
/third_party/mesa3d/src/gallium/drivers/r600/sfn/
Dsfn_instr_mem.cpp832 auto low_bit = vf.temp_register(); in emit_image_size() local
839 shader.emit_instruction(new AluInstr(op2_and_int, low_bit, vf.src(intrin->src[0], 0), in emit_image_size()
852 …shader.emit_instruction(new AluInstr(op3_cnde_int, dest[2], low_bit, comp1, comp2, AluInstr::last_… in emit_image_size()
/third_party/mesa3d/src/gallium/auxiliary/gallivm/
Dlp_bld_format_s3tc.c2047 unsigned count, low_bit, log2size; in compressed_fetch_cached() local
2071 low_bit = util_logbase2(format_desc->block.bits / 8); in compressed_fetch_cached()
2080 lp_build_const_int_vec(gallivm, type, low_bit), ""); in compressed_fetch_cached()