Lines Matching refs:printone
2514 printone(FILE *out, const char* msg, size_t value) in printone() function
2560 (void)printone(out, buf2, num_blocks * sizeof_block); in _PyDebugAllocatorStats()
2710 (void)printone(out, "# times object malloc called", serialno); in _PyObject_DebugMallocStats()
2713 (void)printone(out, "# arenas allocated total", ntimes_arena_allocated); in _PyObject_DebugMallocStats()
2714 (void)printone(out, "# arenas reclaimed", ntimes_arena_allocated - narenas); in _PyObject_DebugMallocStats()
2715 (void)printone(out, "# arenas highwater mark", narenas_highwater); in _PyObject_DebugMallocStats()
2716 (void)printone(out, "# arenas allocated current", narenas); in _PyObject_DebugMallocStats()
2721 (void)printone(out, buf, narenas * ARENA_SIZE); in _PyObject_DebugMallocStats()
2725 total = printone(out, "# bytes in allocated blocks", allocated_bytes); in _PyObject_DebugMallocStats()
2726 total += printone(out, "# bytes in available blocks", available_bytes); in _PyObject_DebugMallocStats()
2730 total += printone(out, buf, (size_t)numfreepools * POOL_SIZE); in _PyObject_DebugMallocStats()
2732 total += printone(out, "# bytes lost to pool headers", pool_header_bytes); in _PyObject_DebugMallocStats()
2733 total += printone(out, "# bytes lost to quantization", quantization); in _PyObject_DebugMallocStats()
2734 total += printone(out, "# bytes lost to arena alignment", arena_alignment); in _PyObject_DebugMallocStats()
2735 (void)printone(out, "Total", total); in _PyObject_DebugMallocStats()