MCPcopy Create free account
hub / github.com/AcademySoftwareFoundation/openvdb / print

Method print

openvdb/openvdb/util/PagedArray.h:418–426  ·  view source on GitHub ↗

@brief Print information for debugging

Source from the content-addressed store, hash-verified

416
417 /// @brief Print information for debugging
418 void print(std::ostream& os = std::cout) const
419 {
420 os << "PagedArray:\n"
421 << "\tSize: " << this->size() << " elements\n"
422 << "\tPage table: " << this->pageCount() << " pages\n"
423 << "\tPage size: " << this->pageSize() << " elements\n"
424 << "\tCapacity: " << this->capacity() << " elements\n"
425 << "\tFootprint: " << this->memUsage() << " bytes\n";
426 }
427
428private:
429

Callers 2

visitCsgMethod · 0.45
TEST_FFunction · 0.45

Calls 5

sizeMethod · 0.95
pageCountMethod · 0.95
pageSizeMethod · 0.95
capacityMethod · 0.95
memUsageMethod · 0.95

Tested by 2

visitCsgMethod · 0.36
TEST_FFunction · 0.36