Searched refs:returnStack (Results 1 - 2 of 2) sorted by relevance

/osnet-11/usr/src/lib/libsqlite/src/
H A DvdbeInt.h277 int returnStack[100]; /* Return address stack for OP_Gosub & OP_Return */ member in struct:Vdbe
278 int returnDepth; /* Next unused element in returnStack[] */
H A Dvdbe.c627 if( p->returnDepth>=sizeof(p->returnStack)/sizeof(p->returnStack[0]) ){
632 p->returnStack[p->returnDepth++] = pc+1;
650 pc = p->returnStack[p->returnDepth] - 1;

Completed in 37 milliseconds