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 | 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() [all …]
|