HomeSort by relevance Sort by last modified time
    Searched refs:diff (Results 251 - 275 of 3197) sorted by null

<<11121314151617181920>>

  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/unittest/
util.py 120 diff = _Mismatch(cnt_s, cnt_t, elem)
121 result.append(diff)
131 diff = _Mismatch(0, cnt_t, elem)
132 result.append(diff)
150 diff = _Mismatch(cnt_s, cnt_t, elem)
151 result.append(diff)
154 diff = _Mismatch(0, cnt_t, elem)
155 result.append(diff)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/unittest/
util.py 120 diff = _Mismatch(cnt_s, cnt_t, elem)
121 result.append(diff)
131 diff = _Mismatch(0, cnt_t, elem)
132 result.append(diff)
150 diff = _Mismatch(cnt_s, cnt_t, elem)
151 result.append(diff)
154 diff = _Mismatch(0, cnt_t, elem)
155 result.append(diff)
  /system/extras/tests/suspend_stress/
suspend_stress.cpp 163 long long diff = timediff_ns(&actual_time, &expected_time); local
164 if (llabs(diff) > NSEC_PER_SEC) {
166 llabs(diff) / NSEC_PER_SEC,
167 (llabs(diff) / NSEC_PER_MSEC) % MSEC_PER_SEC,
168 diff > 0 ? "late" : "early");
170 llabs(diff) / NSEC_PER_SEC,
171 (llabs(diff) / NSEC_PER_MSEC) % MSEC_PER_SEC,
172 diff > 0 ? "late" : "early");
  /external/libxml2/doc/examples/
Makefile.am 106 @$(CHECKER) ./io1 > io1.tmp && diff io1.tmp $(srcdir)/io1.res
108 @$(CHECKER) ./io2 > io2.tmp && diff io2.tmp $(srcdir)/io2.res
118 @$(CHECKER) ./reader1 test2.xml > reader1.tmp && diff reader1.tmp $(srcdir)/reader1.res
120 @$(CHECKER) ./reader2 test2.xml > reader1.tmp && diff reader1.tmp $(srcdir)/reader1.res
122 @$(CHECKER) ./reader3 > reader3.tmp && diff reader3.tmp $(srcdir)/reader3.res
124 @$(CHECKER) ./reader4 test1.xml test2.xml test3.xml > reader4.tmp && diff reader4.tmp $(srcdir)/reader4.res
126 @$(CHECKER) ./testWriter && for i in 1 2 3 4 ; do diff $(srcdir)/writer.xml writer$$i.tmp || break ; done
128 @$(CHECKER) ./tree1 test2.xml > tree1.tmp && diff tree1.tmp $(srcdir)/tree1.res
130 @$(CHECKER) ./tree2 > tree2.tmp && diff tree2.tmp $(srcdir)/tree2.res
132 @$(CHECKER) ./xpath1 test3.xml '//child2' > xpath1.tmp && diff xpath1.tmp $(srcdir)/xpath1.re
    [all...]
  /art/tools/cpp-define-generator/
verify-asm-support 85 if ! diff "$ABS_ASM_SUPPORT_GEN_CHECKED_IN_COPY" "$OUTPUT_FILE"; then
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/tests/
pytree_idempotency.py 30 if not diff(fn, tree):
49 if diff(fn, tree):
69 if diff(fn, tree):
80 def diff(fn, tree): function
87 return os.system("diff -u %s @" % fn)
  /external/autotest/client/tests/signaltest/src/
signaltest.c 82 long diff; local
83 diff = USEC_PER_SEC * ((int) t1.tv_sec - (int) t2.tv_sec);
84 diff += ((int) t1.tv_nsec - (int) t2.tv_nsec) / 1000;
85 return diff;
142 long diff; local
168 diff = calcdiff(after, before);
170 if (diff < stat->min)
171 stat->min = diff;
172 if (diff > stat->max)
173 stat->max = diff;
306 long diff = stat->values[stat->cyclesread & par->bufmsk]; local
    [all...]
  /external/blktrace/
