------------------------------------------------------------------------------
| 774 | |
| 775 | //------------------------------------------------------------------------------ |
| 776 | bool vtkFieldData::HasAnyGhostBitSet(int bitFlag) |
| 777 | { |
| 778 | if (this->GhostArray) |
| 779 | { |
| 780 | IsAnyBitSetFunctor isAnyBitSetFunctor(this->GhostArray, bitFlag); |
| 781 | vtkSMPTools::For(0, this->GhostArray->GetNumberOfValues(), isAnyBitSetFunctor); |
| 782 | return isAnyBitSetFunctor.IsAnyBit; |
| 783 | } |
| 784 | return false; |
| 785 | } |
| 786 | |
| 787 | //------------------------------------------------------------------------------ |
| 788 | unsigned long vtkFieldData::GetActualMemorySize() |
no test coverage detected