Home
last modified time | relevance | path

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

/sqlite-3.40.0/test/
H A Dwaloverwrite.test68 set nPg [db one { PRAGMA page_count } ]
69 expr $nPg>40 && $nPg<50
88 set nPg [wal_frame_count test.db-wal 1024]
89 expr $nPg>40 && $nPg<60
138 set nPg [wal_frame_count test.db-wal 1024]
139 expr $nPg>55 && $nPg<75
H A Dfallocate.test74 set nPg [db one {PRAGMA page_count}]
76 list [expr $nPg<100] [expr $nFile>100]
H A Dtester.tcl2472 proc test_set_config_pagecache {sz nPg} { argument
2478 set ::old_pagecache_config [sqlite3_config_pagecache $sz $nPg]
/sqlite-3.40.0/ext/recover/
H A Dsqlite3recover.c384 int nElem = (nPg+1+31) / 32; in recoverBitmapAlloc()
389 pRet->nPg = nPg; in recoverBitmapAlloc()
405 if( iPg<=pMap->nPg ){ in recoverBitmapSet()
418 if( iPg<=pMap->nPg && iPg>0 ){ in recoverBitmapQuery()
597 i64 nPg = 0; in recoverPageCount() local
607 return nPg; in recoverPageCount()
690 i64 nPg = recoverPageCount(p); in recoverGetPage() local
691 sqlite3_result_int64(pCtx, nPg); in recoverGetPage()
706 int nPg; in recoverGetPage() local
710 if( pgno==1 && nPg==p->pgsz && 0==memcmp(p->pPage1Cache, aPg, nPg) ){ in recoverGetPage()
[all …]
/sqlite-3.40.0/ext/lsm1/lsm-test/
H A Dlsmtest_io.c147 int nPg; in doOneCmd() local
157 nPg = (nByte+pgsz-1) / pgsz; in doOneCmd()
159 for(iPg=0; iPg<nPg; iPg++){ in doOneCmd()
/sqlite-3.40.0/ext/lsm1/
H A Dlsm_sorted.c4639 int nPg; in sortedBtreeGobble() local
4655 for(nPg=0; aPg[nPg]; nPg++); in sortedBtreeGobble()
5228 int nPg = 0; in doLsmSingleWork() local
5230 nRem -= nPg; in doLsmSingleWork()
5236 int nPg = 0; in doLsmSingleWork() local
5238 nRem -= nPg; in doLsmSingleWork()
5251 int nPg = 0; in doLsmSingleWork() local
5253 nRem -= nPg; in doLsmSingleWork()
5254 if( nPg ) bDirty = 1; in doLsmSingleWork()
5261 int nPg = 0; in doLsmSingleWork() local
[all …]
/sqlite-3.40.0/ext/fts5/
H A Dfts5_index.c4440 int nPg, /* Pages of work to do */ in fts5IndexMerge() argument
4443 int nRem = nPg; in fts5IndexMerge()