| 2503 | } |
| 2504 | |
| 2505 | void |
| 2506 | FabArrayBase::flushTileArrayCache () |
| 2507 | { |
| 2508 | for (auto const& tao_it : m_TheTileArrayCache) { |
| 2509 | for (auto const& tai_it : tao_it.second) { |
| 2510 | m_TAC_stats.recordErase(tai_it.second.nuse); |
| 2511 | } |
| 2512 | } |
| 2513 | m_TheTileArrayCache.clear(); |
| 2514 | #ifdef AMREX_MEM_PROFILING |
| 2515 | m_TAC_stats.bytes = 0L; |
| 2516 | #endif |
| 2517 | } |
| 2518 | |
| 2519 | void |
| 2520 | FabArrayBase::clearThisBD (bool no_assertion) const |
nothing calls this directly
no test coverage detected