Lines Matching defs:BitShift
1034 // WordShift is the inter-part shift; BitShift is intra-part shift.
1036 unsigned BitShift = ShiftAmt % APINT_BITS_PER_WORD;
1045 if (BitShift == 0) {
1050 U.pVal[i] = (U.pVal[i + WordShift] >> BitShift) |
1051 (U.pVal[i + WordShift + 1] << (APINT_BITS_PER_WORD - BitShift));
1054 U.pVal[WordsToMove - 1] = U.pVal[WordShift + WordsToMove - 1] >> BitShift;
1057 SignExtend64(U.pVal[WordsToMove - 1], APINT_BITS_PER_WORD - BitShift);
2673 // WordShift is the inter-part shift; BitShift is the intra-part shift.
2675 unsigned BitShift = Count % APINT_BITS_PER_WORD;
2678 if (BitShift == 0) {
2682 Dst[Words] = Dst[Words - WordShift] << BitShift;
2685 Dst[Words - WordShift - 1] >> (APINT_BITS_PER_WORD - BitShift);
2700 // WordShift is the inter-part shift; BitShift is the intra-part shift.
2702 unsigned BitShift = Count % APINT_BITS_PER_WORD;
2706 if (BitShift == 0) {
2710 Dst[i] = Dst[i + WordShift] >> BitShift;
2712 Dst[i] |= Dst[i + WordShift + 1] << (APINT_BITS_PER_WORD - BitShift);