Home
last modified time | relevance | path

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

/netbsd-src/external/public-domain/sqlite/dist/
H A Dshell.c15351 i64 nPg; /* Size of bitmap */ member
15385 i64 nPg; /* Size of db in pages */ member
15592 static RecoverBitmap *recoverBitmapAlloc(sqlite3_recover *p, i64 nPg){ in recoverBitmapAlloc() argument
15593 int nElem = (nPg+1+31) / 32; in recoverBitmapAlloc()
15598 pRet->nPg = nPg; in recoverBitmapAlloc()
15614 if( iPg<=pMap->nPg ){ in recoverBitmapSet()
15627 if( iPg<=pMap->nPg && iPg>0 ){ in recoverBitmapQuery()
15806 i64 nPg = 0; in recoverPageCount() local
15812 nPg = sqlite3_column_int64(pStmt, 0); in recoverPageCount()
15816 return nPg; in recoverPageCount()
[all …]
H A Dsqlite3.c243494 int nPg, /* Pages of work to do */
243497 int nRem = nPg;
243704 int nPg;
243735 nPg = pLeaf->szLeaf - nShift;
243736 memmove(&aPg[4], &aPg[4+nShift], nPg-4);
243737 fts5PutU16(&aPg[2], nPg);
243740 memcpy(&aPg[nPg], aIdx, nIdx);
243741 nPg += nIdx;
243746 assert( nPg>4 || fts5GetU16(aPg)==0 );
243747 fts5DataWrite(p, iRowid, aPg, nPg);
[all …]