Home | History | Annotate | Download | only in Analysis

Lines Matching defs:ShiftAmount

2508       unsigned ShiftAmount = Width - 1;
2510 ShiftAmount = C->countTrailingZeros();
2514 Upper = C->ashr(ShiftAmount) + 1;
2517 Lower = C->ashr(ShiftAmount);
2529 unsigned ShiftAmount = Width - 1;
2531 ShiftAmount = C->countTrailingZeros();
2532 Lower = C->lshr(ShiftAmount);
2546 unsigned ShiftAmount = C->countLeadingOnes() - 1;
2547 Lower = C->shl(ShiftAmount);
2551 unsigned ShiftAmount = C->countLeadingZeros() - 1;
2553 Upper = C->shl(ShiftAmount) + 1;