Searched defs:diffs (Results 1 - 21 of 21) sorted by relevance

/external/chromium_org/third_party/smhasher/src/
H A DDifferentialTest.h22 bool ProcessDifferentials ( std::vector<keytype> & diffs, int reps, bool dumpCollisions ) argument
24 std::sort(diffs.begin(), diffs.end());
31 if(diffs.size())
33 keytype kp = diffs[0];
35 for(int i = 1; i < (int)diffs.size(); i++)
37 if(diffs[i] == kp)
61 kp = diffs[i];
82 printf("%d total collisions, of which %d single collisions were ignored",(int)diffs.size(),ignore);
104 void DiffTestRecurse ( pfHash hash, keytype & k1, keytype & k2, hashtype & h1, hashtype & h2, int start, int bitsleft, std::vector<keytype> & diffs )
144 std::vector<keytype> diffs; local
203 std::vector<keytype> diffs; local
[all...]
/external/oprofile/libpp/
H A Dsymbol.h135 diff_array_t diffs; member in struct:diff_symbol
H A Dformat_output.cpp370 counts_t & c, diff_array_t const & diffs, bool hide_immutable)
382 extra_found_images, diffs[pclass]);
565 do_output(out, *it, it->sample, counts, it->diffs);
369 do_output(ostream & out, symbol_entry const & symb, sample_entry const & sample, counts_t & c, diff_array_t const & diffs, bool hide_immutable) argument
/external/chromium_org/third_party/icu/source/test/intltest/
H A Ddadrcal.cpp223 UnicodeString diffs = diffSet.diffFrom(fromSet, status); local
225 +", SET SOURCE calendar was not set: Differences: "+ diffs
271 UnicodeString diffs = diffSet.diffFrom(toSet, status); local
273 +" Differences: "+ diffs +"', status: "
307 UnicodeString diffs = diffSet.diffFrom(fromSet, status); local
309 +", SOURCE calendar was not set: Differences: "+ diffs
329 UnicodeString diffs = diffSet.diffFrom(fromSet, status); local
331 +", SET SOURCE calendar was not set: Differences: "+ diffs
349 UnicodeString diffs = diffSet.diffFrom(toSet, status); local
350 errln((UnicodeString)"FAIL: "+thisString+", Differences: "+ diffs
[all...]
H A Ddadrfmt.cpp305 UnicodeString diffs = diffSet.diffFrom(fromSet, status); local
307 +", Differences: '"+ diffs
/external/google-diff-match-patch/name/fraser/neil/plaintext/
H A Ddiff_match_patch_test.java132 LinkedList<Diff> diffs = diffList(new Diff(EQUAL, "\u0001\u0002\u0001"), new Diff(INSERT, "\u0002\u0001\u0002"));
137 dmp.diff_charsToLines(diffs, tmpVector);
138 assertEquals("diff_charsToLines:", diffList(new Diff(EQUAL, "alpha\nbeta\nalpha\n"), new Diff(INSERT, "beta\nalpha\nbeta\n")), diffs);
155 diffs = diffList(new Diff(DELETE, chars));
156 dmp.diff_charsToLines(diffs, tmpVector);
157 assertEquals("diff_charsToLines: More than 256.", diffList(new Diff(DELETE, lines)), diffs);
162 LinkedList<Diff> diffs = diffList();
163 dmp.diff_cleanupMerge(diffs);
164 assertEquals("diff_cleanupMerge: Null case.", diffList(), diffs);
166 diffs
923 diff_rebuildtexts(LinkedList<Diff> diffs) argument
938 diffList(Diff... diffs) argument
[all...]
H A Ddiff_match_patch.java159 LinkedList<Diff> diffs;
161 diffs = new LinkedList<Diff>();
162 diffs.add(new Diff(Operation.EQUAL, text1));
163 return diffs;
179 diffs = diff_compute(text1, text2, checklines);
183 diffs.addFirst(new Diff(Operation.EQUAL, commonprefix));
186 diffs.addLast(new Diff(Operation.EQUAL, commonsuffix));
189 diff_cleanupMerge(diffs);
190 return diffs;
206 LinkedList<Diff> diffs
394 diff_charsToLines(LinkedList<Diff> diffs, List<String> lineArray) argument
787 diff_cleanupSemantic(LinkedList<Diff> diffs) argument
864 diff_cleanupSemanticLossless(LinkedList<Diff> diffs) argument
998 diff_cleanupEfficiency(LinkedList<Diff> diffs) argument
1107 diff_cleanupMerge(LinkedList<Diff> diffs) argument
1261 diff_xIndex(LinkedList<Diff> diffs, int loc) argument
1298 diff_prettyHtml(LinkedList<Diff> diffs) argument
1331 diff_text1(LinkedList<Diff> diffs) argument
1347 diff_text2(LinkedList<Diff> diffs) argument
1364 diff_levenshtein(LinkedList<Diff> diffs) argument
1397 diff_toDelta(LinkedList<Diff> diffs) argument
1761 patch_make(LinkedList<Diff> diffs) argument
1780 patch_make(String text1, String text2, LinkedList<Diff> diffs) argument
1793 patch_make(String text1, LinkedList<Diff> diffs) argument
2341 public LinkedList<Diff> diffs; field in class:diff_match_patch.Patch
[all...]
/external/icu/icu4c/source/test/intltest/
H A Ddadrcal.cpp223 UnicodeString diffs = diffSet.diffFrom(fromSet, status); local
225 +", SET SOURCE calendar was not set: Differences: "+ diffs
271 UnicodeString diffs = diffSet.diffFrom(toSet, status); local
273 +" Differences: "+ diffs +"', status: "
307 UnicodeString diffs = diffSet.diffFrom(fromSet, status); local
309 +", SOURCE calendar was not set: Differences: "+ diffs
329 UnicodeString diffs = diffSet.diffFrom(fromSet, status); local
331 +", SET SOURCE calendar was not set: Differences: "+ diffs
349 UnicodeString diffs = diffSet.diffFrom(toSet, status); local
350 errln((UnicodeString)"FAIL: "+thisString+", Differences: "+ diffs
[all...]
H A Ddadrfmt.cpp305 UnicodeString diffs = diffSet.diffFrom(fromSet, status); local
307 +", Differences: '"+ diffs
/external/chromium_org/third_party/skia/tools/
H A Drender_pictures_main.cpp35 "by more than this amount are considered errors, though all diffs are reported. "
279 int diffs[256] = {0}; local
345 diffs[diff]++;
362 if(diffs[i] > 0) {
363 SkDebugf("Number of pixels with max diff of %i is %i\n", i, diffs[i]);
/external/skia/tests/
H A DImageFilterTest.cpp415 int diffs = memcmp(untiledResult.getAddr32(0, y), tiledResult.getAddr32(0, y), untiledResult.rowBytes()); local
416 REPORTER_ASSERT_MESSAGE(reporter, !diffs, filters[i].fName);
417 if (diffs) {
/external/skia/tools/
H A Drender_pictures_main.cpp32 "by more than this amount are considered errors, though all diffs are reported. "
268 int diffs[256] = {0}; local
329 diffs[diff]++;
346 if(diffs[i] > 0) {
347 SkDebugf("Number of pixels with max diff of %i is %i\n", i, diffs[i]);
/external/chromium_org/third_party/skia/experimental/PdfViewer/
H A DSkPdfFont.h428 const SkPdfArray* diffs = fEncodingDict->Differences(parsed); local
430 for (unsigned int i = 0 ; i < diffs->size(); i++) {
431 if ((*diffs)[i]->isInteger()) {
432 j = (unsigned int)(*diffs)[i]->intValue();
433 } else if ((*diffs)[i]->isName()) {
435 fChars[j - fFirstChar].fObj = fCharProcs->get((*diffs)[i]);
/external/chromium_org/third_party/skia/tests/
H A DImageFilterTest.cpp342 int diffs = memcmp(positiveResult1.getAddr32(0, y), negativeResult1.getAddr32(0, y), positiveResult1.rowBytes()); local
343 REPORTER_ASSERT(reporter, !diffs);
344 if (diffs) {
347 diffs = memcmp(positiveResult1.getAddr32(0, y), negativeResult2.getAddr32(0, y), positiveResult1.rowBytes());
348 REPORTER_ASSERT(reporter, !diffs);
349 if (diffs) {
352 diffs = memcmp(positiveResult1.getAddr32(0, y), positiveResult2.getAddr32(0, y), positiveResult1.rowBytes());
353 REPORTER_ASSERT(reporter, !diffs);
354 if (diffs) {
467 int diffs local
524 int diffs = memcmp(result1.getAddr32(0, y), result2.getAddr32(0, y), result1.rowBytes()); local
636 int diffs = memcmp(result1.getAddr32(0, y), result2.getAddr32(0, y), result1.rowBytes()); local
[all...]
/external/lldb/source/Interpreter/
H A DOptions.cpp90 Options::OptionsSetDiff (const OptionSet& set_a, const OptionSet& set_b, OptionSet& diffs) argument
102 diffs.insert(*pos_a);
/external/skia/experimental/PdfViewer/
H A DSkPdfFont.h428 const SkPdfArray* diffs = fEncodingDict->Differences(parsed); local
430 for (unsigned int i = 0 ; i < diffs->size(); i++) {
431 if ((*diffs)[i]->isInteger()) {
432 j = (unsigned int)(*diffs)[i]->intValue();
433 } else if ((*diffs)[i]->isName()) {
435 fChars[j - fFirstChar].fObj = fCharProcs->get((*diffs)[i]);
/external/chromium_org/third_party/icu/source/test/cintltst/
H A Dcmsccoll.c897 uint32_t diffs = 0; local
909 diffs++;
912 diffs++;
914 return diffs;
/external/chromium_org/v8/tools/profviz/
H A Dgnuplot-4.6.3-emscripten.js299 var diffs = []; variable
321 diffs.push(curr-prev);
327 if (diffs.length == 0) {
329 } else if (Runtime.dedup(diffs).length == 1) {
330 type.flatFactor = diffs[0];
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.team.core_3.5.100.R36x_v20100825-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.jface.databinding_1.4.0.I20100601-0800.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/chromium_org/third_party/android_platform/webview/
H A Dframeworks.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/location/ android/location/Address$1.class ...

Completed in 1720 milliseconds