Home
last modified time | relevance | path

Searched refs:compare_to (Results 1 – 14 of 14) 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/openscreen/third_party/mozilla/
Durl_parse_internal.cc56 const char* compare_to) { in CompareSchemeComponent() argument
58 return compare_to[0] == 0; // When component is empty, match empty scheme. in CompareSchemeComponent()
61 if (tolower(spec[i]) != compare_to[i]) { in CompareSchemeComponent()
Durl_parse_internal.h42 const char* compare_to);
/external/llvm-project/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/llvm-project/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/llvm-project/llvm/test/Instrumentation/AddressSanitizer/
Dtest64.ll35 define void @example_cmpxchg(i64* %ptr, i64 %compare_to, i64 %new_value) nounwind uwtable sanitize_…
37 %0 = cmpxchg i64* %ptr, i64 %compare_to, i64 %new_value seq_cst seq_cst
/external/python/cpython2/Lib/test/
Dtest_isinstance.py259 def blowstack(fxn, arg, compare_to): argument
262 tuple_arg = (compare_to,)
/external/python/cpython3/Lib/test/
Dtest_isinstance.py285 def blowstack(fxn, arg, compare_to): argument
288 tuple_arg = (compare_to,)
Dtest_tracemalloc.py480 statistics = snapshot2.compare_to(snapshot, 'lineno')
512 diff = snapshot2.compare_to(snapshot, 'filename')
546 diff = snapshot2.compare_to(snapshot, 'traceback')
604 stats = snapshot2.compare_to(snapshot, 'lineno')
/external/crosvm/sys_util/src/
Dscoped_signal_handler.rs257 ($compare_to:expr) => {{
258 let expected: usize = $compare_to;
/external/python/cpython3/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`
/external/python/cpython3/Lib/
Dtracemalloc.py538 def compare_to(self, old_snapshot, key_type, cumulative=False): member in Snapshot
/external/tensorflow/third_party/systemlibs/
Dprotobuf.bzl429 if current.compare_to(expected) < 0: