Lines Matching defs:shift
376 * widens the result of the following shift to 64-bits if (and,
2158 int shift;
2166 shift = 7;
2173 d |= (value << shift);
2175 if (shift == 0)
2177 shift = 7;
2183 shift--;
2186 if (shift != 7)
2196 int shift;
2203 shift = 6;
2211 d |= (value << shift);
2213 if (shift == 0)
2215 shift = 6;
2221 shift -= 2;
2223 if (shift != 6)
2233 int shift;
2240 shift = 4;
2247 d |= (value << shift);
2249 if (shift == 0)
2251 shift = 4;
2257 shift -= 4;
2259 if (shift != 4)