MCPcopy Create free account
hub / github.com/OpenFOAM/OpenFOAM-dev / table_

Function table_

src/OpenFOAM/containers/HashTables/HashTable/HashTableIO.C:37–51  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

35 HashTableCore(),
36 nElmts_(0),
37 tableSize_(HashTableCore::canonicalSize(size)),
38 table_(nullptr)
39{
40 if (tableSize_)
41 {
42 table_ = new hashedEntry*[tableSize_];
43
44 for (label hashIdx = 0; hashIdx < tableSize_; hashIdx++)
45 {
46 table_[hashIdx] = 0;
47 }
48 }
49
50 operator>>(is, *this);
51}
52
53
54// * * * * * * * * * * * * * * Member Functions * * * * * * * * * * * * * * //

Callers 6

PrintTable.CFile · 0.85
seulex.CFile · 0.85
solveFunction · 0.85
HashTable.CFile · 0.85
TableBase.CFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected