Searched refs:shiftAmount (Results 1 – 4 of 4) sorted by relevance
/external/v8/src/compiler/s390/ |
D | code-generator-s390.cc | 992 int shiftAmount = i.InputInt32(1); in AssembleArchInstruction() local 995 __ rll(i.OutputRegister(), i.InputRegister(0), Operand(shiftAmount)); in AssembleArchInstruction() 999 int shiftAmount = i.InputInt32(1); in AssembleArchInstruction() local 1002 __ rll(i.OutputRegister(), i.InputRegister(0), Operand(shiftAmount)); in AssembleArchInstruction() 1015 int shiftAmount = i.InputInt32(1); in AssembleArchInstruction() local 1019 Operand(endBit), Operand(shiftAmount), true); in AssembleArchInstruction() 1021 int shiftAmount = i.InputInt32(1); in AssembleArchInstruction() local 1023 __ rllg(i.OutputRegister(), i.InputRegister(0), Operand(shiftAmount)); in AssembleArchInstruction() 1030 int shiftAmount = i.InputInt32(1); in AssembleArchInstruction() local 1034 Operand(endBit), Operand(shiftAmount), true); in AssembleArchInstruction() [all …]
|
/external/llvm/lib/ExecutionEngine/Interpreter/ |
D | Execution.cpp | 1149 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/ |
D | tcuAstcUtil.cpp | 933 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/ |
D | macro-assembler-s390.h | 1415 int shiftAmount = (64 - rangeEnd) % 64; // Convert to shift left. in ExtractBitRange() local 1418 risbg(dst, src, Operand(startBit), Operand(endBit), Operand(shiftAmount), in ExtractBitRange()
|