Home
last modified time | relevance | path

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

/netbsd/src/external/public-domain/sqlite/dist/
Dsqlite3.c19742 int nTab; /* Number of previously allocated VDBE cursors */ member
87008 nCursor = pParse->nTab;
102064 sParse.nTab = 1;
107113 assert( pSrcList->a[i].iCursor>=0 && pSrcList->a[i].iCursor<pParse->nTab);
111400 iTab = pParse->nTab++;
111565 pParse->nTab--; /* Back out the allocation of the unused cursor */
115204 pItem->iOBTab = pParse->nTab++;
115224 pItem->iDistinct = pParse->nTab++;
117645 iCur = pParse->nTab++;
118773 pParse->nTab = MAX(pParse->nTab, iTab);
[all …]
Dshell.c12538 int nTab; in idxGetTableInfo() local
12547 nTab = STRLEN(zTab); in idxGetTableInfo()
12548 nByte = sizeof(IdxTable) + nTab + 1; in idxGetTableInfo()
12611 if( ALWAYS(pNew->zName!=0) ) memcpy(pNew->zName, zTab, nTab+1); in idxGetTableInfo()