Searched refs:keylistStackDepth (Results 1 - 3 of 3) sorted by relevance

/illumos-gate/usr/src/lib/libsqlite/src/
H A DvdbeInt.h267 int keylistStackDepth; /* The size of the "keylist" stack */ member in struct:Vdbe
H A Dvdbe.c3854 p->keylistStackDepth++;
3855 assert(p->keylistStackDepth > 0);
3857 sizeof(Keylist *) * p->keylistStackDepth);
3859 p->keylistStack[p->keylistStackDepth - 1] = p->pList;
3870 assert(p->keylistStackDepth > 0);
3871 p->keylistStackDepth--;
3873 p->pList = p->keylistStack[p->keylistStackDepth];
3874 p->keylistStack[p->keylistStackDepth] = 0;
3875 if( p->keylistStackDepth == 0 ){
H A Dvdbeaux.c817 for(ii = 0; ii < p->keylistStackDepth; ii++){
821 p->keylistStackDepth = 0;

Completed in 146 milliseconds