Lines Matching refs:nCell
110 int nCell; /* Number of cells on page */ member
134 int nCell; /* Value of 'ncell' column */ member
307 for(i=0; i<p->nCell; i++){ in statClearCells()
312 p->nCell = 0; in statClearCells()
344 pCsr->nCell = 0; in statResetCounts()
414 p->nCell = get2byte(&aHdr[3]); in statDecodePage()
418 nUnused = get2byte(&aHdr[5]) - nHdr - 2*p->nCell; in statDecodePage()
432 if( p->nCell ){ in statDecodePage()
439 p->aCell = sqlite3_malloc64((p->nCell+1) * sizeof(StatCell)); in statDecodePage()
441 memset(p->aCell, 0, (p->nCell+1) * sizeof(StatCell)); in statDecodePage()
443 for(i=0; i<p->nCell; i++){ in statDecodePage()
609 while( p->iCell<p->nCell ){ in statNext()
641 if( !p->iRightChildPg || p->iCell>p->nCell ){ in statNext()
658 if( p->iCell==p->nCell ){ in statNext()
700 pCsr->nCell += p->nCell; in statNext()
708 for(i=0; i<p->nCell; i++){ in statNext()
827 sqlite3_result_int(ctx, pCsr->nCell); in statColumn()