Home
last modified time | relevance | path

Searched refs:nActionAlloc (Results 1 – 1 of 1) sorted by relevance

/sqlite-3.40.0/tool/
H A Dlemon.c592 int nActionAlloc; /* Slots allocated for aAction[] */ member
689 if( p->nAction + n >= p->nActionAlloc ){ in acttab_insert()
690 int oldAlloc = p->nActionAlloc; in acttab_insert()
691 p->nActionAlloc = p->nAction + n + p->nActionAlloc + 20; in acttab_insert()
693 sizeof(p->aAction[0])*p->nActionAlloc); in acttab_insert()
698 for(i=oldAlloc; i<p->nActionAlloc; i++){ in acttab_insert()
747 for(; i<p->nActionAlloc - p->mxLookahead; i++){ in acttab_insert()