9 references to Int32ToObject
System.Linq.Expressions (9)
System\Linq\Expressions\Interpreter\AddInstruction.cs (2)
47stack[index - 2] = right == null ? null : ScriptingRuntimeHelpers.Int32ToObject(unchecked((int)left + (int)right)); 219stack[index - 2] = right == null ? null : ScriptingRuntimeHelpers.Int32ToObject(checked((int)left + (int)right));
System\Linq\Expressions\Interpreter\DivInstruction.cs (1)
47stack[index - 2] = right == null ? null : ScriptingRuntimeHelpers.Int32ToObject((int)left / (int)right);
System\Linq\Expressions\Interpreter\InterpretedFrame.cs (1)
76Data[StackIndex++] = ScriptingRuntimeHelpers.Int32ToObject(value);
System\Linq\Expressions\Interpreter\ModuloInstruction.cs (1)
47stack[index - 2] = right == null ? null : ScriptingRuntimeHelpers.Int32ToObject((int)left % (int)right);
System\Linq\Expressions\Interpreter\MulInstruction.cs (2)
47stack[index - 2] = right == null ? null : ScriptingRuntimeHelpers.Int32ToObject(unchecked((int)left * (int)right)); 220stack[index - 2] = right == null ? null : ScriptingRuntimeHelpers.Int32ToObject(checked((int)left * (int)right));
System\Linq\Expressions\Interpreter\SubInstruction.cs (2)
47stack[index - 2] = right == null ? null : ScriptingRuntimeHelpers.Int32ToObject(unchecked((int)left - (int)right)); 219stack[index - 2] = right == null ? null : ScriptingRuntimeHelpers.Int32ToObject(checked((int)left - (int)right));