| 231 | } |
| 232 | |
| 233 | Long |
| 234 | FabArrayBase::CPC::bytes () const |
| 235 | { |
| 236 | Long cnt = sizeof(FabArrayBase::CPC); |
| 237 | |
| 238 | if (m_LocTags) { |
| 239 | cnt += amrex::bytesOf(*m_LocTags); |
| 240 | } |
| 241 | |
| 242 | if (m_SndTags) { |
| 243 | cnt += FabArrayBase::bytesOfMapOfCopyComTagContainers(*m_SndTags); |
| 244 | } |
| 245 | |
| 246 | if (m_RcvTags) { |
| 247 | cnt += FabArrayBase::bytesOfMapOfCopyComTagContainers(*m_RcvTags); |
| 248 | } |
| 249 | |
| 250 | return cnt; |
| 251 | } |
| 252 | |
| 253 | Long |
| 254 | FabArrayBase::FB::bytes () const |
no test coverage detected