Home | History | Annotate | Download | only in lib_src

Lines Matching refs:stack

2061     /* stack underflow, cdl block has an errorr */
2065 /* pop the value off the stack */
2088 /* stack overflow, return an error */
2092 /* push the value onto the stack */
2211 EAS_U32 stack[CDL_STACK_SIZE];
2230 if ((result = PopcdlStack(stack, &stackPtr, &x)) != EAS_SUCCESS)
2232 if ((result = PopcdlStack(stack, &stackPtr, &y)) != EAS_SUCCESS)
2287 if ((result = PopcdlStack(stack, &stackPtr, &x)) != EAS_SUCCESS)
2314 /* push the result on the stack */
2315 if ((result = PushcdlStack(stack, &stackPtr, x)) != EAS_SUCCESS)
2319 /* pop the last result off the stack */
2320 return PopcdlStack(stack, &stackPtr, pValue);