Home
last modified time | relevance | path

Searched refs:bitmask (Results 1 – 195 of 195) sorted by relevance

/linux-4.1.27/tools/power/cpupower/utils/helpers/
Dbitmask.h10 struct bitmask { struct
15 struct bitmask *bitmask_alloc(unsigned int n); argument
16 void bitmask_free(struct bitmask *bmp);
18 struct bitmask *bitmask_setbit(struct bitmask *bmp, unsigned int i);
19 struct bitmask *bitmask_setall(struct bitmask *bmp);
20 struct bitmask *bitmask_clearall(struct bitmask *bmp);
22 unsigned int bitmask_first(const struct bitmask *bmp);
23 unsigned int bitmask_next(const struct bitmask *bmp, unsigned int i);
24 unsigned int bitmask_last(const struct bitmask *bmp);
25 int bitmask_isallclear(const struct bitmask *bmp);
[all …]
Dbitmask.c23 struct bitmask *bitmask_alloc(unsigned int n) in bitmask_alloc()
25 struct bitmask *bmp; in bitmask_alloc()
40 void bitmask_free(struct bitmask *bmp) in bitmask_free()
61 static unsigned int _getbit(const struct bitmask *bmp, unsigned int n) in _getbit()
70 static void _setbit(struct bitmask *bmp, unsigned int n, unsigned int v) in _setbit()
114 struct bitmask *bitmask_setbit(struct bitmask *bmp, unsigned int i) in bitmask_setbit()
121 struct bitmask *bitmask_setall(struct bitmask *bmp) in bitmask_setall()
130 struct bitmask *bitmask_clearall(struct bitmask *bmp) in bitmask_clearall()
139 int bitmask_isallclear(const struct bitmask *bmp) in bitmask_isallclear()
149 int bitmask_isbitset(const struct bitmask *bmp, unsigned int i) in bitmask_isbitset()
[all …]
Dhelpers.h36 extern struct bitmask *cpus_chosen;
/linux-4.1.27/net/netfilter/
Dxt_physdev.c38 if ((info->bitmask & XT_PHYSDEV_OP_BRIDGED) && in physdev_mt()
41 if ((info->bitmask & XT_PHYSDEV_OP_ISIN) && in physdev_mt()
44 if ((info->bitmask & XT_PHYSDEV_OP_ISOUT) && in physdev_mt()
47 if ((info->bitmask & XT_PHYSDEV_OP_IN) && in physdev_mt()
50 if ((info->bitmask & XT_PHYSDEV_OP_OUT) && in physdev_mt()
60 if ((info->bitmask & XT_PHYSDEV_OP_BRIDGED) && in physdev_mt()
67 if ((info->bitmask & XT_PHYSDEV_OP_ISIN && in physdev_mt()
69 (info->bitmask & XT_PHYSDEV_OP_ISOUT && in physdev_mt()
73 if (!(info->bitmask & XT_PHYSDEV_OP_IN)) in physdev_mt()
85 if (!(info->bitmask & XT_PHYSDEV_OP_OUT)) in physdev_mt()
[all …]
Dxt_ipvs.c58 if (data->bitmask == XT_IPVS_IPVS_PROPERTY) { in ipvs_mt()
72 if (data->bitmask & XT_IPVS_PROTO) in ipvs_mt()
99 if (data->bitmask & XT_IPVS_VPORT) in ipvs_mt()
106 if (data->bitmask & XT_IPVS_VPORTCTL) in ipvs_mt()
114 if (data->bitmask & XT_IPVS_DIR) { in ipvs_mt()
130 if (data->bitmask & XT_IPVS_METHOD) in ipvs_mt()
137 if (data->bitmask & XT_IPVS_VADDR) { in ipvs_mt()
/linux-4.1.27/drivers/net/ethernet/brocade/bna/
Dbna.h240 #define is_xxx_enable(mode, bitmask, xxx) ((bitmask & xxx) && (mode & xxx)) argument
242 #define is_xxx_disable(mode, bitmask, xxx) ((bitmask & xxx) && !(mode & xxx)) argument
244 #define xxx_enable(mode, bitmask, xxx) \ argument
246 bitmask |= xxx; \
250 #define xxx_disable(mode, bitmask, xxx) \ argument
252 bitmask |= xxx; \
256 #define xxx_inactive(mode, bitmask, xxx) \ argument
258 bitmask &= ~xxx; \
262 #define is_promisc_enable(mode, bitmask) \ argument
263 is_xxx_enable(mode, bitmask, BNA_RXMODE_PROMISC)
[all …]
Dbna_tx_rx.c2847 enum bna_rxmode bitmask, in bna_rx_mode_set() argument
2855 if (is_promisc_enable(new_mode, bitmask)) { in bna_rx_mode_set()
2866 if (is_default_enable(new_mode, bitmask)) in bna_rx_mode_set()
2870 if (is_default_enable(new_mode, bitmask)) { in bna_rx_mode_set()
2884 if (is_promisc_enable(new_mode, bitmask)) { in bna_rx_mode_set()
2887 } else if (is_promisc_disable(new_mode, bitmask)) { in bna_rx_mode_set()
2892 if (is_allmulti_enable(new_mode, bitmask)) { in bna_rx_mode_set()
2895 } else if (is_allmulti_disable(new_mode, bitmask)) { in bna_rx_mode_set()
/linux-4.1.27/net/bridge/netfilter/
Debt_ip.c39 if (info->bitmask & EBT_IP_TOS && in ebt_ip_mt()
42 if (info->bitmask & EBT_IP_SOURCE && in ebt_ip_mt()
46 if ((info->bitmask & EBT_IP_DEST) && in ebt_ip_mt()
50 if (info->bitmask & EBT_IP_PROTO) { in ebt_ip_mt()
53 if (!(info->bitmask & EBT_IP_DPORT) && in ebt_ip_mt()
54 !(info->bitmask & EBT_IP_SPORT)) in ebt_ip_mt()
62 if (info->bitmask & EBT_IP_DPORT) { in ebt_ip_mt()
69 if (info->bitmask & EBT_IP_SPORT) { in ebt_ip_mt()
88 if (info->bitmask & ~EBT_IP_MASK || info->invflags & ~EBT_IP_MASK) in ebt_ip_mt_check()
90 if (info->bitmask & (EBT_IP_DPORT | EBT_IP_SPORT)) { in ebt_ip_mt_check()
[all …]
Debt_stp.c52 if ((info->bitmask & EBT_STP_FLAGS) && in ebt_filter_config()
55 if (info->bitmask & EBT_STP_ROOTPRIO) { in ebt_filter_config()
61 if (info->bitmask & EBT_STP_ROOTADDR) { in ebt_filter_config()
69 if (info->bitmask & EBT_STP_ROOTCOST) { in ebt_filter_config()
75 if (info->bitmask & EBT_STP_SENDERPRIO) { in ebt_filter_config()
81 if (info->bitmask & EBT_STP_SENDERADDR) { in ebt_filter_config()
89 if (info->bitmask & EBT_STP_PORT) { in ebt_filter_config()
95 if (info->bitmask & EBT_STP_MSGAGE) { in ebt_filter_config()
101 if (info->bitmask & EBT_STP_MAXAGE) { in ebt_filter_config()
107 if (info->bitmask & EBT_STP_HELLOTIME) { in ebt_filter_config()
[all …]
Debt_mark_m.c20 if (info->bitmask & EBT_MARK_OR) in ebt_mark_mt()
29 if (info->bitmask & ~EBT_MARK_MASK) in ebt_mark_mt_check()
31 if ((info->bitmask & EBT_MARK_OR) && (info->bitmask & EBT_MARK_AND)) in ebt_mark_mt_check()
33 if (!info->bitmask) in ebt_mark_mt_check()
42 uint8_t invert, bitmask; member
53 kern->bitmask = user->bitmask; in mark_mt_compat_from_user()
64 put_user(kern->bitmask, &user->bitmask)) in mark_mt_compat_to_user()
Debt_ip6.c48 if (info->bitmask & EBT_IP6_TCLASS && in ebt_ip6_mt()
51 if ((info->bitmask & EBT_IP6_SOURCE && in ebt_ip6_mt()
54 (info->bitmask & EBT_IP6_DEST && in ebt_ip6_mt()
58 if (info->bitmask & EBT_IP6_PROTO) { in ebt_ip6_mt()
68 if (!(info->bitmask & ( EBT_IP6_DPORT | in ebt_ip6_mt()
77 if (info->bitmask & EBT_IP6_DPORT) { in ebt_ip6_mt()
83 if (info->bitmask & EBT_IP6_SPORT) { in ebt_ip6_mt()
89 if ((info->bitmask & EBT_IP6_ICMP6) && in ebt_ip6_mt()
107 if (info->bitmask & ~EBT_IP6_MASK || info->invflags & ~EBT_IP6_MASK) in ebt_ip6_mt_check()
109 if (info->bitmask & (EBT_IP6_DPORT | EBT_IP6_SPORT)) { in ebt_ip6_mt_check()
[all …]
Debt_arp.c28 if (info->bitmask & EBT_ARP_OPCODE && FWINV(info->opcode != in ebt_arp_mt()
31 if (info->bitmask & EBT_ARP_HTYPE && FWINV(info->htype != in ebt_arp_mt()
34 if (info->bitmask & EBT_ARP_PTYPE && FWINV(info->ptype != in ebt_arp_mt()
38 if (info->bitmask & (EBT_ARP_SRC_IP | EBT_ARP_DST_IP | EBT_ARP_GRAT)) { in ebt_arp_mt()
54 if (info->bitmask & EBT_ARP_SRC_IP && in ebt_arp_mt()
57 if (info->bitmask & EBT_ARP_DST_IP && in ebt_arp_mt()
60 if (info->bitmask & EBT_ARP_GRAT && in ebt_arp_mt()
65 if (info->bitmask & (EBT_ARP_SRC_MAC | EBT_ARP_DST_MAC)) { in ebt_arp_mt()
72 if (info->bitmask & EBT_ARP_SRC_MAC) { in ebt_arp_mt()
85 if (info->bitmask & EBT_ARP_DST_MAC) { in ebt_arp_mt()
[all …]
Debt_log.c31 if (info->bitmask & ~EBT_LOG_MASK) in ebt_log_tg_check()
80 unsigned int bitmask; in ebt_log_packet() local
94 bitmask = loginfo->u.log.logflags; in ebt_log_packet()
96 bitmask = NF_LOG_MASK; in ebt_log_packet()
98 if ((bitmask & EBT_LOG_IP) && eth_hdr(skb)->h_proto == in ebt_log_packet()
115 if ((bitmask & EBT_LOG_IP6) && eth_hdr(skb)->h_proto == in ebt_log_packet()
139 if ((bitmask & EBT_LOG_ARP) && in ebt_log_packet()
187 li.u.log.logflags = info->bitmask; in ebt_log_tg()
193 if (info->bitmask & EBT_LOG_NFLOG) in ebt_log_tg()
Debt_vlan.c34 #define GET_BITMASK(_BIT_MASK_) info->bitmask & _BIT_MASK_
102 if (info->bitmask & ~EBT_VLAN_MASK) { in ebt_vlan_mt_check()
104 info->bitmask, EBT_VLAN_MASK); in ebt_vlan_mt_check()
132 info->bitmask &= ~EBT_VLAN_PRIO; in ebt_vlan_mt_check()
Debt_802_3.c22 if (info->bitmask & EBT_802_3_SAP) { in ebt_802_3_mt()
29 if (info->bitmask & EBT_802_3_TYPE) { in ebt_802_3_mt()
43 if (info->bitmask & ~EBT_802_3_MASK || info->invflags & ~EBT_802_3_MASK) in ebt_802_3_mt_check()
Debtables.c141 if (e->bitmask & EBT_802_3) { in ebt_basic_match()
144 } else if (!(e->bitmask & EBT_NOPROTO) && in ebt_basic_match()
160 if (e->bitmask & EBT_SOURCEMAC) { in ebt_basic_match()
168 if (e->bitmask & EBT_DESTMAC) { in ebt_basic_match()
449 if (i != NF_BR_NUMHOOKS || !(e->bitmask & EBT_ENTRY_OR_ENTRIES)) { in ebt_verify_pointers()
450 if (e->bitmask != 0) { in ebt_verify_pointers()
506 if (i != NF_BR_NUMHOOKS || !e->bitmask) { in ebt_check_entry_size_and_hooks()
568 if (e->bitmask) in ebt_get_udc_positions()
629 if (e->bitmask == 0) in ebt_cleanup_entry()
663 if (e->bitmask == 0) in ebt_check_entry()
[all …]
Debt_among.c146 if (!(info->bitmask & EBT_AMONG_SRC_NEG)) { in ebt_among_mt()
161 if (!(info->bitmask & EBT_AMONG_DST_NEG)) { in ebt_among_mt()
/linux-4.1.27/arch/mips/emma/markeins/
Dirq.c183 u32 bitmask; in emma2rh_irq_dispatch() local
194 for (i = 0, bitmask = 1; i < 32; i++, bitmask <<= 1) { in emma2rh_irq_dispatch()
195 if (swIntStatus & bitmask) { in emma2rh_irq_dispatch()
205 for (i = 0, bitmask = 1; i < 32; i++, bitmask <<= 1) { in emma2rh_irq_dispatch()
206 if (intStatus & bitmask) { in emma2rh_irq_dispatch()
220 for (i = 0, bitmask = 1; i < 32; i++, bitmask <<= 1) { in emma2rh_irq_dispatch()
221 if (gpioIntStatus & bitmask) { in emma2rh_irq_dispatch()
231 for (i = 32, bitmask = 1; i < 64; i++, bitmask <<= 1) { in emma2rh_irq_dispatch()
232 if (intStatus & bitmask) { in emma2rh_irq_dispatch()
241 for (i = 64, bitmask = 1; i < 96; i++, bitmask <<= 1) { in emma2rh_irq_dispatch()
[all …]
/linux-4.1.27/arch/sh/kernel/cpu/irq/
Dintc-sh5.c85 unsigned long bitmask; in enable_intc_irq() local
92 bitmask = 1 << irq; in enable_intc_irq()
95 bitmask = 1 << (irq - 32); in enable_intc_irq()
98 __raw_writel(bitmask, reg); in enable_intc_irq()
105 unsigned long bitmask; in disable_intc_irq() local
109 bitmask = 1 << irq; in disable_intc_irq()
112 bitmask = 1 << (irq - 32); in disable_intc_irq()
115 __raw_writel(bitmask, reg); in disable_intc_irq()
/linux-4.1.27/drivers/hwmon/
Dasc7621.c850 PREAD(in0_alarm, 0, PRI_HIGH, 0x41, 0, 0x01, 0, bitmask),
851 PREAD(in1_alarm, 1, PRI_HIGH, 0x41, 0, 0x01, 1, bitmask),
852 PREAD(in2_alarm, 2, PRI_HIGH, 0x41, 0, 0x01, 2, bitmask),
853 PREAD(in3_alarm, 3, PRI_HIGH, 0x41, 0, 0x01, 3, bitmask),
854 PREAD(in4_alarm, 4, PRI_HIGH, 0x42, 0, 0x01, 0, bitmask),
866 PREAD(fan1_alarm, 0, PRI_HIGH, 0x42, 0, 0x01, 2, bitmask),
867 PREAD(fan2_alarm, 1, PRI_HIGH, 0x42, 0, 0x01, 3, bitmask),
868 PREAD(fan3_alarm, 2, PRI_HIGH, 0x42, 0, 0x01, 4, bitmask),
869 PREAD(fan4_alarm, 3, PRI_HIGH, 0x42, 0, 0x01, 5, bitmask),
890 PREAD(temp1_alarm, 0, PRI_HIGH, 0x41, 0, 0x01, 4, bitmask),
[all …]
/linux-4.1.27/drivers/net/wireless/rtlwifi/rtl8192ce/
Dphy.h82 u32 rtl92c_phy_query_bb_reg(struct ieee80211_hw *hw, u32 regaddr, u32 bitmask);
83 void rtl92c_phy_set_bb_reg(struct ieee80211_hw *hw, u32 regaddr, u32 bitmask,
86 u32 regaddr, u32 bitmask);
88 u32 regaddr, u32 bitmask, u32 data);
123 u32 _rtl92c_phy_calculate_bit_shift(u32 bitmask);
130 u32 regaddr, u32 bitmask, u32 data);
Dphy.c48 enum radio_path rfpath, u32 regaddr, u32 bitmask) in rtl92c_phy_query_rf_reg() argument
56 regaddr, rfpath, bitmask); in rtl92c_phy_query_rf_reg()
68 bitshift = _rtl92c_phy_calculate_bit_shift(bitmask); in rtl92c_phy_query_rf_reg()
69 readback_value = (original_value & bitmask) >> bitshift; in rtl92c_phy_query_rf_reg()
75 regaddr, rfpath, bitmask, original_value); in rtl92c_phy_query_rf_reg()
122 u32 regaddr, u32 bitmask, u32 data) in rtl92ce_phy_set_rf_reg() argument
130 regaddr, bitmask, data, rfpath); in rtl92ce_phy_set_rf_reg()
135 if (bitmask != RFREG_OFFSET_MASK) { in rtl92ce_phy_set_rf_reg()
139 bitshift = _rtl92c_phy_calculate_bit_shift(bitmask); in rtl92ce_phy_set_rf_reg()
141 ((original_value & (~bitmask)) | in rtl92ce_phy_set_rf_reg()
[all …]
/linux-4.1.27/drivers/staging/rtl8192u/
Dr819xU_phy.c47 static u32 rtl8192_CalculateBitShift(u32 bitmask) in rtl8192_CalculateBitShift() argument
51 i = ffs(bitmask) - 1; in rtl8192_CalculateBitShift()
89 void rtl8192_setBBreg(struct net_device *dev, u32 reg_addr, u32 bitmask, in rtl8192_setBBreg() argument
95 if (bitmask != bMaskDWord) { in rtl8192_setBBreg()
97 bitshift = rtl8192_CalculateBitShift(bitmask); in rtl8192_setBBreg()
98 reg &= ~bitmask; in rtl8192_setBBreg()
115 u32 rtl8192_QueryBBReg(struct net_device *dev, u32 reg_addr, u32 bitmask) in rtl8192_QueryBBReg() argument
120 bitshift = rtl8192_CalculateBitShift(bitmask); in rtl8192_QueryBBReg()
122 return (reg & bitmask) >> bitshift; in rtl8192_QueryBBReg()
297 u32 reg_addr, u32 bitmask, u32 data) in rtl8192_phy_SetRFReg() argument
[all …]
Dr819xU_phy.h62 u32 bitmask, u32 data);
64 u32 bitmask);
66 RF90_RADIO_PATH_E eRFPath, u32 reg_addr, u32 bitmask, u32 data);
68 RF90_RADIO_PATH_E eRFPath, u32 reg_addr, u32 bitmask);
/linux-4.1.27/drivers/input/joystick/
Dtwidjoy.c69 int bitmask; member
111 for (bp = twidjoy_buttons; bp->bitmask; bp++) { in twidjoy_process_packet()
112 int value = (button_bits & (bp->bitmask << bp->bitshift)) >> bp->bitshift; in twidjoy_process_packet()
115 for (i = 0; i < bp->bitmask; i++) in twidjoy_process_packet()
209 for (bp = twidjoy_buttons; bp->bitmask; bp++) in twidjoy_connect()
210 for (i = 0; i < bp->bitmask; i++) in twidjoy_connect()
/linux-4.1.27/drivers/media/radio/
Dradio-zoltrix.c110 unsigned long long bitmask, f, m; in zoltrix_s_frequency() local
122 bitmask = 0xc480402c10080000ull; in zoltrix_s_frequency()
132 bitmask = (bitmask ^ ((f & 0xff) << 47) ^ ((f & 0xff00) << 30) ^ (stereo << 31)); in zoltrix_s_frequency()
134 if ((bitmask & 0x8000000000000000ull) != 0) { in zoltrix_s_frequency()
149 bitmask *= 2; in zoltrix_s_frequency()
/linux-4.1.27/drivers/net/wireless/rtlwifi/rtl8192se/
Dphy.h77 u32 rtl92s_phy_query_bb_reg(struct ieee80211_hw *hw, u32 regaddr, u32 bitmask);
78 void rtl92s_phy_set_bb_reg(struct ieee80211_hw *hw, u32 regaddr, u32 bitmask,
82 u32 regaddr, u32 bitmask);
84 u32 regaddr, u32 bitmask, u32 data);
Dphy.c43 static u32 _rtl92s_phy_calculate_bit_shift(u32 bitmask) in _rtl92s_phy_calculate_bit_shift() argument
48 if (((bitmask >> i) & 0x1) == 1) in _rtl92s_phy_calculate_bit_shift()
55 u32 rtl92s_phy_query_bb_reg(struct ieee80211_hw *hw, u32 regaddr, u32 bitmask) in rtl92s_phy_query_bb_reg() argument
61 regaddr, bitmask); in rtl92s_phy_query_bb_reg()
64 bitshift = _rtl92s_phy_calculate_bit_shift(bitmask); in rtl92s_phy_query_bb_reg()
65 returnvalue = (originalvalue & bitmask) >> bitshift; in rtl92s_phy_query_bb_reg()
68 bitmask, regaddr, originalvalue); in rtl92s_phy_query_bb_reg()
74 void rtl92s_phy_set_bb_reg(struct ieee80211_hw *hw, u32 regaddr, u32 bitmask, in rtl92s_phy_set_bb_reg() argument
82 regaddr, bitmask, data); in rtl92s_phy_set_bb_reg()
84 if (bitmask != MASKDWORD) { in rtl92s_phy_set_bb_reg()
[all …]
/linux-4.1.27/drivers/net/wireless/rtlwifi/rtl8723com/
Dphy_common.c34 u32 regaddr, u32 bitmask) in rtl8723_phy_query_bb_reg() argument
40 "regaddr(%#x), bitmask(%#x)\n", regaddr, bitmask); in rtl8723_phy_query_bb_reg()
42 bitshift = rtl8723_phy_calculate_bit_shift(bitmask); in rtl8723_phy_query_bb_reg()
43 returnvalue = (originalvalue & bitmask) >> bitshift; in rtl8723_phy_query_bb_reg()
46 "BBR MASK=0x%x Addr[0x%x]=0x%x\n", bitmask, in rtl8723_phy_query_bb_reg()
53 u32 bitmask, u32 data) in rtl8723_phy_set_bb_reg() argument
59 "regaddr(%#x), bitmask(%#x), data(%#x)\n", regaddr, bitmask, in rtl8723_phy_set_bb_reg()
62 if (bitmask != MASKDWORD) { in rtl8723_phy_set_bb_reg()
64 bitshift = rtl8723_phy_calculate_bit_shift(bitmask); in rtl8723_phy_set_bb_reg()
65 data = ((originalvalue & (~bitmask)) | (data << bitshift)); in rtl8723_phy_set_bb_reg()
[all …]
Dphy_common.h49 u32 regaddr, u32 bitmask);
51 u32 bitmask, u32 data);
52 u32 rtl8723_phy_calculate_bit_shift(u32 bitmask);
/linux-4.1.27/drivers/net/wireless/rtlwifi/rtl8192cu/
Dphy.c45 enum radio_path rfpath, u32 regaddr, u32 bitmask) in rtl92cu_phy_query_rf_reg() argument
53 regaddr, rfpath, bitmask); in rtl92cu_phy_query_rf_reg()
61 bitshift = _rtl92c_phy_calculate_bit_shift(bitmask); in rtl92cu_phy_query_rf_reg()
62 readback_value = (original_value & bitmask) >> bitshift; in rtl92cu_phy_query_rf_reg()
65 regaddr, rfpath, bitmask, original_value); in rtl92cu_phy_query_rf_reg()
71 u32 regaddr, u32 bitmask, u32 data) in rtl92cu_phy_set_rf_reg() argument
79 regaddr, bitmask, data, rfpath); in rtl92cu_phy_set_rf_reg()
81 if (bitmask != RFREG_OFFSET_MASK) { in rtl92cu_phy_set_rf_reg()
85 bitshift = _rtl92c_phy_calculate_bit_shift(bitmask); in rtl92cu_phy_set_rf_reg()
87 ((original_value & (~bitmask)) | in rtl92cu_phy_set_rf_reg()
[all …]
Dsw.h46 u32 regaddr, u32 bitmask, u32 data);
50 enum radio_path rfpath, u32 regaddr, u32 bitmask);
Dphy.h38 enum radio_path rfpath, u32 regaddr, u32 bitmask);
41 u32 regaddr, u32 bitmask, u32 data);
/linux-4.1.27/arch/mips/pci/
Dmsi-octeon.c223 u64 bitmask; in arch_teardown_msi_irq() local
248 bitmask = (1 << number_irqs) - 1; in arch_teardown_msi_irq()
250 bitmask <<= irq0; in arch_teardown_msi_irq()
251 if ((msi_free_irq_bitmask[index] & bitmask) != bitmask) in arch_teardown_msi_irq()
257 msi_free_irq_bitmask[index] &= ~bitmask; in arch_teardown_msi_irq()
258 msi_multiple_irq_bitmask[index] &= ~bitmask; in arch_teardown_msi_irq()
/linux-4.1.27/drivers/net/wireless/rtlwifi/rtl8192ee/
Dphy.h120 u32 regaddr, u32 bitmask);
122 u32 regaddr, u32 bitmask, u32 data);
125 u32 bitmask);
128 u32 bitmask, u32 data);
Dphy.c41 static u32 _rtl92ee_phy_calculate_bit_shift(u32 bitmask);
63 u32 rtl92ee_phy_query_bb_reg(struct ieee80211_hw *hw, u32 regaddr, u32 bitmask) in rtl92ee_phy_query_bb_reg() argument
69 "regaddr(%#x), bitmask(%#x)\n", regaddr, bitmask); in rtl92ee_phy_query_bb_reg()
71 bitshift = _rtl92ee_phy_calculate_bit_shift(bitmask); in rtl92ee_phy_query_bb_reg()
72 returnvalue = (originalvalue & bitmask) >> bitshift; in rtl92ee_phy_query_bb_reg()
76 bitmask, regaddr, originalvalue); in rtl92ee_phy_query_bb_reg()
82 u32 bitmask, u32 data) in rtl92ee_phy_set_bb_reg() argument
89 regaddr, bitmask, data); in rtl92ee_phy_set_bb_reg()
91 if (bitmask != MASKDWORD) { in rtl92ee_phy_set_bb_reg()
93 bitshift = _rtl92ee_phy_calculate_bit_shift(bitmask); in rtl92ee_phy_set_bb_reg()
[all …]
/linux-4.1.27/drivers/staging/rtl8712/
Drtl871x_mp.c209 static u32 bitshift(u32 bitmask) in bitshift() argument
214 if (((bitmask>>i) & 0x1) == 1) in bitshift()
219 static u32 get_bb_reg(struct _adapter *pAdapter, u16 offset, u32 bitmask) in get_bb_reg() argument
224 bit_shift = bitshift(bitmask); in get_bb_reg()
225 new_value = (org_value & bitmask) >> bit_shift; in get_bb_reg()
231 u32 bitmask, in set_bb_reg() argument
236 if (bitmask != bMaskDWord) { in set_bb_reg()
238 bit_shift = bitshift(bitmask); in set_bb_reg()
239 new_value = ((org_value & (~bitmask)) | (value << bit_shift)); in set_bb_reg()
246 u32 bitmask) in get_rf_reg() argument
[all …]
Drtl871x_mp.h261 u32 r8712_get_bb_reg(struct _adapter *Adapter, u16 offset, u32 bitmask);
263 u32 bitmask, u32 value);
265 u32 bitmask);
267 u32 bitmask, u32 value);
/linux-4.1.27/drivers/net/wireless/rtlwifi/rtl8192de/
Dphy.h129 u32 regaddr, u32 bitmask);
131 u32 regaddr, u32 bitmask, u32 data);
134 u32 bitmask);
137 u32 bitmask, u32 data);
Dphy.c189 static u32 _rtl92d_phy_calculate_bit_shift(u32 bitmask) in _rtl92d_phy_calculate_bit_shift() argument
194 if (((bitmask >> i) & 0x1) == 1) in _rtl92d_phy_calculate_bit_shift()
201 u32 rtl92d_phy_query_bb_reg(struct ieee80211_hw *hw, u32 regaddr, u32 bitmask) in rtl92d_phy_query_bb_reg() argument
208 regaddr, bitmask); in rtl92d_phy_query_bb_reg()
223 bitshift = _rtl92d_phy_calculate_bit_shift(bitmask); in rtl92d_phy_query_bb_reg()
224 returnvalue = (originalvalue & bitmask) >> bitshift; in rtl92d_phy_query_bb_reg()
227 bitmask, regaddr, originalvalue); in rtl92d_phy_query_bb_reg()
232 u32 regaddr, u32 bitmask, u32 data) in rtl92d_phy_set_bb_reg() argument
241 regaddr, bitmask, data); in rtl92d_phy_set_bb_reg()
247 if (bitmask != MASKDWORD) { in rtl92d_phy_set_bb_reg()
[all …]
/linux-4.1.27/include/linux/
Dnfs_xdr.h272 const u32 *bitmask; member
347 const u32 * bitmask; member
402 const u32 * bitmask; member
482 const u32 * bitmask; member
516 const u32 * bitmask; /* used by write */ member
539 const u32 *bitmask; member
637 const u32 * bitmask; member
842 const u32 * bitmask; member
871 const u32 * bitmask; member
887 const u32 * bitmask; member
[all …]
/linux-4.1.27/drivers/net/wireless/rtlwifi/rtl8192c/
Dphy_common.h189 u32 regaddr, u32 bitmask);
191 u32 regaddr, u32 bitmask, u32 data);
194 u32 bitmask);
225 u32 _rtl92c_phy_calculate_bit_shift(u32 bitmask);
250 u32 regaddr, u32 bitmask,
Dphy_common.c38 u32 rtl92c_phy_query_bb_reg(struct ieee80211_hw *hw, u32 regaddr, u32 bitmask) in rtl92c_phy_query_bb_reg() argument
44 regaddr, bitmask); in rtl92c_phy_query_bb_reg()
46 bitshift = _rtl92c_phy_calculate_bit_shift(bitmask); in rtl92c_phy_query_bb_reg()
47 returnvalue = (originalvalue & bitmask) >> bitshift; in rtl92c_phy_query_bb_reg()
51 bitmask, regaddr, originalvalue); in rtl92c_phy_query_bb_reg()
58 u32 regaddr, u32 bitmask, u32 data) in rtl92c_phy_set_bb_reg() argument
65 regaddr, bitmask, data); in rtl92c_phy_set_bb_reg()
67 if (bitmask != MASKDWORD) { in rtl92c_phy_set_bb_reg()
69 bitshift = _rtl92c_phy_calculate_bit_shift(bitmask); in rtl92c_phy_set_bb_reg()
70 data = ((originalvalue & (~bitmask)) | (data << bitshift)); in rtl92c_phy_set_bb_reg()
[all …]
/linux-4.1.27/drivers/net/wireless/rtlwifi/rtl8188ee/
Dphy.h201 u32 regaddr, u32 bitmask);
203 u32 regaddr, u32 bitmask, u32 data);
206 u32 bitmask);
209 u32 bitmask, u32 data);
Dphy.c41 static u32 _rtl88e_phy_calculate_bit_shift(u32 bitmask);
63 u32 rtl88e_phy_query_bb_reg(struct ieee80211_hw *hw, u32 regaddr, u32 bitmask) in rtl88e_phy_query_bb_reg() argument
69 "regaddr(%#x), bitmask(%#x)\n", regaddr, bitmask); in rtl88e_phy_query_bb_reg()
71 bitshift = _rtl88e_phy_calculate_bit_shift(bitmask); in rtl88e_phy_query_bb_reg()
72 returnvalue = (originalvalue & bitmask) >> bitshift; in rtl88e_phy_query_bb_reg()
75 "BBR MASK=0x%x Addr[0x%x]=0x%x\n", bitmask, in rtl88e_phy_query_bb_reg()
83 u32 regaddr, u32 bitmask, u32 data) in rtl88e_phy_set_bb_reg() argument
90 regaddr, bitmask, data); in rtl88e_phy_set_bb_reg()
92 if (bitmask != MASKDWORD) { in rtl88e_phy_set_bb_reg()
94 bitshift = _rtl88e_phy_calculate_bit_shift(bitmask); in rtl88e_phy_set_bb_reg()
[all …]
/linux-4.1.27/drivers/clk/shmobile/
Dclk-mstp.c60 u32 bitmask = BIT(clock->bit_index); in cpg_mstp_clock_endisable() local
69 value &= ~bitmask; in cpg_mstp_clock_endisable()
71 value |= bitmask; in cpg_mstp_clock_endisable()
80 if (!(clk_readl(group->mstpsr) & bitmask)) in cpg_mstp_clock_endisable()
/linux-4.1.27/drivers/net/wireless/rtlwifi/rtl8821ae/
Dphy.h209 u32 regaddr, u32 bitmask);
211 u32 regaddr, u32 bitmask, u32 data);
214 u32 bitmask);
217 u32 bitmask, u32 data);
Dphy.c52 static u32 _rtl8821ae_phy_calculate_bit_shift(u32 bitmask);
116 u32 bitmask) in rtl8821ae_phy_query_bb_reg() argument
123 regaddr, bitmask); in rtl8821ae_phy_query_bb_reg()
125 bitshift = _rtl8821ae_phy_calculate_bit_shift(bitmask); in rtl8821ae_phy_query_bb_reg()
126 returnvalue = (originalvalue & bitmask) >> bitshift; in rtl8821ae_phy_query_bb_reg()
130 bitmask, regaddr, originalvalue); in rtl8821ae_phy_query_bb_reg()
135 u32 regaddr, u32 bitmask, u32 data) in rtl8821ae_phy_set_bb_reg() argument
142 regaddr, bitmask, data); in rtl8821ae_phy_set_bb_reg()
144 if (bitmask != MASKDWORD) { in rtl8821ae_phy_set_bb_reg()
146 bitshift = _rtl8821ae_phy_calculate_bit_shift(bitmask); in rtl8821ae_phy_set_bb_reg()
[all …]
/linux-4.1.27/drivers/staging/rtl8188eu/include/
Dphy.h12 u32 phy_query_bb_reg(struct adapter *adapt, u32 regaddr, u32 bitmask);
13 void phy_set_bb_reg(struct adapter *adapt, u32 regaddr, u32 bitmask, u32 data);
/linux-4.1.27/drivers/pinctrl/nomadik/
Dpinctrl-nomadik.c664 u32 bitmask = nmk_gpio_get_bitmask(gpio); in __nmk_gpio_irq_modify() local
683 if (nmk_chip->edge_rising & bitmask) { in __nmk_gpio_irq_modify()
685 *rimscval |= bitmask; in __nmk_gpio_irq_modify()
687 *rimscval &= ~bitmask; in __nmk_gpio_irq_modify()
690 if (nmk_chip->edge_falling & bitmask) { in __nmk_gpio_irq_modify()
692 *fimscval |= bitmask; in __nmk_gpio_irq_modify()
694 *fimscval &= ~bitmask; in __nmk_gpio_irq_modify()
719 u32 bitmask; in nmk_gpio_irq_maskunmask() local
722 bitmask = nmk_gpio_get_bitmask(d->hwirq); in nmk_gpio_irq_maskunmask()
732 if (!(nmk_chip->real_wake & bitmask)) in nmk_gpio_irq_maskunmask()
[all …]
/linux-4.1.27/drivers/mfd/
Dtps6105x.c66 u8 bitmask, u8 bitvalues) in tps6105x_mask_and_set() argument
78 regval = (~bitmask & regval) | (bitmask & bitvalues); in tps6105x_mask_and_set()
Dabx500-core.c105 u8 reg, u8 bitmask, u8 bitvalues) in abx500_mask_and_set_register_interruptible() argument
112 reg, bitmask, bitvalues); in abx500_mask_and_set_register_interruptible()
Dab3100-core.c349 u8 reg, u8 bitmask, u8 bitvalues) in mask_and_set_register_interruptible() argument
354 reg, bitmask, (bitmask & bitvalues)); in mask_and_set_register_interruptible()
Dab8500-core.c278 u8 reg, u8 bitmask, u8 bitvalues) in mask_and_set_register_interruptible() argument
298 data = (~bitmask & data) | (bitmask & bitvalues); in mask_and_set_register_interruptible()
309 ret = ab8500->write_masked(ab8500, addr, bitmask, bitvalues); in mask_and_set_register_interruptible()
319 u8 bank, u8 reg, u8 bitmask, u8 bitvalues) in ab8500_mask_and_set_register() argument
326 bitmask, bitvalues); in ab8500_mask_and_set_register()
Dtwl4030-power.c618 static int twl4030_starton_mask_and_set(u8 bitmask, u8 bitvalues) in twl4030_starton_mask_and_set() argument
641 val = (~bitmask & val) | (bitmask & bitvalues); in twl4030_starton_mask_and_set()
/linux-4.1.27/drivers/tty/serial/
Dsccnxp.c341 u8 bitmask; in sccnxp_set_bit() local
345 bitmask = 1 << MCTRL_OBIT(s->pdata.mctrl_cfg[port->line], sig); in sccnxp_set_bit()
347 sccnxp_write(port, SCCNXP_SOP_REG, bitmask); in sccnxp_set_bit()
349 sccnxp_write(port, SCCNXP_ROP_REG, bitmask); in sccnxp_set_bit()
554 u8 bitmask, ipr; in sccnxp_get_mctrl() local
567 bitmask = 1 << MCTRL_IBIT(s->pdata.mctrl_cfg[port->line], in sccnxp_get_mctrl()
570 mctrl |= (ipr & bitmask) ? TIOCM_DSR : 0; in sccnxp_get_mctrl()
573 bitmask = 1 << MCTRL_IBIT(s->pdata.mctrl_cfg[port->line], in sccnxp_get_mctrl()
576 mctrl |= (ipr & bitmask) ? TIOCM_CTS : 0; in sccnxp_get_mctrl()
579 bitmask = 1 << MCTRL_IBIT(s->pdata.mctrl_cfg[port->line], in sccnxp_get_mctrl()
[all …]
/linux-4.1.27/drivers/video/fbdev/
Darcfb.c254 unsigned char bitmask, rightshift; in arcfb_lcd_update_page() local
267 bitmask=1; in arcfb_lcd_update_page()
273 val |= (*(src + (i*linesize)) & bitmask) in arcfb_lcd_update_page()
276 val |= (*(src + (i*linesize)) & bitmask) in arcfb_lcd_update_page()
282 if (bitmask == 0x80) { in arcfb_lcd_update_page()
283 bitmask = 1; in arcfb_lcd_update_page()
287 bitmask <<= 1; in arcfb_lcd_update_page()
/linux-4.1.27/Documentation/devicetree/bindings/mipi/
Dnvidia,tegra114-mipi.txt10 - #nvidia,mipi-calibrate-cells: Should be 1. The cell is a bitmask of the pads
14 phandle to refer to the calibration controller node and a bitmask of the pads
/linux-4.1.27/drivers/net/wireless/rtlwifi/rtl8723be/
Dphy.h109 u32 regaddr, u32 bitmask);
112 u32 regaddr, u32 bitmask, u32 data);
Dphy.c53 u32 regaddr, u32 bitmask) in rtl8723be_phy_query_rf_reg() argument
61 regaddr, rfpath, bitmask); in rtl8723be_phy_query_rf_reg()
66 bitshift = rtl8723_phy_calculate_bit_shift(bitmask); in rtl8723be_phy_query_rf_reg()
67 readback_value = (original_value & bitmask) >> bitshift; in rtl8723be_phy_query_rf_reg()
73 regaddr, rfpath, bitmask, original_value); in rtl8723be_phy_query_rf_reg()
79 u32 regaddr, u32 bitmask, u32 data) in rtl8723be_phy_set_rf_reg() argument
87 regaddr, bitmask, data, path); in rtl8723be_phy_set_rf_reg()
91 if (bitmask != RFREG_OFFSET_MASK) { in rtl8723be_phy_set_rf_reg()
94 bitshift = rtl8723_phy_calculate_bit_shift(bitmask); in rtl8723be_phy_set_rf_reg()
95 data = ((original_value & (~bitmask)) | in rtl8723be_phy_set_rf_reg()
[all …]
/linux-4.1.27/arch/cris/arch-v32/drivers/
DKconfig205 This is a bitmask (8 bits) with information of what bits in PA that a
216 This is a bitmask (8 bits) with information of what bits in PA
226 This is a bitmask (18 bits) with information of what bits in PB
237 This is a bitmask (18 bits) with information of what bits in PB
247 This is a bitmask (18 bits) with information of what bits in PC
258 This is a bitmask (18 bits) with information of what bits in PC
267 This is a bitmask (18 bits) with information of what bits in PD
277 This is a bitmask (18 bits) with information of what bits in PD
286 This is a bitmask (18 bits) with information of what bits in PE
296 This is a bitmask (18 bits) with information of what bits in PE
[all …]
/linux-4.1.27/Documentation/
DIRQ-affinity.txt8 which target CPUs are permitted for a given IRQ source. It's a bitmask
14 to all non-active IRQs. Once IRQ is allocated/activated its affinity bitmask
64 Note that to do this with a bitmask would require 32 bitmasks of zero
Datomic_ops.txt421 We will now cover the atomic bitmask operations. You will find that
484 Which returns a boolean indicating if bit "nr" is set in the bitmask
522 Finally, there are non-atomic versions of the bitmask operations
524 locking scheme is being used to protect the bitmask, and thus less
526 They have names similar to the above bitmask operation interfaces,
Dsysrq.txt19 >1 - bitmask of allowed sysrq functions (see below for detailed function
Dparport-lowlevel.txt1007 Reads from the status register. This is a bitmask:
1058 Writes to the control register. This is a bitmask:
D00-INDEX83 - semantics and behavior of atomic and bitmask operations.
DIPMI.txt330 specify a bitmask of the channels you want to receive the command from
/linux-4.1.27/drivers/net/ethernet/mellanox/mlx5/core/
Dpagealloc.c64 unsigned long bitmask; member
134 set_bit(i, &nfp->bitmask); in insert_page()
199 n = find_first_bit(&fp->bitmask, 8 * sizeof(fp->bitmask)); in alloc_4k()
204 clear_bit(n, &fp->bitmask); in alloc_4k()
229 set_bit(n, &fwp->bitmask); in free_4k()
Dcmd.c143 ret = find_first_bit(&cmd->bitmask, cmd->max_reg_cmds); in alloc_ent()
145 clear_bit(ret, &cmd->bitmask); in alloc_ent()
156 set_bit(idx, &cmd->bitmask); in free_ent()
1410 cmd->bitmask = (1 << cmd->max_reg_cmds) - 1; in mlx5_cmd_init()
/linux-4.1.27/net/netlabel/
Dnetlabel_kapi.c540 NETLBL_CATMAP_MAPTYPE bitmask; in netlbl_catmap_walkrng() local
554 bitmask = NETLBL_CATMAP_BIT << bit; in netlbl_catmap_walkrng()
558 while (bitmask != 0 && (bitmap & bitmask) != 0) { in netlbl_catmap_walkrng()
559 bitmask <<= 1; in netlbl_catmap_walkrng()
565 else if (bitmask != 0) in netlbl_catmap_walkrng()
575 bitmask = NETLBL_CATMAP_BIT; in netlbl_catmap_walkrng()
/linux-4.1.27/drivers/net/wireless/rtlwifi/rtl8723ae/
Dphy.c57 u32 regaddr, u32 bitmask) in rtl8723e_phy_query_rf_reg() argument
66 regaddr, rfpath, bitmask); in rtl8723e_phy_query_rf_reg()
75 bitshift = rtl8723_phy_calculate_bit_shift(bitmask); in rtl8723e_phy_query_rf_reg()
76 readback_value = (original_value & bitmask) >> bitshift; in rtl8723e_phy_query_rf_reg()
82 regaddr, rfpath, bitmask, original_value); in rtl8723e_phy_query_rf_reg()
89 u32 regaddr, u32 bitmask, u32 data) in rtl8723e_phy_set_rf_reg() argument
98 regaddr, bitmask, data, rfpath); in rtl8723e_phy_set_rf_reg()
103 if (bitmask != RFREG_OFFSET_MASK) { in rtl8723e_phy_set_rf_reg()
107 bitshift = rtl8723_phy_calculate_bit_shift(bitmask); in rtl8723e_phy_set_rf_reg()
109 ((original_value & (~bitmask)) | in rtl8723e_phy_set_rf_reg()
[all …]
Dphy.h171 u32 bitmask);
174 u32 bitmask, u32 data);
/linux-4.1.27/Documentation/video4linux/cx2341x/
DREADME.vbi18 for a bitmask determining which lines are captured and 4 bytes for a magic cookie,
20 If all lines are used, then there is no longer room for the bitmask. To solve this
31 After these magic cookies (and the 8 byte bitmask in case of cookie 'itv0') the
Dfw-decoder-api.txt187 Version bitmask:
Dfw-encoder-api.txt368 Version bitmask:
/linux-4.1.27/drivers/staging/rtl8188eu/hal/
Dhal_intf.c260 u32 regaddr, u32 bitmask) in rtw_hal_read_rfreg() argument
266 bitmask); in rtw_hal_read_rfreg()
271 u32 regaddr, u32 bitmask, u32 data) in rtw_hal_write_rfreg() argument
275 bitmask, data); in rtw_hal_write_rfreg()
Dbb_cfg.c511 static void store_pwrindex_offset(struct adapter *Adapter, u32 regaddr, u32 bitmask, u32 data) in store_pwrindex_offset() argument
522 if (regaddr == rTxAGC_B_CCK11_A_CCK2_11 && bitmask == 0xffffff00) in store_pwrindex_offset()
541 if (regaddr == rTxAGC_B_CCK11_A_CCK2_11 && bitmask == 0x000000ff) in store_pwrindex_offset()
Dphy.c35 static u32 cal_bit_shift(u32 bitmask) in cal_bit_shift() argument
40 if (((bitmask >> i) & 0x1) == 1) in cal_bit_shift()
46 u32 phy_query_bb_reg(struct adapter *adapt, u32 regaddr, u32 bitmask) in phy_query_bb_reg() argument
51 bit_shift = cal_bit_shift(bitmask); in phy_query_bb_reg()
52 return_value = (original_value & bitmask) >> bit_shift; in phy_query_bb_reg()
56 void phy_set_bb_reg(struct adapter *adapt, u32 regaddr, u32 bitmask, u32 data) in phy_set_bb_reg() argument
60 if (bitmask != bMaskDWord) { /* if not "double word" write */ in phy_set_bb_reg()
62 bit_shift = cal_bit_shift(bitmask); in phy_set_bb_reg()
63 data = (original_value & (~bitmask)) | (data << bit_shift); in phy_set_bb_reg()
/linux-4.1.27/drivers/isdn/i4l/
Disdn_audio.c296 static int bitmask[9] = variable
311 return (s->word >> s->nleft) & bitmask[s->nbits]; in isdn_audio_get_bits()
318 s->word = (s->word << nbits) | (data & bitmask[nbits]); in isdn_audio_put_bits()
376 e &= bitmask[nbits - 1]; in isdn_audio_adpcm2xlaw()
426 e &= bitmask[nbits - 1]; in isdn_audio_xlaw2adpcm()
/linux-4.1.27/drivers/usb/host/
Dbcma-hcd.c41 static int bcma_wait_bits(struct bcma_device *dev, u16 reg, u32 bitmask, in bcma_wait_bits() argument
49 if ((val & bitmask) == bitmask) in bcma_wait_bits()
/linux-4.1.27/net/ipv4/
Dcipso_ipv4.c156 unsigned char bitmask; in cipso_v4_bitmap_walk() local
163 bitmask = 0x80 >> (offset % 8); in cipso_v4_bitmap_walk()
166 if ((state && (byte & bitmask) == bitmask) || in cipso_v4_bitmap_walk()
167 (state == 0 && (byte & bitmask) == 0)) in cipso_v4_bitmap_walk()
171 bitmask >>= 1; in cipso_v4_bitmap_walk()
172 if (bitmask == 0) { in cipso_v4_bitmap_walk()
174 bitmask = 0x80; in cipso_v4_bitmap_walk()
196 u8 bitmask; in cipso_v4_bitmap_setbit() local
200 bitmask = 0x80 >> (bit % 8); in cipso_v4_bitmap_setbit()
202 bitmap[byte_spot] |= bitmask; in cipso_v4_bitmap_setbit()
[all …]
/linux-4.1.27/include/uapi/linux/netfilter_bridge/
Debt_mark_m.h12 __u8 bitmask; member
Debt_log.h17 __u32 bitmask; member
Debt_vlan.h16 __u8 bitmask; /* Args bitmask bit 1=1 - ID arg, member
Debtables.h157 unsigned int bitmask; member
254 if (__entry->bitmask != 0) \
Debt_ip.h38 __u8 bitmask; member
Debt_ip6.h38 __u8 bitmask; member
Debt_arp.h32 __u8 bitmask; member
Debt_among.h51 int bitmask; member
Debt_stp.h42 __u16 bitmask; member
Debt_802_3.h59 __u8 bitmask; member
/linux-4.1.27/include/uapi/linux/netfilter/
Dxt_physdev.h20 __u8 bitmask; member
Dxt_ipvs.h26 __u8 bitmask; member
/linux-4.1.27/drivers/media/pci/cx23885/
Dcx23885-cards.c1224 u32 bitmask = 0; in cx23885_tuner_callback() local
1246 bitmask = 0x04; in cx23885_tuner_callback()
1254 bitmask = 0x01; in cx23885_tuner_callback()
1256 bitmask = 0x04; in cx23885_tuner_callback()
1260 bitmask = 0x02; in cx23885_tuner_callback()
1267 bitmask = 1 << 2; in cx23885_tuner_callback()
1271 if (bitmask) { in cx23885_tuner_callback()
1273 cx_clear(GP0_IO, bitmask); in cx23885_tuner_callback()
1275 cx_set(GP0_IO, bitmask); in cx23885_tuner_callback()
/linux-4.1.27/fs/nfs/
Dnfs4xdr.c1219 static void encode_getfattr(struct xdr_stream *xdr, const u32* bitmask, struct compound_hdr *hdr) in encode_getfattr() argument
1221 encode_getattr_three(xdr, bitmask[0] & nfs4_fattr_bitmap[0], in encode_getfattr()
1222 bitmask[1] & nfs4_fattr_bitmap[1], in encode_getfattr()
1223 bitmask[2] & nfs4_fattr_bitmap[2], in encode_getfattr()
1227 static void encode_getfattr_open(struct xdr_stream *xdr, const u32 *bitmask, in encode_getfattr_open() argument
1232 bitmask[0] & open_bitmap[0], in encode_getfattr_open()
1233 bitmask[1] & open_bitmap[1], in encode_getfattr_open()
1234 bitmask[2] & open_bitmap[2], in encode_getfattr_open()
1238 static void encode_fsinfo(struct xdr_stream *xdr, const u32* bitmask, struct compound_hdr *hdr) in encode_fsinfo() argument
1241 bitmask[0] & nfs4_fsinfo_bitmap[0], in encode_fsinfo()
[all …]
Dnfs4proc.c1048 p->o_arg.bitmask = nfs4_bitmask(server, label); in nfs4_opendata_alloc()
2529 .bitmask = server->attr_bitmask, in _nfs4_do_setattr()
2548 arg.bitmask = nfs4_bitmask(server, ilabel); in _nfs4_do_setattr()
2550 arg.bitmask = nfs4_bitmask(server, olabel); in _nfs4_do_setattr()
2820 calldata->arg.bitmask = server->cache_consistency_bitmask; in nfs4_do_close()
2970 u32 bitmask[3]; in _nfs4_lookup_root() local
2972 .bitmask = bitmask, in _nfs4_lookup_root()
2985 bitmask[0] = nfs4_fattr_bitmap[0]; in _nfs4_lookup_root()
2986 bitmask[1] = nfs4_fattr_bitmap[1]; in _nfs4_lookup_root()
2990 bitmask[2] = nfs4_fattr_bitmap[2] & ~FATTR4_WORD2_SECURITY_LABEL; in _nfs4_lookup_root()
[all …]
Dpnfs.c2201 data->args.bitmask = NFS_SERVER(inode)->cache_consistency_bitmask; in pnfs_layoutcommit_inode()
/linux-4.1.27/arch/alpha/lib/
Dev67-strlen.S34 cmpbge $31, $1, $2 # E : $2 <- bitmask: bit i == 1 <==> i-th byte == 0
Dstrlen.S29 cmpbge $31, $1, $2 # $2 <- bitmask: bit i == 1 <==> i-th byte == 0
Dstxncpy.S129 sll t10, t2, t10 # e0 : t10 = bitmask of last count byte
331 negq t8, t6 # .. e1 : build bitmask of bytes <= zero
Dev6-stxncpy.S163 sll t10, t2, t10 # U : t10 = bitmask of last count byte
379 negq t8, t6 # E : build bitmask of bytes <= zero
Dstxcpy.S272 negq t8, t6 # .. e1 : build bitmask of bytes <= zero
Dev6-stxcpy.S301 negq t8, t6 # E : build bitmask of bytes <= zero
/linux-4.1.27/Documentation/devicetree/bindings/gpio/
Dgpio-stmpe.txt8 - st,norequest-mask: bitmask specifying which GPIOs should _not_ be requestable
/linux-4.1.27/tools/power/cpupower/
DToDo3 - Use bitmask functions to parse CPU topology more robust
/linux-4.1.27/drivers/block/drbd/
DKconfig53 enable_faults: bitmask of...
65 fault_devs: bitmask of minor numbers
/linux-4.1.27/Documentation/devicetree/bindings/clock/
Dkeystone-pll.txt48 - bit-mask : arbitrary bitmask for programming the mux
70 - bit-mask : arbitrary bitmask for programming the divider
/linux-4.1.27/include/linux/mfd/
Dtps6105x.h99 u8 bitmask, u8 bitvalues);
Dabx500.h329 u8 reg, u8 bitmask, u8 bitvalues);
/linux-4.1.27/Documentation/devicetree/bindings/c6x/
Dtimer64.txt17 - ti,core-mask: on multi-core SoCs, bitmask of cores allowed to use this timer.
Ddscr.txt41 offset and bitmask of RMII reset field. May have multiple tuples if more
/linux-4.1.27/Documentation/hwmon/
Dw83791d85 alarm is triggered as well as a bitmask to enable or disable the beep for
92 The sysfs interface to the beep bitmask has migrated from the original legacy
103 the other. If you use the legacy bitmask method, your user-space code is
135 Alarms bitmap vs. beep_mask bitmask
Dlm93162 #PROCHOT 1 & 2, and #VRDHOT 1 & 2. The bindings are expressed as a bitmask
256 All eight GPIOs are read by reading the bitmask in the sysfs file gpio. The
Dsysfs-interface669 alarms Alarm bitmask.
/linux-4.1.27/Documentation/ABI/testing/
Dsysfs-bus-event_source-devices-format8 Each attribute of this group defines the 'hardware' bitmask
Dsysfs-class-net-mesh75 Defines the isolation mark (and its bitmask) which
Dsysfs-class-net108 Indicates the interface flags as a bitmask in hexadecimal. See
/linux-4.1.27/drivers/media/usb/em28xx/
Dem28xx-core.c216 u8 bitmask) in em28xx_write_reg_bits() argument
225 newval = (((u8)oldval) & ~bitmask) | (val & bitmask); in em28xx_write_reg_bits()
235 int em28xx_toggle_reg_bits(struct em28xx *dev, u16 reg, u8 bitmask) in em28xx_toggle_reg_bits() argument
244 newval = (~oldval & bitmask) | (oldval & ~bitmask); in em28xx_toggle_reg_bits()
Dem28xx.h750 u8 bitmask);
751 int em28xx_toggle_reg_bits(struct em28xx *dev, u16 reg, u8 bitmask);
/linux-4.1.27/Documentation/devicetree/bindings/crypto/
Dfsl-sec2.txt13 - fsl,exec-units-mask : The bitmask representing what execution units
31 - fsl,descriptor-types-mask : The bitmask representing what descriptors
/linux-4.1.27/drivers/pwm/
Dpwm-vt8500.c67 static inline void pwm_busy_wait(struct vt8500_chip *vt8500, int nr, u8 bitmask) in pwm_busy_wait() argument
70 u32 mask = bitmask << (nr << 8); in pwm_busy_wait()
/linux-4.1.27/drivers/net/wireless/rtlwifi/
Dwifi.h2149 u32 (*get_bbreg) (struct ieee80211_hw *hw, u32 regaddr, u32 bitmask);
2150 void (*set_bbreg) (struct ieee80211_hw *hw, u32 regaddr, u32 bitmask,
2153 u32 regaddr, u32 bitmask);
2155 u32 regaddr, u32 bitmask, u32 data);
2935 u32 regaddr, u32 bitmask) in rtl_get_bbreg() argument
2939 return rtlpriv->cfg->ops->get_bbreg(hw, regaddr, bitmask); in rtl_get_bbreg()
2943 u32 bitmask, u32 data) in rtl_set_bbreg() argument
2947 rtlpriv->cfg->ops->set_bbreg(hw, regaddr, bitmask, data); in rtl_set_bbreg()
2952 u32 bitmask) in rtl_get_rfreg() argument
2956 return rtlpriv->cfg->ops->get_rfreg(hw, rfpath, regaddr, bitmask); in rtl_get_rfreg()
[all …]
/linux-4.1.27/Documentation/devicetree/bindings/dma/
Dnbpfaxi.txt18 slave is connected, the second one is flags. Flags is a bitmask
/linux-4.1.27/Documentation/x86/x86_64/
Dmachinecheck27 64bit Hex bitmask enabling/disabling specific subevents for bank N
28 When a bit in the bitmask is zero then the respective
/linux-4.1.27/drivers/staging/comedi/drivers/
Dadv_pci_dio.c614 unsigned char bitmask = 1 << chan; in pci1760_insn_cnt_write() local
631 omb[0] = bitmask; /* reset counter to it reset value */ in pci1760_insn_cnt_write()
638 if (!(bitmask & devpriv->IDICntEnable)) { in pci1760_insn_cnt_write()
639 omb[0] = bitmask; in pci1760_insn_cnt_write()
644 devpriv->IDICntEnable |= bitmask; in pci1760_insn_cnt_write()
/linux-4.1.27/Documentation/devicetree/bindings/bus/
Dbrcm,gisb-arb.txt18 - brcm,gisb-arb-master-mask: 32-bits wide bitmask used to specify which GISB
/linux-4.1.27/drivers/i2c/busses/
Di2c-eg20t.c195 static inline void pch_setbit(void __iomem *addr, u32 offset, u32 bitmask) in pch_setbit() argument
199 val |= bitmask; in pch_setbit()
203 static inline void pch_clrbit(void __iomem *addr, u32 offset, u32 bitmask) in pch_clrbit() argument
207 val &= (~bitmask); in pch_clrbit()
/linux-4.1.27/drivers/net/ethernet/toshiba/
Dspider_net.c607 unsigned long bitmask[SPIDER_NET_MULTICAST_HASHES / BITS_PER_LONG] = in spider_net_set_multi() local
614 set_bit(i, bitmask); in spider_net_set_multi()
621 set_bit(0xfd, bitmask); in spider_net_set_multi()
625 set_bit(hash, bitmask); in spider_net_set_multi()
631 if (test_bit(i * 4, bitmask)) in spider_net_set_multi()
634 if (test_bit(i * 4 + 1, bitmask)) in spider_net_set_multi()
637 if (test_bit(i * 4 + 2, bitmask)) in spider_net_set_multi()
640 if (test_bit(i * 4 + 3, bitmask)) in spider_net_set_multi()
/linux-4.1.27/Documentation/devicetree/bindings/powerpc/fsl/
Dcpus.txt32 snooped. This property defines a bitmask which selects the bit
Dpamu.txt44 a bitmask which selects the bits that should be set if
/linux-4.1.27/arch/x86/kvm/
Dpmu.c561 u64 bitmask; in kvm_handle_pmu_event() local
564 bitmask = pmu->reprogram_pmi; in kvm_handle_pmu_event()
566 for_each_set_bit(bit, (unsigned long *)&bitmask, X86_PMC_IDX_MAX) { in kvm_handle_pmu_event()
Dvmx.c518 u32 bitmask; /* 4 bits per segment (1 bit per field) */ member
1511 vmx->segment_cache.bitmask = 0; in vmx_segment_cache_clear()
1522 vmx->segment_cache.bitmask = 0; in vmx_segment_cache_test_set()
1524 ret = vmx->segment_cache.bitmask & mask; in vmx_segment_cache_test_set()
1525 vmx->segment_cache.bitmask |= mask; in vmx_segment_cache_test_set()
/linux-4.1.27/sound/pci/ac97/
Dac97_codec.c476 unsigned short val, bitmask; in snd_ac97_get_enum_double() local
478 for (bitmask = 1; bitmask < e->mask; bitmask <<= 1) in snd_ac97_get_enum_double()
481 ucontrol->value.enumerated.item[0] = (val >> e->shift_l) & (bitmask - 1); in snd_ac97_get_enum_double()
483 ucontrol->value.enumerated.item[1] = (val >> e->shift_r) & (bitmask - 1); in snd_ac97_get_enum_double()
494 unsigned short mask, bitmask; in snd_ac97_put_enum_double() local
496 for (bitmask = 1; bitmask < e->mask; bitmask <<= 1) in snd_ac97_put_enum_double()
501 mask = (bitmask - 1) << e->shift_l; in snd_ac97_put_enum_double()
506 mask |= (bitmask - 1) << e->shift_r; in snd_ac97_put_enum_double()
/linux-4.1.27/tools/power/cpupower/utils/
Dcpupower.c35 struct bitmask *cpus_chosen;
/linux-4.1.27/drivers/ssb/
Dmain.c1204 static int ssb_wait_bits(struct ssb_device *dev, u16 reg, u32 bitmask, in ssb_wait_bits() argument
1213 if ((val & bitmask) == bitmask) in ssb_wait_bits()
1216 if (!(val & bitmask)) in ssb_wait_bits()
1223 bitmask, reg, (set ? "set" : "clear")); in ssb_wait_bits()
/linux-4.1.27/Documentation/devicetree/bindings/net/
Dmdio-mux-mmioreg.txt25 A bitmask of 0x6 means that bits 1 and 2 (bit 0 is lsb) are the bits on
/linux-4.1.27/drivers/media/pci/bt8xx/
Dbttv-cards.c4689 int bitmask; in PXC200_muxsel() local
4720 bitmask=0x302; in PXC200_muxsel()
4723 bitmask ^= 0x180; /* use 7 and 9, not 8 and 9 */ in PXC200_muxsel()
4724 bitmask |= 7<<4; /* the DAC */ in PXC200_muxsel()
4726 btwrite(bitmask, BT848_GPIO_OUT_EN); in PXC200_muxsel()
4728 bitmask = btread(BT848_GPIO_DATA); in PXC200_muxsel()
4730 bitmask = (bitmask & ~0x280) | ((mux & 2) << 8) | ((mux & 1) << 7); in PXC200_muxsel()
4732 bitmask = (bitmask & ~0x300) | ((mux & 3) << 8); in PXC200_muxsel()
4733 btwrite(bitmask,BT848_GPIO_DATA); in PXC200_muxsel()
/linux-4.1.27/arch/ia64/kernel/
Dunaligned.c455 unsigned long bitmask; in setreg() local
495 bitmask = 1UL << (addr >> 3 & 0x3f); in setreg()
498 *unat |= bitmask; in setreg()
500 *unat &= ~bitmask; in setreg()
/linux-4.1.27/drivers/memory/
Domap-gpmc.c204 u32 bitmask; member
1110 if (gpmc_client_irq[i].bitmask & irq_config) in gpmc_get_client_irq()
1125 regval |= gpmc_client_irq[i].bitmask; in gpmc_irq_endis()
1127 regval &= ~gpmc_client_irq[i].bitmask; in gpmc_irq_endis()
1172 gpmc_client_irq[0].bitmask = GPMC_IRQ_FIFOEVENTENABLE; in gpmc_setup_irq()
1173 gpmc_client_irq[1].bitmask = GPMC_IRQ_COUNT_EVENT; in gpmc_setup_irq()
2240 if (regval & gpmc_client_irq[i].bitmask) in gpmc_handle_irq()
/linux-4.1.27/drivers/ata/
Dpata_amd.c156 static const u32 bitmask[2] = {0x03, 0x0C}; in amd_cable_detect() local
161 if (ata66 & bitmask[ap->port_no]) in amd_cable_detect()
/linux-4.1.27/drivers/gpu/drm/
Ddrm_dp_mst_topology.c70 u8 bitmask = 0x80; in drm_dp_msg_header_crc4() local
79 remainder |= (data[array_index] & bitmask) >> bitshift; in drm_dp_msg_header_crc4()
80 bitmask >>= 1; in drm_dp_msg_header_crc4()
82 if (bitmask == 0) { in drm_dp_msg_header_crc4()
83 bitmask = 0x80; in drm_dp_msg_header_crc4()
104 u8 bitmask = 0x80; in drm_dp_msg_data_crc4() local
113 remainder |= (data[array_index] & bitmask) >> bitshift; in drm_dp_msg_data_crc4()
114 bitmask >>= 1; in drm_dp_msg_data_crc4()
116 if (bitmask == 0) { in drm_dp_msg_data_crc4()
117 bitmask = 0x80; in drm_dp_msg_data_crc4()
/linux-4.1.27/drivers/usb/gadget/udc/
Dpch_udc.c436 unsigned long bitmask) in pch_udc_bit_set() argument
438 pch_udc_writel(dev, pch_udc_readl(dev, reg) | bitmask, reg); in pch_udc_bit_set()
443 unsigned long bitmask) in pch_udc_bit_clr() argument
445 pch_udc_writel(dev, pch_udc_readl(dev, reg) & ~(bitmask), reg); in pch_udc_bit_clr()
461 unsigned long bitmask) in pch_udc_ep_bit_set() argument
463 pch_udc_ep_writel(ep, pch_udc_ep_readl(ep, reg) | bitmask, reg); in pch_udc_ep_bit_set()
468 unsigned long bitmask) in pch_udc_ep_bit_clr() argument
470 pch_udc_ep_writel(ep, pch_udc_ep_readl(ep, reg) & ~(bitmask), reg); in pch_udc_ep_bit_clr()
Dfsl_udc_core.c729 u32 temp, bitmask, tmp_stat; in fsl_queue_td() local
734 bitmask = ep_is_in(ep) in fsl_queue_td()
748 if (fsl_readl(&dr_regs->endpointprime) & bitmask) in fsl_queue_td()
757 tmp_stat = fsl_readl(&dr_regs->endptstatus) & bitmask; in fsl_queue_td()
1056 u32 bitmask; in fsl_ep_fifo_status() local
1070 bitmask = (ep_is_in(ep)) ? (1 << (ep_index(ep) + 16)) : in fsl_ep_fifo_status()
1073 if (fsl_readl(&dr_regs->endptstatus) & bitmask) in fsl_ep_fifo_status()
/linux-4.1.27/Documentation/arm/Samsung-S3C24XX/
DUSB-Host.txt76 an port. The ports argument is a bitmask of 1 bit per port,
/linux-4.1.27/arch/cris/arch-v10/drivers/
DKconfig525 This is a bitmask with information of what bits in PA that a user
535 This is a bitmask with information of what bits in PA that a user
545 This is a bitmask with information of what bits in PB that a user
555 This is a bitmask with information of what bits in PB that a user
/linux-4.1.27/arch/mips/include/asm/octeon/
Dcvmx-lmcx-defs.h2629 uint64_t bitmask:16; member
2635 uint64_t bitmask:16;
2715 uint64_t bitmask:8; member
2725 uint64_t bitmask:8;
2758 uint64_t bitmask:64; member
2760 uint64_t bitmask:64;
3250 uint64_t bitmask:8; member
3258 uint64_t bitmask:8;
3287 uint64_t bitmask:8; member
3291 uint64_t bitmask:8;
/linux-4.1.27/Documentation/powerpc/
Dcpu_features.txt16 is assigned to the feature bitmask for this processor and a __setup_cpu
Dptrace.txt34 uint64_t features; /* bitmask of the individual flags */
/linux-4.1.27/Documentation/devicetree/bindings/timer/
Drenesas,cmt.txt62 - renesas,channels-mask: bitmask of the available channels.
/linux-4.1.27/drivers/staging/panel/
Dpanel.c1743 char bitmask; in phys_scan_contacts() local
1756 bitmask = PNL_PINPUT(r_str(pprt)) & scan_mask_i; in phys_scan_contacts()
1770 if (bitmask != gndmask) { in phys_scan_contacts()
1782 bitmask = PNL_PINPUT(r_str(pprt)) & ~gndmask; in phys_scan_contacts()
1783 phys_read |= (pmask_t) bitmask << (5 * bit); in phys_scan_contacts()
/linux-4.1.27/tools/lib/traceevent/
Devent-parse.h218 char *bitmask; member
311 struct print_arg_bitmask bitmask; member
Devent-parse.c783 free(arg->bitmask.bitmask); in free_arg()
2760 arg->bitmask.bitmask = token; in process_bitmask()
2761 arg->bitmask.offset = -1; in process_bitmask()
3919 if (arg->bitmask.offset == -1) { in print_str_arg()
3922 f = pevent_find_any_field(event, arg->bitmask.bitmask); in print_str_arg()
3923 arg->bitmask.offset = f->offset; in print_str_arg()
3925 bitmask_offset = data2host4(pevent, data + arg->bitmask.offset); in print_str_arg()
5493 printf("__get_bitmask(%s)", args->bitmask.bitmask); in print_args()
/linux-4.1.27/drivers/platform/x86/
Dsony-laptop.c1315 unsigned int i, result, bitmask, arg; in sony_nc_function_setup() local
1437 if (!sony_nc_int_call(sony_nc_acpi_handle, "SN00", &arg, &bitmask)) in sony_nc_function_setup()
1438 sony_nc_int_call(sony_nc_acpi_handle, "SN02", &bitmask, in sony_nc_function_setup()
1444 unsigned int i, result, bitmask, handle; in sony_nc_function_cleanup() local
1447 sony_nc_int_call(sony_nc_acpi_handle, "SN01", NULL, &bitmask); in sony_nc_function_cleanup()
1448 sony_nc_int_call(sony_nc_acpi_handle, "SN03", &bitmask, &result); in sony_nc_function_cleanup()
1521 unsigned int i, result, bitmask, arg; in sony_nc_function_resume() local
1556 if (!sony_nc_int_call(sony_nc_acpi_handle, "SN00", &arg, &bitmask)) in sony_nc_function_resume()
1557 sony_nc_int_call(sony_nc_acpi_handle, "SN02", &bitmask, in sony_nc_function_resume()
/linux-4.1.27/Documentation/acpi/
Ddebug.txt28 bitmask, look for the "#define _COMPONENT" in an ACPI source file.
/linux-4.1.27/drivers/media/platform/vivid/
Dvivid-core.h214 struct v4l2_ctrl *bitmask; member
Dvivid-kthread-cap.c532 dev->bitmask->cur.val); in vivid_fillbuff()
Dvivid-ctrls.c1327 dev->bitmask = v4l2_ctrl_new_custom(hdl_user_gen, &vivid_ctrl_bitmask, NULL); in vivid_create_controls()
/linux-4.1.27/lib/
DKconfig.kgdb85 Alternatively the following bitmask applies:
DKconfig.debug373 to a bitmask as described in Documentation/sysrq.txt.
/linux-4.1.27/Documentation/dmaengine/
Dprovider.txt117 - should contain a bitmask of the supported source transfer width
120 - should contain a bitmask of the supported destination transfer
124 - should contain a bitmask of the supported slave directions
/linux-4.1.27/Documentation/sound/alsa/
Dserial-u16550.txt56 number gives a bitmask of which MIDI Out connectors the data should be
Dhda_codec.txt241 subs fields bitwise (with bitmask mask and subs_mask), the callback
DHD-Audio.txt111 codec slots via `probe_mask` option. It's a bitmask, and each bit
DALSA-Configuration.txt113 - if negative, interpret as a bitmask of permissible
/linux-4.1.27/sound/pci/
Dazt3328.c1325 unsigned bitmask, in snd_azf3328_ctrl_reg_6AH_update() argument
1331 chip->shadow_reg_ctrl_6AH |= bitmask; in snd_azf3328_ctrl_reg_6AH_update()
1333 chip->shadow_reg_ctrl_6AH &= ~bitmask; in snd_azf3328_ctrl_reg_6AH_update()
1336 bitmask, do_mask, chip->shadow_reg_ctrl_6AH); in snd_azf3328_ctrl_reg_6AH_update()
/linux-4.1.27/arch/sh/kernel/cpu/sh3/
Dentry.S217 ! r8 passes SR bitmask, overwritten with restored data on return
/linux-4.1.27/arch/tile/kernel/
Dhvglue_trace.c242 HV_WRAP1(void, hv_set_caching, unsigned long, bitmask)
/linux-4.1.27/drivers/mtd/nand/
Dnandsim.c2125 static void ns_hwcontrol(struct mtd_info *mtd, int cmd, unsigned int bitmask) in ns_hwcontrol() argument
2129 ns->lines.cle = bitmask & NAND_CLE ? 1 : 0; in ns_hwcontrol()
2130 ns->lines.ale = bitmask & NAND_ALE ? 1 : 0; in ns_hwcontrol()
2131 ns->lines.ce = bitmask & NAND_NCE ? 1 : 0; in ns_hwcontrol()
Ddiskonchip.c89 unsigned int bitmask);
/linux-4.1.27/Documentation/filesystems/
D9p.txt81 debug=n specifies debug level. The debug level is a bitmask.
Dbtrfs.txt69 check_int_print_mask takes a bitmask of BTRFSIC_PRINT_MASK_* values
Dproc.txt692 smp_affinity is a bitmask, in which you can specify which CPUs can handle the
706 a cpu range instead of a bitmask:
1598 will be dumped when the <pid> process is dumped. coredump_filter is a bitmask
1599 of memory types. If a bit of the bitmask is set, memory segments of the
1613 are always dumped regardless of the bitmask status.
1626 When a new process is created, the process inherits the bitmask status from its
Dxfs.txt280 Causes certain error conditions to call BUG(). Value is a bitmask;
/linux-4.1.27/drivers/scsi/
Dscsi_logging.c22 #warning SCSI logging bitmask too large
DKconfig222 echo <bitmask> > /proc/sys/dev/scsi/logging_level
224 where <bitmask> is a four byte value representing the logging type
/linux-4.1.27/Documentation/devicetree/bindings/media/
Dsamsung-fimc.txt81 - samsung,rotators: a bitmask specifying whether this IP has the input and
/linux-4.1.27/Documentation/acpi/apei/
Deinj.txt73 injection. Value is a bitmask as specified in ACPI5.0 spec for the
/linux-4.1.27/include/linux/mlx5/
Ddriver.h255 unsigned long bitmask; member
/linux-4.1.27/arch/tile/include/hv/
Dhypervisor.h1390 void hv_set_caching(unsigned long bitmask);
/linux-4.1.27/Documentation/power/regulator/
Dconsumer.txt206 To obtain the hardware register offset and bitmask for the regulator's voltage
/linux-4.1.27/Documentation/isdn/
DREADME.hysdn146 appropriate bitmask. The cards log messages will always be send to this
/linux-4.1.27/Documentation/filesystems/caching/
Dcachefiles.txt113 Specify a numeric bitmask to control debugging in the kernel module.
488 This is a bitmask of debugging streams to enable:
Dfscache.txt421 This is a bitmask of debugging streams to enable:
/linux-4.1.27/drivers/media/usb/pwc/
Dphilips.txt188 The trace variable is a bitmask; each bit represents a certain feature.
/linux-4.1.27/scripts/
Dspelling.txt171 bitmast||bitmask
/linux-4.1.27/Documentation/networking/
Dl2tp.txt124 DEBUG - bitmask of debug message categories. See below.
/linux-4.1.27/Documentation/m68k/
Dkernel-options.txt787 Syntax: nosync:bitmask
789 bitmask is a byte where the 1st 7 bits correspond with the 7
/linux-4.1.27/Documentation/laptops/
Dthinkpad-acpi.txt1400 will enable all debugging output classes. It takes a bitmask, so
1403 Debug bitmask Description
1420 attribute takes the same bitmask as the debug module parameter above.
/linux-4.1.27/Documentation/x86/
Dboot.txt403 This field is a bitmask.
601 This field is a bitmask.
/linux-4.1.27/Documentation/ioctl/
Dhdio.txt380 bitmask of nice flags.
/linux-4.1.27/drivers/net/wireless/ath/wcn36xx/
Dhal.h3093 u8 bitmask; member
/linux-4.1.27/drivers/scsi/aic7xxx/
Daic7xxx.reg493 * Target Mode Selecting in ID bitmask (aic7890/91/96/97)
/linux-4.1.27/Documentation/video4linux/
Dvivid.txt96 Each value is a bitmask with the following meaning:
Dv4l2-framework.txt828 It is a bitmask and the following bits can be set:
/linux-4.1.27/Documentation/RCU/
DRTFP.txt130 RCU, the reference counter is the per-CPU bit in the "bitmask" field,