Searched refs:low_bit (Results 1 - 6 of 6) sorted by relevance
/third_party/rust/crates/unicode-width/scripts/ |
H A D | unicode.py | 52 A level's entry is of the form `(low_bit, cap_bit, offset_type)`. 53 This means that every sub-table in that level is indexed by bits `low_bit..cap_bit` of the 227 def make_buckets(entries, low_bit: BitPos, cap_bit: BitPos) -> "list[Bucket]": 229 codepoints with identical bits from `low_bit` to `cap_bit` (exclusive) are placed in the 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 258 in `entry_groups`. Each sub-table is indexed by codepoint bits in `low_bit..cap_bit`, 261 self.low_bit = low_bit [all...] |
/third_party/selinux/libsepol/src/ |
H A D | util.c | 132 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()
|
H A D | kernel_to_cil.c | 1634 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()
|
H A D | module_to_cil.c | 632 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/ |
H A D | sfn_instr_mem.cpp | 832 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_write)); in emit_image_size()
|
/third_party/mesa3d/src/gallium/auxiliary/gallivm/ |
H A D | lp_bld_format_s3tc.c | 2047 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()
|
Completed in 16 milliseconds