Searched refs:nPg (Results 1 – 2 of 2) sorted by relevance
| /freebsd/contrib/sqlite3/ |
| H A D | shell.c | 20876 i64 nPg; /* Size of bitmap */ member 20913 i64 nPg; /* Size of db in pages */ member 21120 static RecoverBitmap *recoverBitmapAlloc(sqlite3_recover *p, i64 nPg){ in recoverBitmapAlloc() argument 21121 int nElem = (nPg+1+31) / 32; in recoverBitmapAlloc() 21126 pRet->nPg = nPg; in recoverBitmapAlloc() 21142 if( iPg<=pMap->nPg ){ in recoverBitmapSet() 21155 if( iPg<=pMap->nPg && iPg>0 ){ in recoverBitmapQuery() 21355 i64 nPg = 0; in recoverPageCount() local 21361 nPg = sqlite3_column_int64(pStmt, 0); in recoverPageCount() 21365 return nPg; in recoverPageCount() [all …]
|
| H A D | sqlite3.c | 255787 int nPg, /* Pages of work to do */ argument 255790 int nRem = nPg; 256005 int nPg; local 256036 nPg = pLeaf->szLeaf - nShift; 256037 memmove(&aPg[4], &aPg[4+nShift], nPg-4); 256038 fts5PutU16(&aPg[2], nPg); 256041 memcpy(&aPg[nPg], aIdx, nIdx); 256042 nPg += nIdx; 256047 assert( nPg>4 || fts5GetU16(aPg)==0 ); 256048 fts5DataWrite(p, iRowid, aPg, nPg); [all …]
|