** Set the bit associated with page iPg in bitvec pMap. */
| 13867 | ** Set the bit associated with page iPg in bitvec pMap. |
| 13868 | */ |
| 13869 | static void recoverBitmapSet(RecoverBitmap *pMap, i64 iPg){ |
| 13870 | if( iPg<=pMap->nPg ){ |
| 13871 | int iElem = (iPg / 32); |
| 13872 | int iBit = (iPg % 32); |
| 13873 | pMap->aElem[iElem] |= (((u32)1) << iBit); |
| 13874 | } |
| 13875 | } |
| 13876 | |
| 13877 | /* |
| 13878 | ** Query bitmap object pMap for the state of the bit associated with page |
no outgoing calls
no test coverage detected