Lines Matching refs:pgsz
321 int pgsz; /* Main database page size */ member
651 int pgsz = pTask->pSorter->pgsz; in vdbePmaReaderSeek() local
652 int iBuf = pReadr->iReadOff % pgsz; in vdbePmaReaderSeek()
654 pReadr->aBuffer = (u8*)sqlite3Malloc(pgsz); in vdbePmaReaderSeek()
656 pReadr->nBuffer = pgsz; in vdbePmaReaderSeek()
659 int nRead = pgsz - iBuf; in vdbePmaReaderSeek()
933 int pgsz; /* Page size of main database */ in sqlite3VdbeSorterInit() local
982 pSorter->pgsz = pgsz = sqlite3BtreeGetPageSize(pBt); in sqlite3VdbeSorterInit()
996 pSorter->mnPmaSize = szPma * pgsz; in sqlite3VdbeSorterInit()
1004 mxCache = mxCache * pgsz; in sqlite3VdbeSorterInit()
1013 pSorter->nMemory = pgsz; in sqlite3VdbeSorterInit()
1014 pSorter->list.aMemory = (u8*)sqlite3Malloc(pgsz); in sqlite3VdbeSorterInit()
1585 vdbePmaWriterInit(pTask->file.pFd, &writer, pTask->pSorter->pgsz, in vdbeSorterListToPMA()
1891 vdbePmaWriterInit(pOut->pFd, &writer, pTask->pSorter->pgsz, iStart); in vdbeIncrPopulate()