Home
last modified time | relevance | path

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

/freebsd/contrib/sqlite3/
H A Dshell.c19808 int iCell; /* Current cell number */ member
20020 pCsr->iCell = 0; in dbdataResetCursor()
20276 pCsr->iCell = pTab->bPtr ? -2 : 0; in dbdataNext()
20285 pCsr->iCell = pCsr->nCell; in dbdataNext()
20287 pCsr->iCell++; in dbdataNext()
20288 if( pCsr->iCell>=pCsr->nCell ){ in dbdataNext()
20319 pCsr->iCell = pCsr->nCell; in dbdataNext()
20323 if( pCsr->iCell>=pCsr->nCell ){ in dbdataNext()
20326 int iCellPtr = iOff + 8 + nPointer + pCsr->iCell*2; in dbdataNext()
20456 pCsr->iCell++; in dbdataNext()
[all …]
H A Dsqlite3.c74613 int iCell, /* The cell index. First cell is 0 */ argument
74616 pPage->xParseCell(pPage, findCell(pPage, iCell), pInfo);
74795 static u16 cellSize(MemPage *pPage, int iCell){ argument
74796 return pPage->xCellSize(pPage, findCell(pPage, iCell));
81154 int iCell = (iOld + pPg->aiOvfl[i]) - iNew; local
81155 if( iCell>=0 && iCell<nNew ){
81156 pCellptr = &pPg->aCellIdx[iCell * 2];
81157 if( nCell>iCell ){
81158 memmove(&pCellptr[2], pCellptr, (nCell - iCell) * 2);
81161 cachedCellSize(pCArray, iCell+iNew);
[all …]