Home
last modified time | relevance | path

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

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