13 references to Push
System.Linq.Expressions (13)
System\Linq\Expressions\Interpreter\AndInstruction.cs (1)
61frame.Push((int)left & (int)right);
System\Linq\Expressions\Interpreter\ArrayOperations.cs (1)
149frame.Push(((Array)obj).Length);
System\Linq\Expressions\Interpreter\DecrementInstruction.cs (1)
47frame.Push(unchecked((int)obj - 1));
System\Linq\Expressions\Interpreter\ExclusiveOrInstruction.cs (1)
61frame.Push((int)left ^ (int)right);
System\Linq\Expressions\Interpreter\IncrementInstruction.cs (1)
47frame.Push(unchecked(1 + (int)obj));
System\Linq\Expressions\Interpreter\InterpretedFrame.cs (1)
238Push(_pendingContinuation);
System\Linq\Expressions\Interpreter\LeftShiftInstruction.cs (1)
66frame.Push((int)value << (int)shift);
System\Linq\Expressions\Interpreter\NegateInstruction.cs (2)
47frame.Push(unchecked(-(int)obj)); 140frame.Push(checked(-(int)obj));
System\Linq\Expressions\Interpreter\NotInstruction.cs (1)
63frame.Push(~(int)value);
System\Linq\Expressions\Interpreter\OrInstruction.cs (1)
61frame.Push((int)left | (int)right);
System\Linq\Expressions\Interpreter\RightShiftInstruction.cs (1)
66frame.Push((int)value >> (int)shift);
System\Linq\Expressions\Interpreter\TypeOperations.cs (1)
224frame.Push(obj?.GetHashCode() ?? 0);