Searched refs:printone (Results 1 – 2 of 2) sorted by relevance
/external/python/cpython2/Objects/ |
D | obmalloc.c | 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() [all …]
|
/external/python/cpython3/Objects/ |
D | obmalloc.c | 2429 printone(FILE *out, const char* msg, size_t value) in printone() function 2475 (void)printone(out, buf2, num_blocks * sizeof_block); in _PyDebugAllocatorStats() 2624 (void)printone(out, "# times object malloc called", serialno); in _PyObject_DebugMallocStats() 2625 (void)printone(out, "# arenas allocated total", ntimes_arena_allocated); in _PyObject_DebugMallocStats() 2626 (void)printone(out, "# arenas reclaimed", ntimes_arena_allocated - narenas); in _PyObject_DebugMallocStats() 2627 (void)printone(out, "# arenas highwater mark", narenas_highwater); in _PyObject_DebugMallocStats() 2628 (void)printone(out, "# arenas allocated current", narenas); in _PyObject_DebugMallocStats() 2633 (void)printone(out, buf, narenas * ARENA_SIZE); in _PyObject_DebugMallocStats() 2637 total = printone(out, "# bytes in allocated blocks", allocated_bytes); in _PyObject_DebugMallocStats() 2638 total += printone(out, "# bytes in available blocks", available_bytes); in _PyObject_DebugMallocStats() [all …]
|