| /include/dt-bindings/mfd/ |
| D | stm32f4-rcc.h | 34 #define STM32F4_AHB1_RESET(bit) (STM32F4_RCC_AHB1_##bit + (0x10 * 8)) argument 35 #define STM32F4_AHB1_CLOCK(bit) (STM32F4_RCC_AHB1_##bit) argument 44 #define STM32F4_AHB2_RESET(bit) (STM32F4_RCC_AHB2_##bit + (0x14 * 8)) argument 45 #define STM32F4_AHB2_CLOCK(bit) (STM32F4_RCC_AHB2_##bit + 0x20) argument 51 #define STM32F4_AHB3_RESET(bit) (STM32F4_RCC_AHB3_##bit + (0x18 * 8)) argument 52 #define STM32F4_AHB3_CLOCK(bit) (STM32F4_RCC_AHB3_##bit + 0x40) argument 81 #define STM32F4_APB1_RESET(bit) (STM32F4_RCC_APB1_##bit + (0x20 * 8)) argument 82 #define STM32F4_APB1_CLOCK(bit) (STM32F4_RCC_APB1_##bit + 0x80) argument 105 #define STM32F4_APB2_RESET(bit) (STM32F4_RCC_APB2_##bit + (0x24 * 8)) argument 106 #define STM32F4_APB2_CLOCK(bit) (STM32F4_RCC_APB2_##bit + 0xA0) argument
|
| D | stm32f7-rcc.h | 34 #define STM32F7_AHB1_RESET(bit) (STM32F7_RCC_AHB1_##bit + (0x10 * 8)) argument 35 #define STM32F7_AHB1_CLOCK(bit) (STM32F7_RCC_AHB1_##bit) argument 45 #define STM32F7_AHB2_RESET(bit) (STM32F7_RCC_AHB2_##bit + (0x14 * 8)) argument 46 #define STM32F7_AHB2_CLOCK(bit) (STM32F7_RCC_AHB2_##bit + 0x20) argument 52 #define STM32F7_AHB3_RESET(bit) (STM32F7_RCC_AHB3_##bit + (0x18 * 8)) argument 53 #define STM32F7_AHB3_CLOCK(bit) (STM32F7_RCC_AHB3_##bit + 0x40) argument 87 #define STM32F7_APB1_RESET(bit) (STM32F7_RCC_APB1_##bit + (0x20 * 8)) argument 88 #define STM32F7_APB1_CLOCK(bit) (STM32F7_RCC_APB1_##bit + 0x80) argument 113 #define STM32F7_APB2_RESET(bit) (STM32F7_RCC_APB2_##bit + (0x24 * 8)) argument 114 #define STM32F7_APB2_CLOCK(bit) (STM32F7_RCC_APB2_##bit + 0xA0) argument
|
| D | stm32h7-rcc.h | 17 #define STM32H7_AHB3_RESET(bit) (STM32H7_RCC_AHB3_##bit + (0x7C * 8)) argument 28 #define STM32H7_AHB1_RESET(bit) (STM32H7_RCC_AHB1_##bit + (0x80 * 8)) argument 37 #define STM32H7_AHB2_RESET(bit) (STM32H7_RCC_AHB2_##bit + (0x84 * 8)) argument 56 #define STM32H7_AHB4_RESET(bit) (STM32H7_RCC_AHB4_##bit + (0x88 * 8)) argument 62 #define STM32H7_APB3_RESET(bit) (STM32H7_RCC_APB3_##bit + (0x8C * 8)) argument 90 #define STM32H7_APB1L_RESET(bit) (STM32H7_RCC_APB1L_##bit + (0x90 * 8)) argument 99 #define STM32H7_APB1H_RESET(bit) (STM32H7_RCC_APB1H_##bit + (0x94 * 8)) argument 118 #define STM32H7_APB2_RESET(bit) (STM32H7_RCC_APB2_##bit + (0x98 * 8)) argument 134 #define STM32H7_APB4_RESET(bit) (STM32H7_RCC_APB4_##bit + (0x9C * 8)) argument
|
| /include/linux/ |
| D | trace_recursion.h | 51 #define trace_recursion_set(bit) do { (current)->trace_recursion |= (1<<(bit)); } while (0) argument 52 #define trace_recursion_clear(bit) do { (current)->trace_recursion &= ~(1<<(bit)); } while (0) argument 53 #define trace_recursion_test(bit) ((current)->trace_recursion & (1<<(bit))) argument 80 unsigned char bit = interrupt_context_level(); in trace_get_context_bit() local 82 return TRACE_CTX_NORMAL - bit; in trace_get_context_bit() 121 int bit; in trace_test_and_set_recursion() local 126 bit = trace_get_context_bit() + start; in trace_test_and_set_recursion() 127 if (unlikely(val & (1 << bit))) { in trace_test_and_set_recursion() 136 bit = TRACE_CTX_TRANSITION + start; in trace_test_and_set_recursion() 137 if (val & (1 << bit)) { in trace_test_and_set_recursion() [all …]
|
| D | tick.h | 206 extern void tick_nohz_dep_set(enum tick_dep_bits bit); 207 extern void tick_nohz_dep_clear(enum tick_dep_bits bit); 208 extern void tick_nohz_dep_set_cpu(int cpu, enum tick_dep_bits bit); 209 extern void tick_nohz_dep_clear_cpu(int cpu, enum tick_dep_bits bit); 211 enum tick_dep_bits bit); 213 enum tick_dep_bits bit); 215 enum tick_dep_bits bit); 217 enum tick_dep_bits bit); 224 static inline void tick_dep_set(enum tick_dep_bits bit) in tick_dep_set() argument 227 tick_nohz_dep_set(bit); in tick_dep_set() [all …]
|
| D | wait_bit.h | 21 #define __WAIT_BIT_KEY_INITIALIZER(word, bit) \ argument 22 { .flags = word, .bit_nr = bit, } 26 void __wake_up_bit(struct wait_queue_head *wq_head, void *word, int bit); 29 void wake_up_bit(void *word, int bit); 33 struct wait_queue_head *bit_waitqueue(void *word, int bit); 38 #define DEFINE_WAIT_BIT(name, word, bit) \ argument 40 .key = __WAIT_BIT_KEY_INITIALIZER(word, bit), \ 71 wait_on_bit(unsigned long *word, int bit, unsigned mode) in wait_on_bit() argument 74 if (!test_bit_acquire(bit, word)) in wait_on_bit() 76 return out_of_line_wait_on_bit(word, bit, in wait_on_bit() [all …]
|
| D | find.h | 433 unsigned long bit = find_next_and_bit(addr1, addr2, size, offset); in find_next_and_bit_wrap() local 435 if (bit < size || offset == 0) in find_next_and_bit_wrap() 436 return bit; in find_next_and_bit_wrap() 438 bit = find_first_and_bit(addr1, addr2, offset); in find_next_and_bit_wrap() 439 return bit < offset ? bit : size; in find_next_and_bit_wrap() 455 unsigned long bit = find_next_bit(addr, size, offset); in find_next_bit_wrap() local 457 if (bit < size || offset == 0) in find_next_bit_wrap() 458 return bit; in find_next_bit_wrap() 460 bit = find_first_bit(addr, offset); in find_next_bit_wrap() 461 return bit < offset ? bit : size; in find_next_bit_wrap() [all …]
|
| D | netdev_features.h | 104 #define __NETIF_F_BIT(bit) ((netdev_features_t)1 << (bit)) argument 183 #define for_each_netdev_feature(mask_addr, bit) \ argument 184 for ((bit) = find_next_netdev_feature((mask_addr), \ 186 (bit) >= 0; \ 187 (bit) = find_next_netdev_feature((mask_addr), (bit)))
|
| D | hdlcdrv.h | 41 unsigned int bit) in hdlcdrv_add_bitbuffer() argument 47 buf->shreg |= (!!bit) << 7; in hdlcdrv_add_bitbuffer() 244 static inline void hdlcdrv_channelbit(struct hdlcdrv_state *s, unsigned int bit) in hdlcdrv_channelbit() argument 247 hdlcdrv_add_bitbuffer(&s->bitbuf_channel, bit); in hdlcdrv_channelbit()
|
| D | leds-expresswire.h | 35 void expresswire_set_bit(struct expresswire_common_props *props, bool bit);
|
| D | buffer_head.h | 89 #define BUFFER_FNS(bit, name) \ argument 92 if (!test_bit(BH_##bit, &(bh)->b_state)) \ 93 set_bit(BH_##bit, &(bh)->b_state); \ 97 clear_bit(BH_##bit, &(bh)->b_state); \ 101 return test_bit(BH_##bit, &(bh)->b_state); \ 107 #define TAS_BUFFER_FNS(bit, name) \ argument 110 return test_and_set_bit(BH_##bit, &(bh)->b_state); \ 114 return test_and_clear_bit(BH_##bit, &(bh)->b_state); \
|
| D | vt_kern.h | 171 int vt_get_kbd_mode_bit(unsigned int console, int bit); 172 void vt_set_kbd_mode_bit(unsigned int console, int bit); 173 void vt_clr_kbd_mode_bit(unsigned int console, int bit);
|
| D | bitmap.h | 572 unsigned int bit; in bitmap_scatter() local 576 for_each_set_bit(bit, mask, nbits) in bitmap_scatter() 577 __assign_bit(bit, dst, test_bit(n++, src)); in bitmap_scatter() 627 unsigned int bit; in bitmap_gather() local 631 for_each_set_bit(bit, mask, nbits) in bitmap_gather() 632 __assign_bit(n++, dst, test_bit(bit, src)); in bitmap_gather()
|
| D | hid.h | 842 struct hid_usage *usage, unsigned long **bit, int *max); 845 struct hid_usage *usage, unsigned long **bit, int *max); 1061 struct hid_usage *usage, unsigned long **bit, int *max, in hid_map_usage() argument 1094 *bit = NULL; in hid_map_usage() 1101 *bit = bmap; in hid_map_usage() 1118 struct hid_usage *usage, unsigned long **bit, int *max, in hid_map_usage_clear() argument 1121 hid_map_usage(hidinput, usage, bit, max, type, c); in hid_map_usage_clear() 1122 if (*bit) in hid_map_usage_clear() 1123 clear_bit(usage->code, *bit); in hid_map_usage_clear()
|
| D | moxtet.h | 51 u8 bit; member
|
| /include/trace/events/ |
| D | irq_matrix.h | 39 TP_PROTO(int bit, struct irq_matrix *matrix), 41 TP_ARGS(bit, matrix), 44 __field( int, bit ) 52 __entry->bit = bit; 60 __entry->bit, __entry->online_maps, 67 TP_PROTO(int bit, unsigned int cpu, struct irq_matrix *matrix, 70 TP_ARGS(bit, cpu, matrix, cmap), 73 __field( int, bit ) 86 __entry->bit = bit; 99 __entry->bit, __entry->cpu, __entry->online, [all …]
|
| /include/linux/soc/qcom/ |
| D | smem_state.h | 16 struct qcom_smem_state *qcom_smem_state_get(struct device *dev, const char *con_id, unsigned *bit); 17 …t qcom_smem_state *devm_qcom_smem_state_get(struct device *dev, const char *con_id, unsigned *bit); 28 const char *con_id, unsigned *bit) in qcom_smem_state_get() argument 35 unsigned *bit) in devm_qcom_smem_state_get() argument
|
| /include/linux/ceph/ |
| D | ceph_features.h | 14 #define DEFINE_CEPH_FEATURE(bit, incarnation, name) \ argument 15 static const uint64_t __maybe_unused CEPH_FEATURE_##name = (1ULL<<bit); \ 17 (1ULL<<bit | CEPH_FEATURE_INCARNATION_##incarnation); 20 #define DEFINE_CEPH_FEATURE_DEPRECATED(bit, incarnation, name, when) \ argument 21 static const uint64_t __maybe_unused DEPRECATED_CEPH_FEATURE_##name = (1ULL<<bit); \ 23 (1ULL<<bit | CEPH_FEATURE_INCARNATION_##incarnation); 29 #define DEFINE_CEPH_FEATURE_RETIRED(bit, inc, name, unused, unadvertised) argument
|
| D | msgr.h | 35 #define DEFINE_MSGR2_FEATURE(bit, incarnation, name) \ argument 36 static const uint64_t __maybe_unused CEPH_MSGR2_FEATURE_##name = (1ULL << bit); \ 38 (1ULL << bit | CEPH_MSGR2_INCARNATION_##incarnation);
|
| /include/xen/interface/io/ |
| D | netif.h | 299 unsigned int bit; in xen_netif_toeplitz_hash() local 301 for (bit = 0; bit < 8; bit++) { in xen_netif_toeplitz_hash()
|
| /include/net/netfilter/ |
| D | nf_conntrack_labels.h | 55 int nf_connlabels_get(struct net *net, unsigned int bit); 58 static inline int nf_connlabels_get(struct net *net, unsigned int bit) { return 0; } in nf_connlabels_get() argument
|
| /include/uapi/linux/netfilter/ |
| D | xt_connlabel.h | 15 __u16 bit; member
|
| /include/linux/gpio/ |
| D | aspeed.h | 14 u16 *vreg_offset, u16 *dreg_offset, u8 *bit);
|
| /include/sound/ |
| D | vx_core.h | 266 int snd_vx_check_reg_bit(struct vx_core *chip, int reg, int mask, int bit, int time); 267 #define vx_check_isr(chip,mask,bit,time) snd_vx_check_reg_bit(chip, VX_ISR, mask, bit, time) argument 268 #define vx_wait_isr_bit(chip,bit) vx_check_isr(chip, bit, bit, 200) argument
|
| /include/soc/tegra/ |
| D | mc.h | 49 unsigned int bit; member 124 unsigned int bit; member
|