MCPcopy Create free account
hub / github.com/Kitware/VTK / HasAnyGhostBitSet

Method HasAnyGhostBitSet

Common/DataModel/vtkFieldData.cxx:776–785  ·  view source on GitHub ↗

------------------------------------------------------------------------------

Source from the content-addressed store, hash-verified

774
775//------------------------------------------------------------------------------
776bool 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//------------------------------------------------------------------------------
788unsigned long vtkFieldData::GetActualMemorySize()

Callers 11

HasAnyGhostPointsMethod · 0.80
HasAnyGhostCellsMethod · 0.80
RemoveGhostCellsMethod · 0.80
HasAnyBlankPointsMethod · 0.80
HasAnyBlankCellsMethod · 0.80
HasAnyBlankCellsMethod · 0.80
HasAnyGhostCellsMethod · 0.80
HasAnyBlankPointsMethod · 0.80
HasAnyBlankCellsMethod · 0.80
ExtractStructuredMethod · 0.80
RequestDataMethod · 0.80

Calls 2

ForFunction · 0.50
GetNumberOfValuesMethod · 0.45

Tested by

no test coverage detected