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