Lines Matching defs:nPgsz
116640 int nPgsz; /* Page size for host database */
117314 ** Store the current database page-size in bytes in p->nPgsz.
117333 p->nPgsz = sqlite3_column_int(pStmt, 0);
117336 p->nPgsz = 1024;
117340 assert( p->nPgsz>0 || rc!=SQLITE_OK );
118005 p->nNodeSize = p->nPgsz-35;
120854 pCsr->nRowAvg = (int)(((nByte / nDoc) + p->nPgsz) / p->nPgsz);
126532 int pgsz = p->nPgsz;