HomeSort by relevance Sort by last modified time
    Searched full:differences (Results 376 - 400 of 1982) sorted by null

<<11121314151617181920>>

  /docs/source.android.com/src/devices/tech/ota/
block.jd 103 following differences:</p>
119 <li><i>Computation algorithm differences</i>. In a file OTA update, if a file
  /external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/emu/com/badlogic/gdx/utils/
ScreenUtils.java 100 * will always contain RGBA8888 data. Because of differences in screen and image origins the framebuffer contents should be
114 * screen will have RGBA values of 0. Because of differences in screen and image origins the framebuffer contents should be
  /external/webrtc/webrtc/modules/video_processing/util/
denoiser_filter_neon.cc 170 // Sum all the accumulators to have the sum of all pixel differences
261 // Update the sum of all pixel differences of this MB.
  /ndk/sources/cxx-stl/gabi++/include/
cxxabi.h 47 // Describes the ARM C++ ABI, mainly as a set of differences from
52 // important differences in the stack unwinding process and
  /prebuilts/ndk/current/sources/cxx-stl/llvm-libc++/gabi++/include/
cxxabi.h 47 // Describes the ARM C++ ABI, mainly as a set of differences from
52 // important differences in the stack unwinding process and
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/util/
message_differencer.h 70 // the differences between two specified Protocol Messages. If any differences
385 // the only differences between the compared messages is that some fields
413 // Differences are reported similarly to TreatAsSet(), except that
417 // differences between the compared messages is that some fields have been
490 // Sets the field comparator used to determine differences between protocol
556 // Automatically creates a reporter that will output the differences
561 // Tells the MessageDifferencer to report differences via the specified
566 // differences to any previously set reporters or output strings.
570 // any differences found in human-readable form to the supplie
    [all...]
  /external/opencv3/3rdparty/openexr/IlmImf/
ImfB44Compressor.cpp 56 // shifting the differences according to the stored shift value.
58 // Differences between adjacent pixels are computed according
247 // Compute a set of running differences, r[0] ... r[14]:
250 // -32 and +31. Then bias the differences so that they
267 // Compute absolute differences, d[0] ... d[15],
270 // Shift and round the absolute differences.
277 // Convert d[0] .. d[15] into running differences
  /external/icu/icu4c/source/test/intltest/
loctest.cpp 343 errln("Differences for ULOC_CHINESE Locale");
346 errln("Differences for ULOC_ENGLISH Locale");
349 errln("Differences for ULOC_FRENCH Locale");
352 errln("Differences for ULOC_GERMAN Locale");
355 errln("Differences for ULOC_ITALIAN Locale");
358 errln("Differences for ULOC_JAPANESE Locale");
361 errln("Differences for ULOC_KOREAN Locale");
364 errln("Differences for ULOC_SIMPLIFIED_CHINESE Locale");
367 errln("Differences for ULOC_TRADITIONAL_CHINESE Locale");
372 errln("Differences for ULOC_CANADA Locale")
    [all...]
  /external/v8/third_party/llvm-build/Release+Asserts/lib/clang/3.9.0/include/
emmintrin.h 794 /// \brief Computes the absolute differences of corresponding 8-bit integer
795 /// values in two 128-bit vectors. Sums the first 8 absolute differences, and
796 /// separately sums the second 8 absolute differences. Packss these two
809 /// differences between both operands.
826 /// \returns A 128-bit integer vector containing the differences of the values
844 /// \returns A 128-bit integer vector containing the differences of the values
862 /// \returns A 128-bit integer vector containing the differences of the values
899 /// \returns A 128-bit integer vector containing the differences of the values
908 /// returns the differences in the corresponding bytes in the destination.
909 /// Differences greater than 7Fh are saturated to 7Fh, and differences les
    [all...]
  /external/deqp/framework/common/
tcuImageCompare.cpp 191 * graphics APIs such as OpenGL. The comparison allows small local differences
199 * Error metric is computed based on the differences. On valid images the
260 * graphics APIs such as OpenGL. The comparison allows small local differences
268 * Error metric is computed based on the differences. On valid images the
320 * Computes accuracy metric using per-pixel differences between reference
376 * Computes accuracy metric using per-pixel differences between reference
467 * This compare computes per-pixel differences between result and reference
555 * This compare computes per-pixel differences between result and reference
642 * This compare computes per-pixel differences between result and reference
724 * This compare computes per-pixel differences between result and referenc
    [all...]
  /external/icu/icu4c/source/common/
ucnvbocu.cpp 36 * a sequence of byte-encoded differences (slope detection),
56 /* bounding byte values for differences */
271 * The encoding favors small absolute differences with short encodings
290 /* mostly positive differences, and single-byte negative ones */
342 /* two- to four-byte negative differences */
427 /* fast loop for single-byte differences */
671 /* fast loop for single-byte differences */
    [all...]
  /external/jdiff/src/jdiff/
