| 1281 | } |
| 1282 | |
| 1283 | void |
| 1284 | FabArrayBase::flushFBCache () |
| 1285 | { |
| 1286 | for (auto const& it : m_TheFBCache) |
| 1287 | { |
| 1288 | m_FBC_stats.recordErase(it.second->m_nuse); |
| 1289 | delete it.second; |
| 1290 | } |
| 1291 | m_TheFBCache.clear(); |
| 1292 | #ifdef AMREX_MEM_PROFILING |
| 1293 | m_FBC_stats.bytes = 0L; |
| 1294 | #endif |
| 1295 | } |
| 1296 | |
| 1297 | const FabArrayBase::FB& |
| 1298 | FabArrayBase::getFB (const IntVect& nghost, const Periodicity& period, |
nothing calls this directly
no test coverage detected