Searched refs:pCell (Results 1 – 1 of 1) sorted by relevance
412 static int cellSize(Btree *pBt, Cell *pCell){ in cellSize() argument413 int n = NKEY(pBt, pCell->h) + NDATA(pBt, pCell->h); in cellSize()439 Cell *pCell = pPage->apCell[i]; in defragmentPage() local443 assert( Addr(pCell) > Addr(pPage) ); in defragmentPage()444 assert( Addr(pCell) < Addr(pPage) + SQLITE_USABLE_SIZE ); in defragmentPage()446 n = cellSize(pBt, pCell); in defragmentPage()447 pCell->h.iNext = SWAB16(pBt, pc + n); in defragmentPage()448 memcpy(&newPage[pc], pCell, n); in defragmentPage()589 Cell *pCell; /* A pointer to a Cell in pPage->u.aDisk[] */ in initPage() local611 pCell = (Cell*)&pPage->u.aDisk[idx]; in initPage()[all …]