Home
last modified time | relevance | path

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

/illumos-gate/usr/src/lib/libsqlite/src/
H A Dbtree.c410 static int cellSize(Btree *pBt, Cell *pCell){ in cellSize() argument
411 int n = NKEY(pBt, pCell->h) + NDATA(pBt, pCell->h); in cellSize()
437 Cell *pCell = pPage->apCell[i]; in defragmentPage() local
441 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() local
609 pCell = (Cell*)&pPage->u.aDisk[idx]; in initPage()
[all …]