6 references to Push
System.Linq.Expressions (6)
System\Linq\Expressions\Interpreter\AndInstruction.cs (1)
93frame.Push((byte)((byte)left & (byte)right));
System\Linq\Expressions\Interpreter\ExclusiveOrInstruction.cs (1)
93frame.Push((byte)((byte)left ^ (byte)right));
System\Linq\Expressions\Interpreter\LeftShiftInstruction.cs (1)
102frame.Push(unchecked((byte)((byte)value << (int)shift)));
System\Linq\Expressions\Interpreter\NotInstruction.cs (1)
148frame.Push(unchecked((byte)(~(byte)value)));
System\Linq\Expressions\Interpreter\OrInstruction.cs (1)
93frame.Push((byte)((byte)left | (byte)right));
System\Linq\Expressions\Interpreter\RightShiftInstruction.cs (1)
102frame.Push((byte)((byte)value >> (int)shift));