Lines Matching defs:shift
65 int shift;
68 asm ("bfffo %1{#0,#32},%0" : "=d" (shift) : "dm" (reg->mant.m32[0]));
69 reg->mant.m32[0] = (reg->mant.m32[0] << shift) | (reg->mant.m32[1] >> (32 - shift));
70 reg->mant.m32[1] = (reg->mant.m32[1] << shift);
72 asm ("bfffo %1{#0,#32},%0" : "=d" (shift) : "dm" (reg->mant.m32[1]));
73 reg->mant.m32[0] = (reg->mant.m32[1] << shift);
75 shift += 32;
78 return shift;
206 10/1D and now only a single shift and the value fits into 32bit. */
244 int shift)
248 switch (shift) {