HomeSort by relevance Sort by last modified time
    Searched refs:diffs (Results 1 - 25 of 93) sorted by null

1 2 3 4

  /external/llvm/utils/
findoptdiff 26 # for each pass, if they do differ, are placed in a diffs.# file.
80 diffs="diffs."$((counter++))
81 diff "$opt1ll" "$opt2ll" > $diffs
87 head $diffs
88 echo 'Switches:' $switches_to_use >> $diffs
90 rm $diffs
  /external/swiftshader/third_party/LLVM/utils/
findoptdiff 26 # for each pass, if they do differ, are placed in a diffs.# file.
80 diffs="diffs."$((counter++))
81 diff "$opt1ll" "$opt2ll" > $diffs
87 head $diffs
88 echo 'Switches:' $switches_to_use >> $diffs
90 rm $diffs
  /external/libmpeg2/common/x86/
ideint_spatial_filter_ssse3.c 106 __m128i diff, diffs[3]; local
114 diffs[0] = _mm_setzero_si128();
115 diffs[1] = _mm_setzero_si128();
116 diffs[2] = _mm_setzero_si128();
145 diffs[0] = _mm_add_epi64(diffs[0], diff);
148 diffs[1] = _mm_add_epi64(diffs[1], diff);
151 diffs[2] = _mm_add_epi64(diffs[2], diff)
    [all...]
  /frameworks/base/core/tests/coretests/src/android/os/
WorkSourceTest.java 102 // Diffs don't take WorkChains into account for the sake of backward compatibility.
258 // Diffs against a worksource with no chains.
265 ArrayList<WorkChain>[] diffs = WorkSource.diffChains(ws1, ws2); local
266 assertNotNull(diffs[0]);
267 assertNull(diffs[1]);
268 assertEquals(2, diffs[0].size());
269 assertEquals(ws2.getWorkChains(), diffs[0]); local
272 diffs = WorkSource.diffChains(ws2, ws1);
273 assertNull(diffs[0]);
274 assertNotNull(diffs[1])
276 assertEquals(ws2.getWorkChains(), diffs[1]); local
290 ArrayList<WorkChain>[] diffs = WorkSource.diffChains(ws1, ws2); local
312 ArrayList<WorkChain>[] diffs = WorkSource.diffChains(ws1, ws2); local
315 assertEquals(ws2.getWorkChains(), diffs[0]); local
316 assertEquals(ws1.getWorkChains(), diffs[1]); local
    [all...]
  /external/expat/tests/
