Home
last modified time | relevance | path

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

/freebsd/contrib/sqlite3/
H A Dshell.c16614 i64 nPg; /* Size of bitmap */ member
16648 i64 nPg; /* Size of db in pages */ member
16855 static RecoverBitmap *recoverBitmapAlloc(sqlite3_recover *p, i64 nPg){ in recoverBitmapAlloc() argument
16856 int nElem = (nPg+1+31) / 32; in recoverBitmapAlloc()
16861 pRet->nPg = nPg; in recoverBitmapAlloc()
16877 if( iPg<=pMap->nPg ){ in recoverBitmapSet()
16890 if( iPg<=pMap->nPg && iPg>0 ){ in recoverBitmapQuery()
17069 i64 nPg = 0; in recoverPageCount() local
17075 nPg = sqlite3_column_int64(pStmt, 0); in recoverPageCount()
17079 return nPg; in recoverPageCount()
[all …]
H A Dsqlite3.c245427 int nPg, /* Pages of work to do */
245430 int nRem = nPg;
245637 int nPg;
245668 nPg = pLeaf->szLeaf - nShift;
245669 memmove(&aPg[4], &aPg[4+nShift], nPg-4);
245670 fts5PutU16(&aPg[2], nPg);
245673 memcpy(&aPg[nPg], aIdx, nIdx);
245674 nPg += nIdx;
245679 assert( nPg>4 || fts5GetU16(aPg)==0 );
245680 fts5DataWrite(p, iRowid, aPg, nPg);
[all …]