Home
last modified time | relevance | path

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

/external/python/cpython2/Tools/pybench/
Dpybench.py634 def print_comparison(self, compare_to, hidenoise=0, limitnames=None): argument
637 if compare_to.version != self.version:
640 compare_to.name)
647 compare_to.print_header('Comparing with')
659 benchmarks_compatible = self.compatible(compare_to)
673 other = compare_to.tests[name]
712 other_min_time * MILLI_SECONDS * compare_to.warp / self.warp,
715 other_avg_time * MILLI_SECONDS * compare_to.warp / self.warp,
726 (other_total_min_time * compare_to.warp) - 1.0) * PERCENT)
732 (other_total_avg_time * compare_to.warp) - 1.0) * PERCENT)
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/test/Instrumentation/HWAddressSanitizer/
Datomic.ll20 define void @cmpxchg(i64* %ptr, i64 %compare_to, i64 %new_value) sanitize_hwaddress {
24 ; CHECK: cmpxchg i64* %ptr, i64 %compare_to, i64 %new_value seq_cst seq_cst
28 %0 = cmpxchg i64* %ptr, i64 %compare_to, i64 %new_value seq_cst seq_cst
/external/swiftshader/third_party/llvm-7.0/llvm/test/Instrumentation/HWAddressSanitizer/X86/
Datomic.ll25 define void @cmpxchg(i64* %ptr, i64 %compare_to, i64 %new_value) sanitize_hwaddress {
34 ; CHECK: cmpxchg i64* %[[UNTAGGED_PTR]], i64 %compare_to, i64 %new_value seq_cst seq_cst
38 %0 = cmpxchg i64* %ptr, i64 %compare_to, i64 %new_value seq_cst seq_cst
/external/llvm/test/Instrumentation/AddressSanitizer/
Dtest64.ll29 define void @example_cmpxchg(i64* %ptr, i64 %compare_to, i64 %new_value) nounwind uwtable sanitize_…
31 %0 = cmpxchg i64* %ptr, i64 %compare_to, i64 %new_value seq_cst seq_cst
/external/swiftshader/third_party/llvm-7.0/llvm/test/Instrumentation/AddressSanitizer/
Dtest64.ll33 define void @example_cmpxchg(i64* %ptr, i64 %compare_to, i64 %new_value) nounwind uwtable sanitize_…
35 %0 = cmpxchg i64* %ptr, i64 %compare_to, i64 %new_value seq_cst seq_cst
/external/python/cpython3/Lib/test/
Dtest_isinstance.py254 def blowstack(fxn, arg, compare_to): argument
257 tuple_arg = (compare_to,)
Dtest_tracemalloc.py434 statistics = snapshot2.compare_to(snapshot, 'lineno')
466 diff = snapshot2.compare_to(snapshot, 'filename')
500 diff = snapshot2.compare_to(snapshot, 'traceback')
558 stats = snapshot2.compare_to(snapshot, 'lineno')
/external/python/cpython2/Lib/test/
Dtest_isinstance.py259 def blowstack(fxn, arg, compare_to): argument
262 tuple_arg = (compare_to,)
/external/python/cpython3/Doc/library/
Dtracemalloc.rst89 top_stats = snapshot2.compare_to(snapshot1, 'lineno')
318 :meth:`Snapshot.compare_to` and :meth:`Snapshot.statistics` methods.
474 .. method:: compare_to(old_snapshot: Snapshot, key_type: str, cumulative: bool=False)
587 :func:`Snapshot.compare_to` returns a list of :class:`StatisticDiff`
/external/python/cpython3/Lib/
Dtracemalloc.py512 def compare_to(self, old_snapshot, key_type, cumulative=False): member in Snapshot