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

Method Use64BitStorage

Common/DataModel/vtkCellArray.cxx:1048–1060  ·  view source on GitHub ↗

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

Source from the content-addressed store, hash-verified

1046
1047//------------------------------------------------------------------------------
1048void vtkCellArray::Use64BitStorage()
1049{
1050 if (this->IsStorage64Bit())
1051 {
1052 this->Initialize();
1053 return;
1054 }
1055 this->Offsets = vtkSmartPointer<AOSArray64>::New();
1056 this->Connectivity = vtkSmartPointer<AOSArray64>::New();
1057 this->GetOffsetsAOSArray64()->InsertNextValue(0);
1058 this->StorageType = StorageTypes::Int64;
1059 this->Modified();
1060}
1061
1062//------------------------------------------------------------------------------
1063void vtkCellArray::UseDefaultStorage()

Callers 9

UseDefaultStorageMethod · 0.95
ReadLabelListListMethod · 0.80
CreateCellFacesMethod · 0.80
RemoveGhostCellsMethod · 0.80
RemoveGhostCellsMethod · 0.80
NewMethod · 0.80
TestUse64BitStorageFunction · 0.80
RunTestFunction · 0.80

Calls 4

InitializeMethod · 0.95
NewFunction · 0.50
InsertNextValueMethod · 0.45
ModifiedMethod · 0.45

Tested by 3

NewMethod · 0.64
TestUse64BitStorageFunction · 0.64
RunTestFunction · 0.64