Searched refs:StatisticDiff (Results 1 – 3 of 3) sorted by relevance
/external/python/cpython3/Lib/test/ |
D | test_tracemalloc.py | 436 tracemalloc.StatisticDiff(tb_a_5, 5002, 5000, 2, 1), 437 tracemalloc.StatisticDiff(tb_c_578, 400, 400, 1, 1), 438 tracemalloc.StatisticDiff(tb_b_1, 0, -66, 0, -1), 439 tracemalloc.StatisticDiff(tb_0, 0, -7, 0, -1), 440 tracemalloc.StatisticDiff(tb_a_2, 30, 0, 3, 0), 468 tracemalloc.StatisticDiff(tb_a, 5032, 5000, 5, 1), 469 tracemalloc.StatisticDiff(tb_c, 400, 400, 1, 1), 470 tracemalloc.StatisticDiff(tb_b, 0, -66, 0, -1), 471 tracemalloc.StatisticDiff(tb_0, 0, -7, 0, -1), 502 tracemalloc.StatisticDiff(tb2, 5002, 5000, 2, 1), [all …]
|
/external/python/cpython3/Lib/ |
D | tracemalloc.py | 68 class StatisticDiff: class 121 stat = StatisticDiff(traceback, 125 stat = StatisticDiff(traceback, 131 stat = StatisticDiff(traceback, 0, -stat.size, 0, -stat.count) 521 statistics.sort(reverse=True, key=StatisticDiff._sort_key)
|
/external/python/cpython3/Doc/library/ |
D | tracemalloc.rst | 477 list of :class:`StatisticDiff` instances grouped by *key_type*. 483 of :attr:`StatisticDiff.size_diff`, :attr:`StatisticDiff.size`, absolute 484 value of :attr:`StatisticDiff.count_diff`, :attr:`Statistic.count` and 485 then by :attr:`StatisticDiff.traceback`. 563 See also the :class:`StatisticDiff` class. 579 StatisticDiff section in API 582 .. class:: StatisticDiff 587 :func:`Snapshot.compare_to` returns a list of :class:`StatisticDiff`
|