/linux/arch/arc/include/asm/ |
H A D | disasm.h | 31 #define IS_BIT(word, n) ((word) & (1<<n)) argument 32 #define BITS(word, s, e) (((word) >> (s)) & (~((-2) << ((e) - (s))))) argument 34 #define MAJOR_OPCODE(word) (BITS((word), 27, 31)) argument 35 #define MINOR_OPCODE(word) (BITS((word), 16, 21)) argument 36 #define FIELD_A(word) (BITS((word), argument 37 FIELD_B(word) global() argument 39 FIELD_C(word) global() argument 40 FIELD_u6(word) global() argument 41 FIELD_s12(word) global() argument 46 FIELD_s9(word) global() argument 48 FIELD_s21(word) global() argument 50 FIELD_s25(word) global() argument 55 FIELD_S_A(word) global() argument 56 FIELD_S_B(word) global() argument 58 FIELD_S_C(word) global() argument 59 FIELD_S_H(word) global() argument 60 FIELD_S_u5(word) global() argument 61 FIELD_S_u6(word) global() argument 62 FIELD_S_u7(word) global() argument 63 FIELD_S_u10(word) global() argument 64 FIELD_S_s7(word) global() argument 65 FIELD_S_s8(word) global() argument 66 FIELD_S_s9(word) global() argument 67 FIELD_S_s10(word) global() argument 68 FIELD_S_s11(word) global() argument 69 FIELD_S_s13(word) global() argument 100 uint16_t word = *((uint16_t *)addr); is_short_instr() local [all...] |
/linux/include/linux/ |
H A D | wait_bit.h | 21 #define __WAIT_BIT_KEY_INITIALIZER(word, bit) \ argument 38 #define DEFINE_WAIT_BIT(name, word, bit) \ argument 72 wait_on_bit(unsigned long * word,int bit,unsigned mode) wait_on_bit() argument 100 wait_on_bit_io(unsigned long * word,int bit,unsigned mode) wait_on_bit_io() argument 131 wait_on_bit_timeout(unsigned long * word,int bit,unsigned mode,unsigned long timeout) wait_on_bit_timeout() argument 161 wait_on_bit_action(unsigned long * word,int bit,wait_bit_action_f * action,unsigned mode) wait_on_bit_action() argument 189 wait_on_bit_lock(unsigned long * word,int bit,unsigned mode) wait_on_bit_lock() argument 216 wait_on_bit_lock_io(unsigned long * word,int bit,unsigned mode) wait_on_bit_lock_io() argument 240 wait_on_bit_lock_action(unsigned long * word,int bit,wait_bit_action_f * action,unsigned mode) wait_on_bit_lock_action() argument 550 clear_and_wake_up_bit(int bit,unsigned long * word) clear_and_wake_up_bit() argument 571 test_and_clear_wake_up_bit(int bit,unsigned long * word) test_and_clear_wake_up_bit() argument [all...] |
H A D | bitops.h | 104 static inline __u64 rol64(__u64 word, unsigned int shift) in rol64() argument 114 static inline __u64 ror64(__u64 word, unsigned int shift) in ror64() argument 124 static inline __u32 rol32(__u32 word, unsigne argument 134 ror32(__u32 word,unsigned int shift) ror32() argument 144 rol16(__u16 word,unsigned int shift) rol16() argument 154 ror16(__u16 word,unsigned int shift) ror16() argument 164 rol8(__u8 word,unsigned int shift) rol8() argument 174 ror8(__u8 word,unsigned int shift) ror8() argument 270 __ffs64(u64 word) __ffs64() argument 286 fns(unsigned long word,unsigned int n) fns() argument [all...] |
/linux/drivers/irqchip/ |
H A D | irq-bcm7038-l1.c | 80 unsigned int word) in reg_status() argument 86 unsigned int word) in reg_mask_status() argument 92 unsigned int word) in reg_mask_set() argument 98 unsigned int word) in reg_mask_clr() argument 154 u32 word = d->hwirq / IRQS_PER_WORD; in __bcm7038_l1_unmask() local 165 u32 word = d->hwirq / IRQS_PER_WORD; __bcm7038_l1_mask() local 201 u32 word = hw / IRQS_PER_WORD; bcm7038_l1_set_affinity() local 298 int boot_cpu, word; bcm7038_l1_suspend() local 324 int boot_cpu, word; bcm7038_l1_resume() local 351 u32 word = d->hwirq / IRQS_PER_WORD; bcm7038_l1_set_wake() local 382 u32 word = hw_irq / IRQS_PER_WORD; bcm7038_l1_map() local [all...] |
H A D | irq-bcm6345-l1.c | 91 unsigned int word) in reg_enable() argument 101 unsigned int word) in reg_status() argument 145 u32 word = d->hwirq / IRQS_PER_WORD; in __bcm6345_l1_unmask() local 157 u32 word = d->hwirq / IRQS_PER_WORD; __bcm6345_l1_mask() local 191 u32 word = d->hwirq / IRQS_PER_WORD; bcm6345_l1_set_affinity() local [all...] |
/linux/arch/s390/include/asm/ |
H A D | bitops.h | 133 static inline unsigned char __flogr(unsigned long word) in __flogr() argument 182 __ffs(unsigned long word) __ffs() argument 194 ffs(int word) ffs() argument 208 __fls(unsigned long word) __fls() argument 224 fls64(unsigned long word) fls64() argument 238 fls(unsigned int word) fls() argument [all...] |
/linux/drivers/xen/events/ |
H A D | events_fifo.c | 196 event_word_t *word = event_word_from_port(port); in evtchn_fifo_clear_pending() local 202 event_word_t *word = event_word_from_port(port); in evtchn_fifo_set_pending() local 208 event_word_t *word = event_word_from_port(port); in evtchn_fifo_is_pending() local 214 event_word_t *word in evtchn_fifo_mask() local 220 event_word_t *word = event_word_from_port(port); evtchn_fifo_is_masked() local 227 clear_masked_cond(volatile event_word_t * word) clear_masked_cond() argument 249 event_word_t *word = event_word_from_port(port); evtchn_fifo_unmask() local 259 clear_linked(volatile event_word_t * word) clear_linked() argument 280 event_word_t *word; consume_one_event() local [all...] |
/linux/drivers/spi/ |
H A D | spi-gpio.c | 107 unsigned int nsecs, u32 word, u8 bits, unsigned int flags) in spi_gpio_txrx_word_mode0() argument 116 unsigned int nsecs, u32 word, u8 bits, unsigned int flags) in spi_gpio_txrx_word_mode1() argument 125 unsigned int nsecs, u32 word, u8 bits, unsigned int flags) in spi_gpio_txrx_word_mode2() argument 134 spi_gpio_txrx_word_mode3(struct spi_device * spi,unsigned int nsecs,u32 word,u8 bits,unsigned int flags) spi_gpio_txrx_word_mode3() argument 153 spi_gpio_spec_txrx_word_mode0(struct spi_device * spi,unsigned int nsecs,u32 word,u8 bits,unsigned int flags) spi_gpio_spec_txrx_word_mode0() argument 163 spi_gpio_spec_txrx_word_mode1(struct spi_device * spi,unsigned int nsecs,u32 word,u8 bits,unsigned int flags) spi_gpio_spec_txrx_word_mode1() argument 173 spi_gpio_spec_txrx_word_mode2(struct spi_device * spi,unsigned int nsecs,u32 word,u8 bits,unsigned int flags) spi_gpio_spec_txrx_word_mode2() argument 183 spi_gpio_spec_txrx_word_mode3(struct spi_device * spi,unsigned int nsecs,u32 word,u8 bits,unsigned int flags) spi_gpio_spec_txrx_word_mode3() argument [all...] |
H A D | spi-bitbang-txrx.h | 51 u32 word, u8 bits) in bitbang_txrx_be_cpha0() argument 83 bitbang_txrx_be_cpha1(struct spi_device * spi,unsigned nsecs,unsigned cpol,unsigned flags,u32 word,u8 bits) bitbang_txrx_be_cpha1() argument 115 bitbang_txrx_le_cpha0(struct spi_device * spi,unsigned int nsecs,unsigned int cpol,unsigned int flags,u32 word,u8 bits) bitbang_txrx_le_cpha0() argument 148 bitbang_txrx_le_cpha1(struct spi_device * spi,unsigned int nsecs,unsigned int cpol,unsigned int flags,u32 word,u8 bits) bitbang_txrx_le_cpha1() argument [all...] |
H A D | spi-sh-sci.c | 79 unsigned nsecs, u32 word, u8 bits, in sh_sci_spi_txrx_mode0() argument 86 unsigned nsecs, u32 word, u8 bits, in sh_sci_spi_txrx_mode1() argument 93 unsigned nsecs, u32 word, u8 bits, in sh_sci_spi_txrx_mode2() argument 100 unsigned nsecs, u32 word, u8 bits, in sh_sci_spi_txrx_mode3() argument
|
/linux/arch/alpha/lib/ |
H A D | csum_partial_copy.c | 91 unsigned long word; in csum_partial_cfu_aligned() local 105 unsigned long word, tmp; in csum_partial_cfu_aligned() local 130 unsigned long word, carry; csum_partial_cfu_dest_aligned() local 186 unsigned long word; csum_partial_cfu_src_aligned() local 252 unsigned long second, word; csum_partial_cfu_unaligned() local 274 unsigned long second, word; csum_partial_cfu_unaligned() local 296 unsigned long second, word; csum_partial_cfu_unaligned() local [all...] |
/linux/arch/powerpc/sysdev/ |
H A D | cpm2_pic.c | 79 int bit, word; in cpm2_mask_irq() local 91 int bit, word; in cpm2_unmask_irq() local 103 int bit, word; cpm2_ack() local 114 int bit, word; cpm2_end_irq() local [all...] |
/linux/arch/mips/include/asm/octeon/ |
H A D | cvmx-spinlock.h | 161 static inline void cvmx_spinlock_bit_lock(uint32_t *word) in cvmx_spinlock_bit_lock() argument 193 cvmx_spinlock_bit_trylock(uint32_t * word) cvmx_spinlock_bit_trylock() argument 225 cvmx_spinlock_bit_unlock(uint32_t * word) cvmx_spinlock_bit_unlock() argument [all...] |
/linux/fs/xfs/scrub/ |
H A D | rtbitmap_repair.c | 103 xfs_rtword_t *word) in xfbmp_load() argument 124 const xfs_rtword_t word) in xfbmp_store() argument 140 const union xfs_rtword_raw *word, in xfbmp_copyin() argument 151 union xfs_rtword_raw *word, in xfbmp_copyout() argument 165 xfs_rtword_t word; in xrep_rtbitmap_or() local [all...] |
/linux/include/asm-generic/bitops/ |
H A D | __ffs.h | 13 static __always_inline unsigned int generic___ffs(unsigned long word) in generic___ffs() argument 45 __ffs(word) global() argument [all...] |
H A D | __fls.h | 13 static __always_inline unsigned int generic___fls(unsigned long word) in generic___fls() argument 45 __fls(word) global() argument [all...] |
/linux/drivers/platform/mellanox/ |
H A D | mlxbf-bootctl.c | 587 int word; in opn_show() local 611 int word; in opn_store() local 638 int word; sku_show() local 662 int word; sku_store() local 689 int word; modl_show() local 713 int word; modl_store() local 740 int word; sn_show() local 764 int word; sn_store() local 791 int word; uuid_show() local 815 int word; uuid_store() local 842 int word; rev_show() local 866 int word; rev_store() local [all...] |
/linux/arch/sh/include/asm/ |
H A D | bitops.h | 27 static inline unsigned long ffz(unsigned long word) in ffz() argument 47 static inline unsigned long __ffs(unsigned long word) in __ffs() argument
|
/linux/arch/x86/include/asm/ |
H A D | bitops.h | 249 static __always_inline unsigned long variable__ffs(unsigned long word) in variable__ffs() argument 263 #define __ffs(word) \ argument 268 variable_ffz(unsigned long word) variable_ffz() argument 279 ffz(word) global() argument 290 __fls(unsigned long word) __fls() argument [all...] |
/linux/arch/sh/drivers/pci/ |
H A D | pci-sh7751.c | 22 unsigned long word; in __area_sdram_check() local 79 u32 word, re in sh7751_pci_init() local [all...] |
/linux/lib/crypto/mips/ |
H A D | sha1.h | 27 u32 word[2]; in octeon_sha1_store_hash() member 41 u32 word[2]; in octeon_sha1_read_hash() member
|
/linux/drivers/gpio/ |
H A D | gpio-max7301.c | 23 u16 word = ((reg & 0x7F) << 8) | (val & 0xFF); in max7301_spi_write() local 33 u16 word; in max7301_spi_read() local [all...] |
/linux/drivers/net/wireless/ralink/rt2x00/ |
H A D | rt2400pci.c | 46 const unsigned int word, const u8 value) in rt2400pci_bbp_write() argument 70 const unsigned int word) in rt2400pci_bbp_read() argument 104 const unsigned int word, const u32 value) in rt2400pci_rf_write() argument 717 u32 word; in rt2400pci_get_entry_state() local 735 u32 word; rt2400pci_clear_entry() local 1100 u32 word; rt2400pci_write_tx_desc() local 1272 u32 word; rt2400pci_txdone() local 1434 u16 word; rt2400pci_validate_eeprom() local [all...] |
/linux/arch/powerpc/kernel/ptrace/ |
H A D | ptrace-altivec.c | 48 u32 word; in vr_get() member 100 u32 word; in vr_set() member
|
/linux/arch/mips/include/asm/ |
H A D | bitops.h | 330 static __always_inline unsigned long __fls(unsigned long word) in __fls() argument 396 __ffs(unsigned long word) __ffs() argument 461 ffs(int word) ffs() argument [all...] |