Lines Matching refs:pgsz
1248 int (*xShmMap)(sqlite3_file*, int iPg, int pgsz, int, void volatile**);
14804 int pgsz, in sqlite3OsShmMap() argument
14809 return id->pMethods->xShmMap(id, iPage, pgsz, bExtend, pp); in sqlite3OsShmMap()
41266 int pgsz = pPager->pageSize; /* Number of bytes to read */
41279 rc = sqlite3WalRead(pPager->pWal, pgno, &isInWal, pgsz, pPg->pData);
41283 rc = sqlite3OsRead(pPager->fd, pPg->pData, pgsz, iOffset);
72058 int pgsz; /* Page size of main database */
72074 pgsz = sqlite3BtreeGetPageSize(db->aDb[0].pBt);
72075 pSorter->mnPmaSize = SORTER_MIN_WORKING * pgsz;
72078 pSorter->mxPmaSize = mxCache * pgsz;
126530 int pgsz = p->nPgsz;
126533 assert( pgsz>0 );
126545 if( (nBlob+35)>pgsz ){
126546 nOvfl += (nBlob + 34)/pgsz;