MCPcopy Create free account
hub / github.com/RenderKit/embree / print_blocks

Method print_blocks

kernels/common/alloc.h:710–726  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

708 };
709
710 void print_blocks()
711 {
712 std::cout << " estimatedSize = " << estimatedSize
713 << ", slotMask = " << slotMask
714 << ", use_single_mode = " << use_single_mode
715 << ", maxGrowSize = " << maxGrowSize
716 << ", defaultBlockSize = " << defaultBlockSize
717 << std::endl;
718
719 std::cout << " used blocks = ";
720 if (usedBlocks.load() != nullptr) usedBlocks.load()->print_list();
721 std::cout << "[END]" << std::endl;
722
723 std::cout << " free blocks = ";
724 if (freeBlocks.load() != nullptr) freeBlocks.load()->print_list();
725 std::cout << "[END]" << std::endl;
726 }
727
728 private:
729

Callers 1

postBuildMethod · 0.80

Calls 2

print_listMethod · 0.80
loadMethod · 0.45

Tested by

no test coverage detected