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

/freebsd-11-stable/contrib/xz/src/liblzma/simple/
H A Dia64.c33 uint32_t bit_pos = 5; local
35 for (size_t slot = 0; slot < 3; ++slot, bit_pos += 41) {
39 const size_t byte_pos = (bit_pos >> 3);
40 const uint32_t bit_res = bit_pos & 0x7;
/freebsd-11-stable/sys/contrib/xz-embedded/linux/lib/xz/
H A Dxz_dec_bcj.c204 uint32_t bit_pos; local
206 /* bit_pos split into byte and bit parts */
224 for (slot = 0, bit_pos = 5; slot < 3; ++slot, bit_pos += 41) {
228 byte_pos = bit_pos >> 3;
229 bit_res = bit_pos & 7;
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/
H A DScalar.h110 bool SignExtend(uint32_t bit_pos);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Instruction/ARM64/
H A DEmulateInstructionARM64.cpp1167 integer bit_pos = UInt(b5:b40);
1175 uint32_t bit_pos = (Bit32(opcode, 31) << 6) | (Bits32(opcode, 23, 19)); local
1184 if (m_ignore_conditions || Bit32(operand, bit_pos) == bit_val) {
/freebsd-11-stable/contrib/ldns/
H A Dhost2str.c851 uint16_t bit_pos; local
861 for (bit_pos = 0; bit_pos < (bitmap_length) * 8; bit_pos++) {
862 if (! ldns_get_bit(&data[pos], bit_pos)) {
865 type = 256 * (uint16_t) window_block_nr + bit_pos;
/freebsd-11-stable/sys/dev/cxgbe/cudbg/
H A Dcudbg_lib.c1730 int bit_pos = 0; local
1734 bit_pos = 176;
1737 bit_pos = 141;
1740 bit_pos = 89;
1743 index = bit_pos / 32;
1744 bit = bit_pos % 32;
/freebsd-11-stable/sys/dev/ixl/
H A Dixl_pf_main.c5563 ixl_phy_type_string(u32 bit_pos, bool ext) argument
5610 if (ext && bit_pos > 7) return "Invalid_Ext";
5611 if (bit_pos > 31) return "Invalid";
5613 return (ext) ? ext_phy_types_str[bit_pos] : phy_types_str[bit_pos];
6461 u8 bit_pos, int *is_set)
6477 *is_set = !!(abilities->fec_cfg_curr_mod_ext_info & bit_pos);
6483 u8 bit_pos, int set)
6492 config.fec_config = abilities->fec_cfg_curr_mod_ext_info & ~(bit_pos);
6494 config.fec_config |= bit_pos;
6460 ixl_get_fec_config(struct ixl_pf *pf, struct i40e_aq_get_phy_abilities_resp *abilities, u8 bit_pos, int *is_set) argument
6482 ixl_set_fec_config(struct ixl_pf *pf, struct i40e_aq_get_phy_abilities_resp *abilities, u8 bit_pos, int set) argument
[all...]
/freebsd-11-stable/sys/dev/vnic/
H A Dnicvf_queues.c127 uint64_t reg, int bit_pos, int bits, int val)
134 bit_mask = (bit_mask << bit_pos);
138 if (((reg_val & bit_mask) >> bit_pos) == val)
126 nicvf_poll_reg(struct nicvf *nic, int qidx, uint64_t reg, int bit_pos, int bits, int val) argument
/freebsd-11-stable/sys/dev/cxgbe/
H A Dt4_filter.c1119 set_tcb_tflag(struct adapter *sc, int tid, u_int bit_pos, u_int val, argument
1123 return (set_tcb_field(sc, tid, W_TCB_T_FLAGS, 1ULL << bit_pos,
1124 (uint64_t)val << bit_pos, no_reply));

Completed in 211 milliseconds