udiffer.py 54 diffs = list(difflib.unified_diff(first, second, fromfile=config.first,
56 if diffs:
57 sys.stdout.writelines(diffs)
  /external/guice/util/
generate-latest-docs.sh 12 cp -R build/docs/latest-api-diffs $HOME/api-diffs-latest
13 cp lib/build/jdiff/*.gif $HOME/api-diffs-latest/
21 git rm -rf api-docs/latest/api-diffs api-docs/latest/javadoc
23 cp -rf $HOME/api-diffs-latest api-docs/latest/api-diffs
26 git commit -m "Lastest javadoc & api-diffs on successful travis build $TRAVIS_BUILD_NUMBER auto-pushed to gh-pages"
  /external/toolchain-utils/toolchain_utils_githooks/
pre-push.real 41 diffs=$($pyformat -d $f)
46 if [[ -n "$diffs" ]]; then
48 echo -e "diffs:\n$diffs\n"
  /external/eigen/test/
eigensolver_complex.cpp 16 template<typename MatrixType> bool find_pivot(typename MatrixType::Scalar tol, MatrixType &diffs, Index col=0)
18 bool match = diffs.diagonal().sum() <= tol;
19 if(match || col==diffs.cols())
25 Index n = diffs.cols();
30 if(diffs.col(col).segment(col,n-i).minCoeff(&best_index) > tol)
35 diffs.row(col).swap(diffs.row(best_index));
36 if(find_pivot(tol,diffs,col+1)) return true;
37 diffs.row(col).swap(diffs.row(best_index))
66 Matrix<RealScalar,Dynamic,Dynamic> diffs = (vec1.rowwise().replicate(n) - vec2.rowwise().replicate(n).transpose()).cwiseAbs2(); local
    [all...]
  /external/pdfium/testing/tools/
text_diff.py 20 diffs = difflib.unified_diff(
26 for diff in diffs:
  /external/skia/tools/
reformat-json.py 12 so that subsequent runs of rebaseline.py will generate useful diffs
13 (only the actual checksum differences will show up as diffs, not obscured
jsondiff.py 11 Gathers diffs between 2 JSON expectations files, or between actual and
43 # Object that generates diffs between two JSON gm result files.
141 """Generate a dictionary showing the diffs between old_dict and new_dict.
154 """Generate a dictionary showing the diffs:
165 """Generate a dictionary showing the diffs:
195 diffs = differ.GenerateDiffDict(oldfile=args.old, newfile=args.new)
196 json.dump(diffs, sys.stdout, sort_keys=True, indent=2)
  /external/skqp/tools/
reformat-json.py 12 so that subsequent runs of rebaseline.py will generate useful diffs
13 (only the actual checksum differences will show up as diffs, not obscured
jsondiff.py 11 Gathers diffs between 2 JSON expectations files, or between actual and
43 # Object that generates diffs between two JSON gm result files.
141 """Generate a dictionary showing the diffs between old_dict and new_dict.
154 """Generate a dictionary showing the diffs:
165 """Generate a dictionary showing the diffs:
195 diffs = differ.GenerateDiffDict(oldfile=args.old, newfile=args.new)
196 json.dump(diffs, sys.stdout, sort_keys=True, indent=2)
  /external/annotation-tools/annotation-file-utilities/tests/
VerifyDiffs.java 59 System.out.println("verify diffs failed due to exception: "
77 * the list diffs.
79 * @param diffs the array to place all diff files in
80 * @param dir the directory to start gathering diffs
82 private static void gatherDiffs(List<File> diffs, File dir) {
85 diffs.add(f);
88 gatherDiffs(diffs, f);
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/calendar/
DataDrivenCalendarTest.java 94 String diffs = diffSet.diffFrom(fromSet); local
96 +", SOURCE calendar was not set: Differences: "+ diffs);
108 String diffs = diffSet.diffFrom(fromSet); local
110 +", SET SOURCE calendar was not set: Differences: "+ diffs);
120 String diffs = diffSet.diffFrom(toSet); local
121 errln((String)"FAIL: "+thisString+", Differences: "+ diffs);
256 String diffs = diffSet.diffFrom(fromSet); local
258 +", SET SOURCE calendar was not set: Differences: "+ diffs);
306 String diffs = diffSet.diffFrom(toSet); local
308 +" Differences: "+ diffs );
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/calendar/
DataDrivenCalendarTest.java 91 String diffs = diffSet.diffFrom(fromSet); local
93 +", SOURCE calendar was not set: Differences: "+ diffs);
105 String diffs = diffSet.diffFrom(fromSet); local
107 +", SET SOURCE calendar was not set: Differences: "+ diffs);
117 String diffs = diffSet.diffFrom(toSet); local
118 errln((String)"FAIL: "+thisString+", Differences: "+ diffs);
253 String diffs = diffSet.diffFrom(fromSet); local
255 +", SET SOURCE calendar was not set: Differences: "+ diffs);
303 String diffs = diffSet.diffFrom(toSet); local
305 +" Differences: "+ diffs );
    [all...]
  /external/linux-kselftest/tools/testing/selftests/ftrace/test.d/trigger/
trigger-multihist.tc 67 diffs=`diff events/sched/sched_process_exit/hist events/sched/sched_process_fork/hist | wc -l`
68 test $diffs -eq 0 || fail "Same name histograms are not same"
  /cts/tests/inputmethod/src/android/view/inputmethod/cts/util/
LightNavigationBarVerifier.java 161 diffs -> Arrays.stream(diffs).allMatch(diff -> diff == 0))) {
166 if (Arrays.stream(channelDiffs).anyMatch(diffs -> {
167 final OptionalDouble average = Arrays.stream(diffs).filter(diff -> diff != 0).average();
178 if (Arrays.stream(channelDiffs).allMatch(diffs -> {
179 final OptionalDouble average = Arrays.stream(diffs).filter(diff -> diff != 0).average();
183 // If all color channels (red, green, blue) have diffs less than a certain threshold,
  /external/icu/icu4c/source/test/intltest/
dadrcal.cpp 225 UnicodeString diffs = diffSet.diffFrom(fromSet, status); local
227 +", SET SOURCE calendar was not set: Differences: "+ diffs
273 UnicodeString diffs = diffSet.diffFrom(toSet, status); local
275 +" Differences: "+ diffs +"', status: "
309 UnicodeString diffs = diffSet.diffFrom(fromSet, status); local
311 +", SOURCE calendar was not set: Differences: "+ diffs
331 UnicodeString diffs = diffSet.diffFrom(fromSet, status); local
333 +", SET SOURCE calendar was not set: Differences: "+ diffs
351 UnicodeString diffs = diffSet.diffFrom(toSet, status); local
352 errln((UnicodeString)"FAIL: "+thisString+", Differences: "+ diffs
    [all...]
  /external/skia/tests/
BlendTest.cpp 28 struct Results { int diffs, diffs_0x00, diffs_0xff, diffs_by_1; }; member in struct:Results
32 SkDebugf("%d diffs, %d at 0x00, %d at 0xff, %d off by 1, all out of 65536\n",
33 r.diffs, r.diffs_0x00, r.diffs_0xff, r.diffs_by_1);
35 return r.diffs_by_1 == r.diffs // never off by more than 1
48 r.diffs++;
81 for (auto multiply : perfect) { REPORTER_ASSERT(r, test(multiply).diffs == 0); }
  /external/skqp/tests/
BlendTest.cpp 28 struct Results { int diffs, diffs_0x00, diffs_0xff, diffs_by_1; }; member in struct:Results
32 SkDebugf("%d diffs, %d at 0x00, %d at 0xff, %d off by 1, all out of 65536\n",
33 r.diffs, r.diffs_0x00, r.diffs_0xff, r.diffs_by_1);
35 return r.diffs_by_1 == r.diffs // never off by more than 1
48 r.diffs++;
81 for (auto multiply : perfect) { REPORTER_ASSERT(r, test(multiply).diffs == 0); }
  /external/tensorflow/tensorflow/tools/api/tests/
api_compatibility_test.py 59 If set to true, print line by line diffs on all libraries. If set to
120 verbose: Whether to log the full diffs, or simply report which files were
122 update_goldens: Whether to update goldens when there are diffs found.
124 diffs = []
158 diffs.append(diff_message)
161 # If diffs are found, handle them based on flags.
162 if diffs:
163 diff_count = len(diffs)
166 messages = verbose_diffs if verbose else diffs
225 # If the test is run to update goldens, only report diffs but do not fail
    [all...]
  /cts/apps/CameraITS/tests/scene1/
test_dng_noise_model.py 123 diffs = [abs(var_measured[i][j] - var_expected[i][j])
125 print 'Diffs (%s):'%(ch), diffs
126 for j, diff in enumerate(diffs):
  /external/ltp/testcases/kernel/sched/tool/
time-schedule.c 106 unsigned long diffs[MAX_ITERATIONS]; local
212 memset(diffs, 0, sizeof diffs);
236 diffs[count] = diff;
256 median = compute_median(diffs, max_diff);
  /external/tensorflow/tensorflow/contrib/losses/python/losses/
loss_ops.py 594 diffs = math_ops.subtract(predictions, labels)
597 if diffs.get_shape().ndims is None:
598 raise ValueError("diffs.get_shape().ndims cannot be None")
602 reduction_indices = list(range(1, diffs.get_shape().ndims))
605 math_ops.square(diffs), reduction_indices=reduction_indices)
606 num_present_per_batch = _num_present(diffs, weights, per_batch=True)
610 sum_diff = math_ops.reduce_sum(diffs, reduction_indices=reduction_indices)

Completed in 3247 milliseconds

1 2 3 4