Lines Matching refs:aCell
112 StatCell *aCell; /* Array of parsed cells */ member
306 if( p->aCell ){ in statClearCells()
308 sqlite3_free(p->aCell[i].aOvfl); in statClearCells()
310 sqlite3_free(p->aCell); in statClearCells()
313 p->aCell = 0; in statClearCells()
439 p->aCell = sqlite3_malloc64((p->nCell+1) * sizeof(StatCell)); in statDecodePage()
440 if( p->aCell==0 ) return SQLITE_NOMEM_BKPT; in statDecodePage()
441 memset(p->aCell, 0, (p->nCell+1) * sizeof(StatCell)); in statDecodePage()
444 StatCell *pCell = &p->aCell[i]; in statDecodePage()
610 StatCell *pCell = &p->aCell[p->iCell]; in statNext()
661 p[1].iPgno = p->aCell[p->iCell].iChildPg; in statNext()
709 nPayload += p->aCell[i].nLocal; in statNext()