6 references to GetShiftSizeMask
Microsoft.CodeAnalysis.VisualBasic (6)
CodeGen\EmitOperators.vb (2)
310Dim shiftMax = GetShiftSizeMask(expression.Left.Type) 325Dim shiftMax = GetShiftSizeMask(expression.Left.Type)
Lowering\ExpressionLambdaRewriter\ExpressionLambdaRewriter_BinaryOperator.vb (1)
419Dim shiftMask As Integer = CodeGen.CodeGenerator.GetShiftSizeMask(resultType.GetNullableUnderlyingTypeOrSelf())
Semantics\Operators.vb (3)
1262resultValue = leftValue << (CType(rightValue, Integer) And CodeGen.CodeGenerator.GetShiftSizeMask(operandType)) 1275(CType(rightValue, Integer) And CodeGen.CodeGenerator.GetShiftSizeMask(operandType)))) 1277resultValue = leftValue >> (CType(rightValue, Integer) And CodeGen.CodeGenerator.GetShiftSizeMask(operandType))