Searched defs:EvalStack (Results 1 - 1 of 1) sorted by relevance

/vbox/src/VBox/Devices/EFI/Firmware/MdeModulePkg/Core/Pei/Dependency/
H A DDependency.c105 EVAL_STACK_ENTRY EvalStack[MAX_GRAMMAR_SIZE]; local
109 StackPtr = &EvalStack[0];
123 // EvalStack on the push
125 if (StackPtr > &EvalStack[MAX_GRAMMAR_SIZE-1]) {
149 // EvalStack on the two POPs for the AND operation. Don't need to
153 if (StackPtr < &EvalStack[2]) {
190 // Check to make sure EvalStack is balanced. If not, then there is
193 if (StackPtr != &EvalStack[0]) {
205 // EvalStack on the POP for the NOT operation. Don't need to
209 if (StackPtr < &EvalStack[
[all...]

Completed in 101 milliseconds