Searched refs:nPg (Results 1 – 2 of 2) sorted by relevance
| /src/contrib/sqlite3/ |
| H A D | shell.c | 18861 i64 nPg; /* Size of bitmap */ member 18898 i64 nPg; /* Size of db in pages */ member 19105 static RecoverBitmap *recoverBitmapAlloc(sqlite3_recover *p, i64 nPg){ in recoverBitmapAlloc() argument 19106 int nElem = (nPg+1+31) / 32; in recoverBitmapAlloc() 19111 pRet->nPg = nPg; in recoverBitmapAlloc() 19127 if( iPg<=pMap->nPg ){ in recoverBitmapSet() 19140 if( iPg<=pMap->nPg && iPg>0 ){ in recoverBitmapQuery() 19319 i64 nPg = 0; in recoverPageCount() local 19325 nPg = sqlite3_column_int64(pStmt, 0); in recoverPageCount() 19329 return nPg; in recoverPageCount() [all …]
|
| H A D | sqlite3.c | 249178 int nPg, /* Pages of work to do */ 249181 int nRem = nPg; 249396 int nPg; 249427 nPg = pLeaf->szLeaf - nShift; 249428 memmove(&aPg[4], &aPg[4+nShift], nPg-4); 249429 fts5PutU16(&aPg[2], nPg); 249432 memcpy(&aPg[nPg], aIdx, nIdx); 249433 nPg += nIdx; 249438 assert( nPg>4 || fts5GetU16(aPg)==0 ); 249439 fts5DataWrite(p, iRowid, aPg, nPg); [all …]
|