Home
last modified time | relevance | path

Searched refs:shiftAmount (Results 1 – 2 of 2) sorted by relevance

/llvm-project-15.0.7/libc/src/__support/
H A Dhigh_precision_decimal.h176 void right_shift(uint32_t shiftAmount) { in right_shift() argument
186 while (accumulator >> shiftAmount == 0) { in right_shift()
233 void left_shift(uint32_t shiftAmount) { in left_shift() argument
248 << shiftAmount; in left_shift()
336 void shift(int shiftAmount) { in shift() argument
337 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 …]
/llvm-project-15.0.7/llvm/lib/ExecutionEngine/Interpreter/
H A DExecution.cpp1198 uint64_t shiftAmount = Src2.AggregateVal[i].IntVal.getZExtValue(); in visitShl() local
1200 Result.IntVal = valueToShift.shl(getShiftAmount(shiftAmount, valueToShift)); in visitShl()
1205 uint64_t shiftAmount = Src2.IntVal.getZExtValue(); in visitShl() local
1207 Dest.IntVal = valueToShift.shl(getShiftAmount(shiftAmount, valueToShift)); in visitShl()
1225 uint64_t shiftAmount = Src2.AggregateVal[i].IntVal.getZExtValue(); in visitLShr() local
1227 Result.IntVal = valueToShift.lshr(getShiftAmount(shiftAmount, valueToShift)); in visitLShr()
1232 uint64_t shiftAmount = Src2.IntVal.getZExtValue(); in visitLShr() local
1234 Dest.IntVal = valueToShift.lshr(getShiftAmount(shiftAmount, valueToShift)); in visitLShr()
1252 uint64_t shiftAmount = Src2.AggregateVal[i].IntVal.getZExtValue(); in visitAShr() local
1259 uint64_t shiftAmount = Src2.IntVal.getZExtValue(); in visitAShr() local
[all …]