10 references to Push
System.Linq.Expressions (10)
System\Linq\Expressions\Interpreter\AndInstruction.cs (1)
45frame.Push((short)((short)left & (short)right));
System\Linq\Expressions\Interpreter\DecrementInstruction.cs (1)
30frame.Push(unchecked((short)((short)obj - 1)));
System\Linq\Expressions\Interpreter\ExclusiveOrInstruction.cs (1)
45frame.Push((short)((short)left ^ (short)right));
System\Linq\Expressions\Interpreter\IncrementInstruction.cs (1)
30frame.Push(unchecked((short)(1 + (short)obj)));
System\Linq\Expressions\Interpreter\LeftShiftInstruction.cs (1)
48frame.Push(unchecked((short)((short)value << (int)shift)));
System\Linq\Expressions\Interpreter\NegateInstruction.cs (2)
30frame.Push(unchecked((short)(-(short)obj))); 157frame.Push(checked((short)(-(short)obj)));
System\Linq\Expressions\Interpreter\NotInstruction.cs (1)
80frame.Push((short)(~(short)value));
System\Linq\Expressions\Interpreter\OrInstruction.cs (1)
45frame.Push((short)((short)left | (short)right));
System\Linq\Expressions\Interpreter\RightShiftInstruction.cs (1)
48frame.Push((short)((short)value >> (int)shift));