Home
last modified time | relevance | path

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

/freebsd/contrib/sqlite3/
H A Dshell.c15560 int iCell; /* Current cell number */ member
15772 pCsr->iCell = 0; in dbdataResetCursor()
16028 pCsr->iCell = pTab->bPtr ? -2 : 0; in dbdataNext()
16037 pCsr->iCell = pCsr->nCell; in dbdataNext()
16039 pCsr->iCell++; in dbdataNext()
16040 if( pCsr->iCell>=pCsr->nCell ){ in dbdataNext()
16071 pCsr->iCell = pCsr->nCell; in dbdataNext()
16075 if( pCsr->iCell>=pCsr->nCell ){ in dbdataNext()
16078 int iCellPtr = iOff + 8 + nPointer + pCsr->iCell*2; in dbdataNext()
16207 pCsr->iCell++; in dbdataNext()
[all …]
H A Dsqlite3.c71926 int iCell, /* The cell index. First cell is 0 */
71929 pPage->xParseCell(pPage, findCell(pPage, iCell), pInfo);
72108 static u16 cellSize(MemPage *pPage, int iCell){
72109 return pPage->xCellSize(pPage, findCell(pPage, iCell));
78370 int iCell = (iOld + pPg->aiOvfl[i]) - iNew;
78371 if( iCell>=0 && iCell<nNew ){
78372 pCellptr = &pPg->aCellIdx[iCell * 2];
78373 if( nCell>iCell ){
78374 memmove(&pCellptr[2], pCellptr, (nCell - iCell) * 2);
78377 cachedCellSize(pCArray, iCell+iNew);
[all …]