Home
last modified time | relevance | path

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

/external/v8/src/compiler/s390/
Dcode-generator-s390.cc1524 int shiftAmount = i.InputInt32(1); in AssembleArchInstruction() local
1525 int endBit = 63 - shiftAmount; in AssembleArchInstruction()
1528 Operand(endBit), Operand(shiftAmount), true); in AssembleArchInstruction()
1530 int shiftAmount = i.InputInt32(1); in AssembleArchInstruction() local
1532 __ rllg(i.OutputRegister(), i.InputRegister(0), Operand(shiftAmount)); in AssembleArchInstruction()
1535 Operand(clearBit + shiftAmount)); in AssembleArchInstruction()
1536 __ sllg(i.OutputRegister(), i.OutputRegister(), Operand(shiftAmount)); in AssembleArchInstruction()
1541 int shiftAmount = i.InputInt32(1); in AssembleArchInstruction() local
1545 Operand(endBit), Operand(shiftAmount), true); in AssembleArchInstruction()
1547 int shiftAmount = i.InputInt32(1); in AssembleArchInstruction() local
[all …]
/external/llvm/lib/ExecutionEngine/Interpreter/
DExecution.cpp1149 uint64_t shiftAmount = Src2.AggregateVal[i].IntVal.getZExtValue(); in visitShl() local
1151 Result.IntVal = valueToShift.shl(getShiftAmount(shiftAmount, valueToShift)); in visitShl()
1156 uint64_t shiftAmount = Src2.IntVal.getZExtValue(); in visitShl() local
1158 Dest.IntVal = valueToShift.shl(getShiftAmount(shiftAmount, valueToShift)); in visitShl()
1176 uint64_t shiftAmount = Src2.AggregateVal[i].IntVal.getZExtValue(); in visitLShr() local
1178 Result.IntVal = valueToShift.lshr(getShiftAmount(shiftAmount, valueToShift)); in visitLShr()
1183 uint64_t shiftAmount = Src2.IntVal.getZExtValue(); in visitLShr() local
1185 Dest.IntVal = valueToShift.lshr(getShiftAmount(shiftAmount, valueToShift)); in visitLShr()
1203 uint64_t shiftAmount = Src2.AggregateVal[i].IntVal.getZExtValue(); in visitAShr() local
1205 Result.IntVal = valueToShift.ashr(getShiftAmount(shiftAmount, valueToShift)); in visitAShr()
[all …]
/external/deqp/framework/common/
DtcuAstcUtil.cpp933 const int shiftAmount = (mode >> 1) ^ 3; in decodeHDREndpointMode11() local
934 a <<= shiftAmount; in decodeHDREndpointMode11()
935 c <<= shiftAmount; in decodeHDREndpointMode11()
936 b0 <<= shiftAmount; in decodeHDREndpointMode11()
937 b1 <<= shiftAmount; in decodeHDREndpointMode11()
938 d0 <<= shiftAmount; in decodeHDREndpointMode11()
939 d1 <<= shiftAmount; in decodeHDREndpointMode11()
/external/v8/src/s390/
Dmacro-assembler-s390.h1366 int shiftAmount = (64 - rangeEnd) % 64; // Convert to shift left. in ExtractBitRange() local
1369 risbg(dst, src, Operand(startBit), Operand(endBit), Operand(shiftAmount), in ExtractBitRange()