Lines Matching refs:printone
1753 printone(const char* msg, size_t value) in printone() function
1901 (void)printone("# times object malloc called", serialno); in _PyObject_DebugMallocStats()
1903 (void)printone("# arenas allocated total", ntimes_arena_allocated); in _PyObject_DebugMallocStats()
1904 (void)printone("# arenas reclaimed", ntimes_arena_allocated - narenas); in _PyObject_DebugMallocStats()
1905 (void)printone("# arenas highwater mark", narenas_highwater); in _PyObject_DebugMallocStats()
1906 (void)printone("# arenas allocated current", narenas); in _PyObject_DebugMallocStats()
1911 (void)printone(buf, narenas * ARENA_SIZE); in _PyObject_DebugMallocStats()
1915 total = printone("# bytes in allocated blocks", allocated_bytes); in _PyObject_DebugMallocStats()
1916 total += printone("# bytes in available blocks", available_bytes); in _PyObject_DebugMallocStats()
1920 total += printone(buf, (size_t)numfreepools * POOL_SIZE); in _PyObject_DebugMallocStats()
1922 total += printone("# bytes lost to pool headers", pool_header_bytes); in _PyObject_DebugMallocStats()
1923 total += printone("# bytes lost to quantization", quantization); in _PyObject_DebugMallocStats()
1924 total += printone("# bytes lost to arena alignment", arena_alignment); in _PyObject_DebugMallocStats()
1925 (void)printone("Total", total); in _PyObject_DebugMallocStats()