HTMLIndexes.java 33 // 2 = changes only. 3 = all differences. Run all differences
58 * Emit a single bottom left frame with the given kind of differences for
62 * @param apiDiff The root element containing all the API differences.
64 * 2 = changes only, 3 = all differences,
85 title = programElementType + " Differences Index";
169 if (indexName.compareTo("All Differences") == 0) {
    [all...]
HTMLFiles.java 41 h_.writeHTMLTitle("API Differences between " + oldAPIName + " and " + newAPIName);
96 h_.writeText(" <TD><FONT CLASS=\"indexText\" size=\"-1\"><A HREF=\"alldiffs_index_all" + h_.reportFileExt + "\" TARGET=\"bottomleftframe\">All Differences</A></FONT><br></TD>");
180 h_.writeText("JDiff is a <a href=\"http://java.sun.com/j2se/javadoc/\" target=\"_top\">Javadoc</a> doclet which generates a report of the API differences between two versions of a product. It does not report changes in Javadoc comments, or changes in what a class or method does. ");
189 h_.writeText("The indexes shown in the top-left frame help show each type of change in more detail. The index \"All Differences\" contains all the differences between the APIs, in alphabetical order. ");
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
Maps.java 413 Map<K, MapDifference.ValueDifference<V>> differences = newHashMap();
414 doDifference(left, right, valueEquivalence, onlyOnLeft, onlyOnRight, onBoth, differences);
415 return new MapDifferenceImpl<K, V>(onlyOnLeft, onlyOnRight, onBoth, differences);
422 Map<K, MapDifference.ValueDifference<V>> differences) {
431 differences.put(
452 final Map<K, ValueDifference<V>> differences;
456 Map<K, ValueDifference<V>> differences) {
460 this.differences = unmodifiableMap(differences);
465 return onlyOnLeft.isEmpty() && onlyOnRight.isEmpty() && differences.isEmpty()
    [all...]
  /external/ImageMagick/ImageMagick/script/
compare.html 203 <td>emphasize pixel differences with this color</td>
228 <td>de-emphasize pixel differences with this color</td>
233 <td>measure differences between images with this metric</td>
  /external/libvpx/libvpx/vp9/encoder/x86/
vp9_denoiser_sse2.c 23 // Compute the sum of all pixel differences of this MB.
51 // Calculate differences
102 // Calculate differences.
  /frameworks/base/docs/html/about/versions/
android-1.5.jd 30 Differences Report &raquo;</a> </li>
257 <h3 id="api-diff">API differences report</h3>
261 Differences Report</a>.</p>
android-2.0.jd 24 <li><a href="{@docRoot}sdk/api_diff/{@sdkPlatformApiLevel}/changes.html">API differences report &raquo;</a> </li>
373 <h3 id="api-diff">API differences report</h3>
377 href="{@docRoot}sdk/api_diff/{@sdkPlatformApiLevel}/changes.html">API Differences Report</a>.</p>
android-2.1.jd 30 Differences Report &raquo;</a> </li>
246 <h3 id="api-diff">API differences report</h3>
251 Differences Report</a>.</p>
android-2.2.jd 26 Differences Report &raquo;</a> </li>
240 <h3 id="api-diff">API differences report</h3>
245 Differences Report</a>.</p>
  /frameworks/base/docs/html/sdk/api_diff/n-preview-4-incr/changes/
changes-summary.html 10 Android API Differences Report
74 <h1>Android&nbsp;API&nbsp;Differences&nbsp;Report</h1>
78 The report also includes general statistics that characterize the extent and type of the differences.</p>
  /frameworks/base/docs/html/sdk/support_api_diff/22.2.0/changes/
changes-summary.html 10 Support&nbsp;Library&nbsp;API&nbsp;Differences&nbsp;Report
74 <h1>Support&nbsp;Library&nbsp;API&nbsp;Differences&nbsp;Report</h1>
77 The report also includes general statistics that characterize the extent and type of the differences.</p>
  /frameworks/base/docs/html/sdk/support_api_diff/23.1.0/changes/
changes-summary.html 10 Support&nbsp;Library&nbsp;API&nbsp;Differences&nbsp;Report
74 <h1>Support&nbsp;Library&nbsp;API&nbsp;Differences&nbsp;Report</h1>
77 The report also includes general statistics that characterize the extent and type of the differences.</p>
  /external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
RealVector.java 765 * elements differences, or euclidian distance.</p>
780 * elements differences, or euclidian distance.</p>
795 * elements differences.</p>
810 * elements differences.</p>
825 * elements differences.</p>
840 * elements differences.</p>
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/stat/
StatUtils.java 557 * Returns the sum of the (signed) differences between corresponding elements of the
562 * @return sum of paired differences
585 * Returns the mean of the (signed) differences between corresponding elements of the
590 * @return mean of paired differences
600 * Returns the variance of the (signed) differences between corresponding elements of the
607 * @return variance of paired differences

Completed in 1676 milliseconds

<<11121314151617181920>>