Lines Matching defs:shift
1568 * and shift the mask number for older systems.
2099 unsigned shift = 0;
2102 shift = i;
2104 shift = i >> 1;
2106 shift = (i + 1) >> 1;
2108 return 128 << (shift + !!dct_width);
2143 * Basically, it calculates a value with which to shift the
2160 unsigned shift = 0;
2166 shift = i;
2168 shift = 7;
2170 shift = i >> 1;
2172 shift = (i + 1) >> 1;
2175 cs_size = (128 * (1 << !!dct_width)) << shift;
2182 unsigned shift = 0;
2188 shift = 7;
2190 shift = i >> 1;
2192 shift = (i + 1) >> 1;
2195 cs_size = rank_multiply * (128 << shift);
2372 u8 shift = intlv_addr & 0x1 ? 9 : 6;
2375 return ((sys_addr >> shift) & 1) ^ temp;
2379 u8 shift = intlv_addr & 0x1 ? 9 : 8;
2381 return (sys_addr >> shift) & 1;