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