Lines Matching refs:pMap
13009 static void recoverBitmapFree(RecoverBitmap *pMap){
13010 sqlite3_free(pMap);
13014 ** Set the bit associated with page iPg in bitvec pMap.
13016 static void recoverBitmapSet(RecoverBitmap *pMap, i64 iPg){
13017 if( iPg<=pMap->nPg ){
13020 pMap->aElem[iElem] |= (((u32)1) << iBit);
13025 ** Query bitmap object pMap for the state of the bit associated with page
13028 static int recoverBitmapQuery(RecoverBitmap *pMap, i64 iPg){
13030 if( iPg<=pMap->nPg && iPg>0 ){
13033 ret = (pMap->aElem[iElem] & (((u32)1) << iBit)) ? 1 : 0;