/include/linux/ |
D | bitops.h | 53 static inline __u32 rol32(__u32 word, unsigned int shift) in rol32() argument 55 return (word << shift) | (word >> (32 - shift)); in rol32() 63 static inline __u32 ror32(__u32 word, unsigned int shift) in ror32() argument 65 return (word >> shift) | (word << (32 - shift)); in ror32() 73 static inline __u16 rol16(__u16 word, unsigned int shift) in rol16() argument 75 return (word << shift) | (word >> (16 - shift)); in rol16() 83 static inline __u16 ror16(__u16 word, unsigned int shift) in ror16() argument 85 return (word >> shift) | (word << (16 - shift)); in ror16() 93 static inline __u8 rol8(__u8 word, unsigned int shift) in rol8() argument 95 return (word << shift) | (word >> (8 - shift)); in rol8() [all …]
|
D | proportions.h | 22 int shift; member 43 int prop_descriptor_init(struct prop_descriptor *pd, int shift); 59 int shift; member 108 int shift; member
|
D | iommu-helper.h | 15 unsigned long shift, 20 unsigned long shift,
|
D | clockchips.h | 83 int shift; member 110 int shift) in div_sc() argument 112 uint64_t tmp = ((uint64_t)ticks) << shift; in div_sc()
|
D | clocksource.h | 68 u32 shift; member 188 ret = (ret * cs->mult) >> cs->shift; in cyc2ns() 210 tmp <<= c->shift; in clocksource_calculate_interval() 220 c->raw_interval = ((u64)c->cycle_interval * c->mult_orig) >> c->shift; in clocksource_calculate_interval()
|
D | selection.h | 35 extern void invert_screen(struct vc_data *vc, int offset, int count, int shift);
|
D | bitmap.h | 94 const unsigned long *src, int shift, int bits); 96 const unsigned long *src, int shift, int bits);
|
D | timex.h | 81 int shift; /* interval duration (s) (shift) (ro) */ member
|
D | compat.h | 62 compat_int_t shift; member
|
D | keyboard.h | 35 int shift; /* Current shift mask */ member
|
/include/asm-mn10300/ |
D | bitops.h | 31 const unsigned shift = (nr) & 7; \ 36 : "a"(_a), "d"(1 << shift), "m"(*_a) \ 48 const unsigned shift = (nr) & 7; \ 53 : "a"(_a), "d"(1 << shift), "m"(*_a) \ 99 const unsigned shift = (nr) & 7; \ 106 : "a"(_a), "d"(1 << shift), "m"(*_a) \ 120 const unsigned shift = (nr) & 7; \ 127 : "a"(_a), "d"(1 << shift), "m"(*_a) \
|
/include/sound/ |
D | soc-dapm.h | 73 { .id = snd_soc_dapm_pga, .name = wname, .reg = wreg, .shift = wshift, \ 77 { .id = snd_soc_dapm_mixer, .name = wname, .reg = wreg, .shift = wshift, \ 80 { .id = snd_soc_dapm_micbias, .name = wname, .reg = wreg, .shift = wshift, \ 83 { .id = snd_soc_dapm_switch, .name = wname, .reg = wreg, .shift = wshift, \ 86 { .id = snd_soc_dapm_mux, .name = wname, .reg = wreg, .shift = wshift, \ 90 .shift = wshift, .invert = winvert, .kcontrols = wcontrols, \ 96 { .id = snd_soc_dapm_pga, .name = wname, .reg = wreg, .shift = wshift, \ 101 { .id = snd_soc_dapm_mixer, .name = wname, .reg = wreg, .shift = wshift, \ 105 { .id = snd_soc_dapm_micbias, .name = wname, .reg = wreg, .shift = wshift, \ 110 { .id = snd_soc_dapm_switch, .name = wname, .reg = wreg, .shift = wshift, \ [all …]
|
D | soc.h | 29 {.reg = xreg, .shift = xshift, .rshift = xshift, .max = xmax, \ 34 #define SOC_SINGLE(xname, reg, shift, max, invert) \ argument 38 .private_value = SOC_SINGLE_VALUE(reg, shift, max, invert) } 39 #define SOC_SINGLE_TLV(xname, reg, shift, max, invert, tlv_array) \ argument 46 .private_value = SOC_SINGLE_VALUE(reg, shift, max, invert) } 52 {.reg = xreg, .shift = shift_left, .rshift = shift_right, \ 59 {.reg = reg_left, .rreg = reg_right, .shift = xshift, \ 69 {.reg = xreg, .shift = shift_left, .rshift = shift_right,\ 79 {.reg = reg_left, .rreg = reg_right, .shift = xshift, \ 410 unsigned int reg, rreg, shift, rshift, invert; member
|
D | wss.h | 177 #define WSS_SINGLE(xname, xindex, reg, shift, mask, invert) \ argument 184 .private_value = reg | (shift << 8) | (mask << 16) | (invert << 24) } 203 #define WSS_SINGLE_TLV(xname, xindex, reg, shift, mask, invert, xtlv) \ argument 211 .private_value = reg | (shift << 8) | (mask << 16) | (invert << 24), \
|
D | sb.h | 338 #define SB_MIXVAL_SINGLE(reg, shift, mask) \ argument 339 ((reg) | ((shift) << 16) | ((mask) << 24)) 352 #define SB_SINGLE(xname, reg, shift, mask) \ argument 355 .private_value = SB_MIXVAL_SINGLE(reg, shift, mask) }
|
D | ymfpci.h | 283 u32 shift; member
|
D | cs46xx.h | 1639 unsigned int shift; /* Shift count to trasform frames in bytes */ member 1677 unsigned int shift; /* Shift count to trasform frames in bytes */ member
|
/include/asm-frv/ |
D | irc-regs.h | 23 int shift = (XI) * 2 + 16; \ 25 tm1 &= ~(0x3 << shift); \ 26 tm1 |= (V) << shift; \
|
/include/net/ |
D | red.h | 178 int shift; in red_calc_qavg_from_idle_time() local 203 shift = p->Stab[(us_idle >> p->Scell_log) & RED_STAB_MASK]; in red_calc_qavg_from_idle_time() 205 if (shift) in red_calc_qavg_from_idle_time() 206 return p->qavg >> shift; in red_calc_qavg_from_idle_time()
|
/include/linux/tc_act/ |
D | tc_pedit.h | 25 __u32 shift; member
|
/include/drm/ |
D | drm_hashtab.h | 57 unsigned long seed, int bits, int shift,
|
/include/linux/tc_ematch/ |
D | tc_em_meta.h | 20 __u8 shift; member
|
/include/linux/netfilter/ |
D | nf_conntrack_sip.h | 62 int *shift);
|