Searched refs:pCell (Results 1 – 1 of 1) sorted by relevance
410 static int cellSize(Btree *pBt, Cell *pCell){ in cellSize() argument411 int n = NKEY(pBt, pCell->h) + NDATA(pBt, pCell->h); in cellSize()437 Cell *pCell = pPage->apCell[i]; in defragmentPage() local441 assert( Addr(pCell) > Addr(pPage) ); in defragmentPage()442 assert( Addr(pCell) < Addr(pPage) + SQLITE_USABLE_SIZE ); in defragmentPage()444 n = cellSize(pBt, pCell); in defragmentPage()445 pCell->h.iNext = SWAB16(pBt, pc + n); in defragmentPage()446 memcpy(&newPage[pc], pCell, n); in defragmentPage()587 Cell *pCell; /* A pointer to a Cell in pPage->u.aDisk[] */ in initPage() local609 pCell = (Cell*)&pPage->u.aDisk[idx]; in initPage()[all …]