Home
last modified time | relevance | path

Searched refs:compare_to (Results 1 – 5 of 5) sorted by relevance

/third_party/lwip/src/core/
Dtimeouts.c75 #define TIME_LESS_THAN(t, compare_to) ( (((u32_t)((t)-(compare_to))) > LWIP_MAX_TIMEOUT) ? 1 : 0 ) argument
/third_party/python/Lib/test/
Dtest_isinstance.py352 def blowstack(fxn, arg, compare_to): argument
355 tuple_arg = (compare_to,)
Dtest_tracemalloc.py500 statistics = snapshot2.compare_to(snapshot, 'lineno')
532 diff = snapshot2.compare_to(snapshot, 'filename')
566 diff = snapshot2.compare_to(snapshot, 'traceback')
624 stats = snapshot2.compare_to(snapshot, 'lineno')
/third_party/python/Doc/library/
Dtracemalloc.rst89 top_stats = snapshot2.compare_to(snapshot1, 'lineno')
378 :meth:`Snapshot.compare_to` and :meth:`Snapshot.statistics` methods.
534 .. method:: compare_to(old_snapshot: Snapshot, key_type: str, cumulative: bool=False)
647 :func:`Snapshot.compare_to` returns a list of :class:`StatisticDiff`
/third_party/python/Lib/
Dtracemalloc.py538 def compare_to(self, old_snapshot, key_type, cumulative=False): member in Snapshot