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