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

<<31323334353637383940>>

  /external/fio/t/
dedupe.c 199 int diff; local
207 diff = memcmp(i->hash, c->hash, sizeof(i->hash));
208 if (diff < 0)
210 else if (diff > 0)
  /external/jdiff/src/jdiff/
ClassDiff.java 84 public static String diff(ClassAPI oldClass, ClassAPI newClass) { method in class:ClassDiff
MergeChanges.java 95 ctorDiff.addModifiersChange(removedCtor.modifiers_.diff(addedCtor.modifiers_));
107 ctorDiff.documentationChange_ = Diff.saveDocDiffs(pkgDiff.name_, classDiff.name_, removedCtor.doc_, addedCtor.doc_, id, title);
155 methodDiff.addModifiersChange(removedMethod.modifiers_.diff(addedMethod.modifiers_));
167 methodDiff.documentationChange_ = Diff.saveDocDiffs(pkgDiff.name_, classDiff.name_, removedMethod.doc_, addedMethod.doc_, id, title);
233 methodDiff.addModifiersChange(removedMethod.modifiers_.diff(addedMethod.modifiers_));
245 methodDiff.documentationChange_ = Diff.saveDocDiffs(pkgDiff.name_, classDiff.name_, removedMethod.doc_, addedMethod.doc_, id, title);
276 if (Diff.showAllChanges &&
286 if (Diff.showAllChanges &&
316 fieldDiff.addModifiersChange(removedField.modifiers_.diff(addedField.modifiers_));
325 fieldDiff.documentationChange_ = Diff.saveDocDiffs(pkgDiff.name_, classDiff.name_, removedField.doc_, addedField.doc_, id, title)
    [all...]
  /external/libcxx/utils/libcxx/sym_check/
diff.py 11 diff - A set of functions for diff-ing two symbol lists.
51 def diff(old, new): function
  /external/libvpx/libvpx/vp9/encoder/
vp9_block.h 27 } diff; typedef in typeref:struct:__anon26192
  /external/libvpx/libvpx/vpx_dsp/x86/
subtract_sse2.asm 16 ; int16_t *diff, ptrdiff_t diff_stride,
22 rows, cols, diff, diff_stride, src, src_stride, \
  /external/ltp/testcases/commands/mv/
mv_tests.sh 120 diff -w -B -q tst_mv.out tst_mv.exp > tst_mv.err 2>&1
  /external/ltp/testcases/commands/nm/
nm01 106 if diff nm1.out nm2.out > /dev/null; then
  /external/ltp/testcases/network/xinetd/
xinetd_tests.sh 32 tst_check_cmds xinetd diff ip telnet
  /external/python/cpython2/Demo/pdist/
rcvs.py 21 # - cvs diff -rREVA -rREVB
156 def diff(self, opts = []): member in class:MyFile
178 print 'diff %s -r%s %s' % (flags, rev, fn)
179 sts = os.system('diff %s %s %s' % (flags, tf.name, fn))
293 def diff(self, files, opts): member in class:RCVS
295 e.diff(opts)
432 """diff [difflags] [file] ..."""
433 self.cvs.diff(files, opts)
  /external/tensorflow/tensorflow/examples/android/jni/object_tracking/
optical_flow.cc 318 int32_t diff = static_cast<int32_t>(extract_row[x]) - local
325 jtr[0] += dx * diff;
326 jtr[1] += dy * diff;
328 sum_diff += diff;
  /external/webp/src/dsp/
yuv_neon.c 189 uint64_t diff; local
203 diff = vgetq_lane_u64(sum, 0) + vgetq_lane_u64(sum, 1);
208 diff += (uint64_t)(abs(diff_y));
210 return diff;
  /external/webrtc/webrtc/modules/audio_coding/codecs/ilbc/
defines.h 167 size_t diff; member in struct:IlbcEncoder_
  /frameworks/base/packages/PrintSpooler/src/com/android/printspooler/util/
MediaSizeUtils.java 114 (newConfig.diff(mCurrentConfig) & ActivityInfo.CONFIG_LOCALE) != 0) {
  /packages/apps/Calendar/src/com/android/calendar/month/
SimpleWeekView.java 265 int diff = time.weekDay - mWeekStart; local
266 if (diff < 0) {
267 diff += 7;
269 time.monthDay -= diff;
  /prebuilts/devtools/
update_jars.sh 111 if ! diff -q $dstf $i 1>/dev/null ; then
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/utils/libcxx/sym_check/
diff.py 11 diff - A set of functions for diff-ing two symbol lists.
51 def diff(old, new): function
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/sdk/
ProjectState.java 303 LibraryDifference diff = new LibraryDifference(); local
336 diff.added = true;
342 diff.removed = oldLibraries.size() > 0;
348 return diff;
  /toolchain/binutils/binutils-2.27/gas/testsuite/gas/mips/
micromips@hilo-diff-eb.d 2 #name: MIPS hilo-diff o32/EB
4 #source: hilo-diff.s
mips16@hilo-diff-eb.d 2 #name: MIPS hilo-diff o32/EB
4 #source: hilo-diff.s
  /tools/repohooks/rh/
hooks_unittest.py 278 diff = [rh.git.RawDiffEntry(file=x) for x in files]
279 ret = func(self.project, 'commit', 'desc', diff, options=self.options)
369 diff = [rh.git.RawDiffEntry(file='foo.go')]
371 self.project, 'commit', 'desc', diff, options=self.options)
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/collator/
AlphabeticIndexTest.java 695 Collection<String> diff = new TreeSet<String>(firstCharacters); local
    [all...]
  /external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/printer/lexicalpreservation/
LexicalDifferenceCalculatorTest.java 272 Difference diff = ldc.calculateListAdditionDifference( local
278 assertEquals(Difference.DifferenceElement.kept(CsmElement.token(GeneratedJavaParserConstants.LBRACE)), diff.getElements().get(index++));
279 assertEquals(Difference.DifferenceElement.kept(CsmElement.newline()), diff.getElements().get(index++));
280 assertEquals(Difference.DifferenceElement.added(CsmElement.indent()), diff.getElements().get(index++));
281 assertTrue(isAddedChild(diff.getElements().get(index++), ExpressionStmt.class));
282 assertEquals(Difference.DifferenceElement.added(CsmElement.newline()), diff.getElements().get(index++));
283 assertEquals(Difference.DifferenceElement.added(CsmElement.unindent()), diff.getElements().get(index++));
284 assertEquals(Difference.DifferenceElement.kept(CsmElement.token(GeneratedJavaParserConstants.RBRACE)), diff.getElements().get(index++));
285 assertEquals(index, diff.getElements().size());
  /external/libnl/lib/route/
neightbl.c 62 int diff = 0; local
66 diff |= NT_DIFF(FAMILY, a->nt_family != b->nt_family);
67 diff |= NT_DIFF(NAME, strcmp(a->nt_name, b->nt_name));
68 diff |= NT_DIFF(THRESH1, a->nt_gc_thresh1 != b->nt_gc_thresh1);
69 diff |= NT_DIFF(THRESH2, a->nt_gc_thresh2 != b->nt_gc_thresh2);
70 diff |= NT_DIFF(THRESH3, a->nt_gc_thresh3 != b->nt_gc_thresh3);
71 diff |= NT_DIFF(GC_INTERVAL, a->nt_gc_interval != b->nt_gc_interval);
77 return diff;
105 return diff;
  /external/ppp/pppd/
tty.c 1236 int diff; local
1240 diff = (now.tv_sec - tp->tv_sec) * 10 + (now.tv_usec - tp->tv_usec);
1241 if (diff > 0)
    [all...]

Completed in 1572 milliseconds

<<31323334353637383940>>