Searched refs:shiftAmount (Results 1 – 7 of 7) sorted by relevance
/external/deqp-deps/SPIRV-Tools/source/opt/ |
D | strength_reduction_pass.cpp | 37 uint32_t shiftAmount = 0; in CountTrailingZeros() local 39 ++shiftAmount; in CountTrailingZeros() 42 return shiftAmount; in CountTrailingZeros() 93 uint32_t shiftAmount = CountTrailingZeros(constVal); in ReplaceMultiplyByPowerOf2() local 94 uint32_t shiftConstResultId = GetConstantId(shiftAmount); in ReplaceMultiplyByPowerOf2()
|
/external/swiftshader/third_party/SPIRV-Tools/source/opt/ |
D | strength_reduction_pass.cpp | 37 uint32_t shiftAmount = 0; in CountTrailingZeros() local 39 ++shiftAmount; in CountTrailingZeros() 42 return shiftAmount; in CountTrailingZeros() 93 uint32_t shiftAmount = CountTrailingZeros(constVal); in ReplaceMultiplyByPowerOf2() local 94 uint32_t shiftConstResultId = GetConstantId(shiftAmount); in ReplaceMultiplyByPowerOf2()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/ExecutionEngine/Interpreter/ |
D | Execution.cpp | 1148 uint64_t shiftAmount = Src2.AggregateVal[i].IntVal.getZExtValue(); in visitShl() local 1150 Result.IntVal = valueToShift.shl(getShiftAmount(shiftAmount, valueToShift)); in visitShl() 1155 uint64_t shiftAmount = Src2.IntVal.getZExtValue(); in visitShl() local 1157 Dest.IntVal = valueToShift.shl(getShiftAmount(shiftAmount, valueToShift)); in visitShl() 1175 uint64_t shiftAmount = Src2.AggregateVal[i].IntVal.getZExtValue(); in visitLShr() local 1177 Result.IntVal = valueToShift.lshr(getShiftAmount(shiftAmount, valueToShift)); in visitLShr() 1182 uint64_t shiftAmount = Src2.IntVal.getZExtValue(); in visitLShr() local 1184 Dest.IntVal = valueToShift.lshr(getShiftAmount(shiftAmount, valueToShift)); in visitLShr() 1202 uint64_t shiftAmount = Src2.AggregateVal[i].IntVal.getZExtValue(); in visitAShr() local 1204 Result.IntVal = valueToShift.ashr(getShiftAmount(shiftAmount, valueToShift)); in visitAShr() [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/v8/src/compiler/s390/ |
D | code-generator-s390.cc | 1810 int shiftAmount = i.InputInt32(1); in AssembleArchInstruction() local 1811 int endBit = 63 - shiftAmount; in AssembleArchInstruction() 1814 Operand(startBit), Operand(endBit), Operand(shiftAmount), true); in AssembleArchInstruction() 1816 int shiftAmount = i.InputInt32(1); in AssembleArchInstruction() local 1818 __ rllg(i.OutputRegister(), i.InputRegister(0), Operand(shiftAmount)); in AssembleArchInstruction() 1821 Operand(clearBit + shiftAmount)); in AssembleArchInstruction() 1822 __ sllg(i.OutputRegister(), i.OutputRegister(), Operand(shiftAmount)); in AssembleArchInstruction() 1827 int shiftAmount = i.InputInt32(1); in AssembleArchInstruction() local 1831 Operand(startBit), Operand(endBit), Operand(shiftAmount), true); in AssembleArchInstruction() 1833 int shiftAmount = i.InputInt32(1); in AssembleArchInstruction() local [all …]
|
/external/deqp/framework/common/ |
D | tcuAstcUtil.cpp | 945 const int shiftAmount = (mode >> 1) ^ 3; in decodeHDREndpointMode11() local 946 a <<= shiftAmount; in decodeHDREndpointMode11() 947 c <<= shiftAmount; in decodeHDREndpointMode11() 948 b0 <<= shiftAmount; in decodeHDREndpointMode11() 949 b1 <<= shiftAmount; in decodeHDREndpointMode11() 950 d0 <<= shiftAmount; in decodeHDREndpointMode11() 951 d1 <<= shiftAmount; in decodeHDREndpointMode11()
|
/external/v8/src/s390/ |
D | macro-assembler-s390.h | 905 int shiftAmount = (64 - rangeEnd) % 64; // Convert to shift left. in ExtractBitRange() local 909 Operand(shiftAmount), true); in ExtractBitRange()
|