Home
last modified time | relevance | path

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

/freebsd/contrib/sqlite3/
H A Dshell.c19770 int iCell; /* Current cell number */ member
19982 pCsr->iCell = 0; in dbdataResetCursor()
20238 pCsr->iCell = pTab->bPtr ? -2 : 0; in dbdataNext()
20247 pCsr->iCell = pCsr->nCell; in dbdataNext()
20249 pCsr->iCell++; in dbdataNext()
20250 if( pCsr->iCell>=pCsr->nCell ){ in dbdataNext()
20281 pCsr->iCell = pCsr->nCell; in dbdataNext()
20285 if( pCsr->iCell>=pCsr->nCell ){ in dbdataNext()
20288 int iCellPtr = iOff + 8 + nPointer + pCsr->iCell*2; in dbdataNext()
20418 pCsr->iCell++; in dbdataNext()
[all …]
H A Dsqlite3.c74509 int iCell, /* The cell index. First cell is 0 */ argument
74512 pPage->xParseCell(pPage, findCell(pPage, iCell), pInfo);
74691 static u16 cellSize(MemPage *pPage, int iCell){ argument
74692 return pPage->xCellSize(pPage, findCell(pPage, iCell));
81035 int iCell = (iOld + pPg->aiOvfl[i]) - iNew; local
81036 if( iCell>=0 && iCell<nNew ){
81037 pCellptr = &pPg->aCellIdx[iCell * 2];
81038 if( nCell>iCell ){
81039 memmove(&pCellptr[2], pCellptr, (nCell - iCell) * 2);
81042 cachedCellSize(pCArray, iCell+iNew);
[all …]