Searched refs:shiftAmount (Results 1 – 2 of 2) sorted by relevance
176 void right_shift(uint32_t shiftAmount) { in right_shift() argument186 while (accumulator >> shiftAmount == 0) { in right_shift()233 void left_shift(uint32_t shiftAmount) { in left_shift() argument248 << shiftAmount; in left_shift()336 void shift(int shiftAmount) { in shift() argument337 if (shiftAmount == 0) { in shift()341 else if (shiftAmount > 0) { in shift()344 shiftAmount -= MAX_SHIFT_AMOUNT; in shift()346 this->left_shift(shiftAmount); in shift()352 shiftAmount += MAX_SHIFT_AMOUNT; in shift()[all …]
1198 uint64_t shiftAmount = Src2.AggregateVal[i].IntVal.getZExtValue(); in visitShl() local1200 Result.IntVal = valueToShift.shl(getShiftAmount(shiftAmount, valueToShift)); in visitShl()1205 uint64_t shiftAmount = Src2.IntVal.getZExtValue(); in visitShl() local1207 Dest.IntVal = valueToShift.shl(getShiftAmount(shiftAmount, valueToShift)); in visitShl()1225 uint64_t shiftAmount = Src2.AggregateVal[i].IntVal.getZExtValue(); in visitLShr() local1227 Result.IntVal = valueToShift.lshr(getShiftAmount(shiftAmount, valueToShift)); in visitLShr()1232 uint64_t shiftAmount = Src2.IntVal.getZExtValue(); in visitLShr() local1234 Dest.IntVal = valueToShift.lshr(getShiftAmount(shiftAmount, valueToShift)); in visitLShr()1252 uint64_t shiftAmount = Src2.AggregateVal[i].IntVal.getZExtValue(); in visitAShr() local1259 uint64_t shiftAmount = Src2.IntVal.getZExtValue(); in visitAShr() local[all …]