Lines Matching defs:BitShift
1039 // WordShift is the inter-part shift; BitShift is intra-part shift.
1041 unsigned BitShift = ShiftAmt % APINT_BITS_PER_WORD;
1050 if (BitShift == 0) {
1055 U.pVal[i] = (U.pVal[i + WordShift] >> BitShift) |
1056 (U.pVal[i + WordShift + 1] << (APINT_BITS_PER_WORD - BitShift));
1061 (int64_t)U.pVal[WordShift + WordsToMove - 1] >> BitShift;
2677 // WordShift is the inter-part shift; BitShift is the intra-part shift.
2679 unsigned BitShift = Count % APINT_BITS_PER_WORD;
2682 if (BitShift == 0) {
2686 Dst[Words] = Dst[Words - WordShift] << BitShift;
2689 Dst[Words - WordShift - 1] >> (APINT_BITS_PER_WORD - BitShift);
2704 // WordShift is the inter-part shift; BitShift is the intra-part shift.
2706 unsigned BitShift = Count % APINT_BITS_PER_WORD;
2710 if (BitShift == 0) {
2714 Dst[i] = Dst[i + WordShift] >> BitShift;
2716 Dst[i] |= Dst[i + WordShift + 1] << (APINT_BITS_PER_WORD - BitShift);