Searched refs:compare_to (Results 1 – 10 of 10) sorted by relevance
/external/python/cpython2/Tools/pybench/ |
D | pybench.py | 634 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/ |
D | atomic.ll | 20 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/ |
D | atomic.ll | 25 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/ |
D | test64.ll | 29 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/ |
D | test64.ll | 33 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/ |
D | test_isinstance.py | 254 def blowstack(fxn, arg, compare_to): argument 257 tuple_arg = (compare_to,)
|
D | test_tracemalloc.py | 434 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/ |
D | test_isinstance.py | 259 def blowstack(fxn, arg, compare_to): argument 262 tuple_arg = (compare_to,)
|
/external/python/cpython3/Doc/library/ |
D | tracemalloc.rst | 89 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/ |
D | tracemalloc.py | 512 def compare_to(self, old_snapshot, key_type, cumulative=False): member in Snapshot
|