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

<<21222324252627282930>>

  /prebuilts/go/darwin-x86/test/fixedbugs/
issue18902.go 118 diff := lineVal - prevVal
119 if diff < 0 {
120 diff = -diff
122 if diff != 0 {
124 sumdiffs += float64(diff)
  /prebuilts/go/linux-x86/test/fixedbugs/
issue18902.go 118 diff := lineVal - prevVal
119 if diff < 0 {
120 diff = -diff
122 if diff != 0 {
124 sumdiffs += float64(diff)
  /test/suite_harness/common/util/src/com/android/compatibility/common/util/
Stat.java 67 double diff = average - data[i]; local
68 sumOfSquares += diff * diff;
  /external/icu/icu4c/source/test/cintltst/
udatatst.c 1579 uint8_t diff[8]; local
    [all...]
  /frameworks/base/core/java/android/app/
ProgressDialog.java 366 * @param diff the amount by which the current progress will be incremented,
369 public void incrementProgressBy(int diff) {
371 mProgress.incrementProgressBy(diff);
374 mIncrementBy += diff;
381 * @param diff the amount by which the current secondary progress will be incremented,
384 public void incrementSecondaryProgressBy(int diff) {
386 mProgress.incrementSecondaryProgressBy(diff);
389 mIncrementSecondaryBy += diff;
  /prebuilts/go/darwin-x86/src/math/big/
sqrt_test.go 77 diff := new(Float).Sub(sq, x)
78 err := diff.Abs(diff).SetPrec(prec)
  /prebuilts/go/linux-x86/src/math/big/
sqrt_test.go 77 diff := new(Float).Sub(sq, x)
78 err := diff.Abs(diff).SetPrec(prec)
  /system/sepolicy/tools/sepolicy-analyze/
typecmp.c 7 fprintf(stderr, "\ttypecmp [-d|--diff] [-e|--equiv]\n");
157 static int analyze_types(policydb_t * policydb, char diff, char equiv)
231 if (diff) {
268 char ch, diff = 0, equiv = 0; local
271 {"diff", no_argument, NULL, 'd'},
279 diff = 1;
290 if (!(diff || equiv)) {
294 return analyze_types(policydb, diff, equiv);
  /external/boringssl/src/util/
diff_asm.go 43 func diff(from, to string) error { func
44 cmd := exec.Command("diff", "-u", "--", from, to)
48 // diff returns exit code 1 if the files differ but it was otherwise
108 if err := diff(filepath.Join(*opensslDir, opensslFile), filepath.Join(*boringsslDir, file)); err != nil {
  /external/bzip2/
bzdiff 4 # Bzcmp/diff wrapped for bzip2,
7 # Bzcmp and bzdiff are used to invoke the cmp or the diff pro-
9 # directly to cmp or diff. If only 1 file is specified, then
12 # necessary) and fed to cmp or diff. The exit status from cmp
13 # or diff is preserved.
19 *) comp=${DIFF-diff} ;;
  /external/clang/tools/clang-format/
clang-format-diff.py 3 #===- clang-format-diff.py - ClangFormat Diff Reformatter ----*- python -*--===#
13 ClangFormat Diff Reformatter
16 This script reads input from a unified diff and reformats all the changed
20 git diff -U0 HEAD^ | clang-format-diff.py -p1 -i
21 svn diff --diff-cmd=diff -x-U0 | clang-format-diff.py -
    [all...]
  /external/e2fsprogs/tests/defaults/
e_script 44 diff $DIFF_OPTS $EXPECT $OUT > $test_name.failed
  /external/e2fsprogs/tests/f_detect_junk/
script 38 diff -u $EXP $OUT >> $test_name.failed
  /external/e2fsprogs/tests/f_detect_xfs/
script 35 diff -u $EXP $OUT >> $test_name.failed
  /external/e2fsprogs/tests/f_uninit_cat/
script 32 diff -u $EXP $OUT >> $test_name.failed
  /external/libcups/
update_libcups.sh 41 echo "== create diff in between rev $CURRENT_REV and rev $NEW_REV =="
43 git diff $CURRENT_REV $NEW_REV -- cups/ filter/ LICENSE.txt > $TMP_DIFF
44 echo "Diff in $TMP_DIFF"
47 echo "== Apply diff =="
  /external/libvpx/libvpx/build/make/
version.sh 74 diff $$.tmp ${out_file} >/dev/null 2>&1 || cat $$.tmp > ${out_file}
  /external/libvpx/libvpx/test/
dct32x32_test.cc 146 const int32_t diff = local
149 const int32_t diff = dst[j] - src[j];
151 const uint32_t error = diff * diff;
283 const int diff = local
286 const int diff = dst[j] - src[j];
288 const int error = diff * diff;
  /external/libxaac/decoder/
ixheaacd_basic_ops40.h 355 WORD64 diff; local
357 diff = (WORD64)a - (WORD64)b;
359 return diff;
363 WORD64 diff; local
365 diff = ixheaacd_sub64(a, b);
368 if (((WORD64)diff ^ (WORD64)a) & (WORD64)MIN_64) {
369 diff = (a < 0L) ? MIN_64 : MAX_64;
373 return (diff);
  /external/llvm/utils/
findmisopt 120 diff "$out" "$optout" > /dev/null
122 echo "Diff fails with these switches:"
125 diff "$out" "$optout" | head
  /external/ltp/tools/pounder21/test_scripts/
ide_cdrom_copy 68 # Diff the copy
70 diff -rq "$MOUNTPOINT" "$DESTINATION/`basename $MOUNTPOINT`"
time_drift 57 diff -u $POUNDER_TMPDIR/ntpdrift-$$ $LOGFILE | while read a b c d e field drift garbage; do
  /external/skia/tools/fonts/
generate_fir_coeff.py 114 coeff_pkg = [IndexTracker(i, diff) for i, diff in enumerate(coeff_diff)]
  /external/skqp/tools/
generate_fir_coeff.py 102 coeff_pkg = [IndexTracker(i, diff) for i, diff in enumerate(coeff_diff)]
  /external/swiftshader/third_party/LLVM/utils/
codegen-diff 83 codegen-diff
87 codegen-diff [-d] I<OBJDUMP-OUTPUT-FILE> I<GDB-DISASSEMBLY-FILE>
91 B<codegen-diff> is a program that tries to show you the differences
106 Finally, you run B<codegen-diff>, as indicated in the Synopsis section of
125 B<codegen-diff> was written by Brian Gaeke.

Completed in 1496 milliseconds

<<21222324252627282930>>