strverscmp.c 79 /* result_type: CMP: return diff; LEN: compare using len_diff/diff */
95 int diff; local
131 while ((diff = c1 - c2) == 0 && c1 != '\0')
144 return diff;
151 return isdigit (*p2) ? -1 : diff;
  /external/e2fsprogs/tests/f_boundscheck/
script 30 diff -u $EXP1 $OUT1 >> $test_name.failed
31 diff -u $EXP2 $OUT2 >> $test_name.failed
  /external/e2fsprogs/tests/f_itable_collision/
script 35 diff -u $EXP1 $OUT1 >> $test_name.failed
36 diff -u $EXP2 $OUT2 >> $test_name.failed
  /external/e2fsprogs/tests/f_super_bad_csum/
script 30 diff -u $EXP1 $OUT1 >> $test_name.failed
31 diff -u $EXP2 $OUT2 >> $test_name.failed
  /external/e2fsprogs/tests/j_recover_csum2_32bit/
script 29 diff -u $EXP1 $OUT1 >> $test_name.failed
30 diff -u $EXP2 $OUT2 >> $test_name.failed
  /external/e2fsprogs/tests/j_recover_csum2_64bit/
script 29 diff -u $EXP1 $OUT1 >> $test_name.failed
30 diff -u $EXP2 $OUT2 >> $test_name.failed
  /external/libcxx/utils/
sym_diff.py 16 from libcxx.sym_check import diff, util
58 added, removed, changed = diff.diff(old_syms_list, new_syms_list)
61 report, is_break, is_different = diff.report_diff(
  /external/ltp/testcases/commands/lsmod/
lsmod01.sh 42 diff temp1 temp2
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_cancel/
3-1.c 96 double diff; local
149 diff = cleanup_time.tv_sec - main_time.tv_sec;
150 diff +=
152 if (diff < 0) {
  /external/ltp/tools/pounder21/test_scripts/
random_syscall 63 # Diff
64 DMESG_DIFF_LINES=`diff "$POUNDER_TMPDIR/randasys-before" "$POUNDER_TMPDIR/randasys-after" | wc -l`
65 diff "$POUNDER_TMPDIR/randasys-before" "$POUNDER_TMPDIR/randasys-after"
  /external/python/cpython2/Lib/lib2to3/tests/
pytree_idempotency.py 30 if not diff(fn, tree):
49 if diff(fn, tree):
69 if diff(fn, tree):
80 def diff(fn, tree): function
87 return os.system("diff -u %s @" % fn)
  /frameworks/opt/datetimepicker/src/com/android/datetimepicker/
Utils.java 115 int diff = Time.THURSDAY - firstDayOfWeek; local
116 if (diff < 0) {
117 diff += 7;
119 int refDay = Time.EPOCH_JULIAN_DAY - diff;
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/clang/Tooling/ASTDiff/
ASTDiffInternal.h 17 namespace diff { namespace in namespace:clang
46 } // end namespace diff
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/clang/Tooling/ASTDiff/
ASTDiffInternal.h 17 namespace diff { namespace in namespace:clang
46 } // end namespace diff
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/clang/Tooling/ASTDiff/
ASTDiffInternal.h 17 namespace diff { namespace in namespace:clang
46 } // end namespace diff
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/clang/Tooling/ASTDiff/
ASTDiffInternal.h 17 namespace diff { namespace in namespace:clang
46 } // end namespace diff
  /prebuilts/clang/host/linux-x86/clang-4579689/include/clang/Tooling/ASTDiff/
ASTDiffInternal.h 17 namespace diff { namespace in namespace:clang
46 } // end namespace diff
  /prebuilts/clang/host/linux-x86/clang-4630689/include/clang/Tooling/ASTDiff/
ASTDiffInternal.h 17 namespace diff { namespace in namespace:clang
46 } // end namespace diff

Completed in 974 milliseconds

<<11121314151617181920>>