Lines Matching defs:pMap
16869 static void recoverBitmapFree(RecoverBitmap *pMap){
16870 sqlite3_free(pMap);
16874 ** Set the bit associated with page iPg in bitvec pMap.
16876 static void recoverBitmapSet(RecoverBitmap *pMap, i64 iPg){
16877 if( iPg<=pMap->nPg ){
16880 pMap->aElem[iElem] |= (((u32)1) << iBit);
16885 ** Query bitmap object pMap for the state of the bit associated with page
16888 static int recoverBitmapQuery(RecoverBitmap *pMap, i64 iPg){
16890 if( iPg<=pMap->nPg && iPg>0 ){
16893 ret = (pMap->aElem[iElem] & (((u32)1) << iBit)) ? 1 : 0;