HomeSort by relevance Sort by last modified time
    Searched refs:difference (Results 51 - 75 of 109) sorted by null

1 23 4 5

  /external/webkit/Source/WebCore/platform/
Timer.cpp 112 // We need to look at the difference of the insertion orders instead of comparing the two
114 unsigned difference = a.timer()->m_heapInsertionOrder - b.timer()->m_heapInsertionOrder;
115 return difference < UINT_MAX / 2;
  /external/chromium/chrome/browser/sync/glue/
typed_url_model_associator.cc 90 int difference = MergeUrls(typed_url, *ix, &visits, &new_url, local
92 if (difference & DIFF_NODE_CHANGED) {
100 if (difference & DIFF_TITLE_CHANGED) {
104 if (difference & DIFF_ROW_CHANGED) {
108 if (difference & DIFF_VISITS_ADDED) {
369 // No difference.
382 // No difference.
  /frameworks/av/media/libstagefright/codecs/aacenc/src/
qc_main.c 94 Word16 difference; local
98 difference = calcFrameLen( bitRate,
101 *paddingRest = *paddingRest - difference;
  /frameworks/base/core/java/android/widget/
TableLayout.java 515 final int difference = newLength - length; local
518 if (difference > 0) {
524 mMaxWidths, oldMaxWidths.length, difference);
530 // difference will be negative
  /packages/apps/Settings/src/com/android/settings/wifi/
AccessPoint.java 239 int difference = WifiManager.compareSignalLevel(other.mRssi, mRssi); local
240 if (difference != 0) {
241 return difference;
  /external/icu4c/i18n/
nfrs.cpp 497 int64_t difference = util64_fromDouble(uprv_maxMantissa()); local
520 if (tempDifference < difference) {
521 difference = tempDifference;
523 if (difference == 0) {
  /external/openfst/src/include/fst/
fstlib.h 67 #include <fst/difference.h>
  /ndk/sources/host-tools/make-3.81/
implicit.c 370 unsigned int difference = lastslash - filename + 1;
371 if (difference > stemlen)
373 stemlen -= difference;
374 stem += difference;
368 unsigned int difference = lastslash - filename + 1; local
  /external/chromium/chrome/browser/safe_browsing/
safe_browsing_database.cc 368 std::vector<SBPrefix> difference; local
371 std::back_inserter(difference));
372 if (difference.size())
373 UMA_HISTOGRAM_COUNTS_100("SB2.PrefixSetRestoredExcess", difference.size());
376 difference.clear();
379 std::back_inserter(difference));
380 if (difference.size())
382 difference.size());
    [all...]
  /frameworks/base/core/java/android/gesture/
GestureUtils.java 411 float difference = vector1[i] - vector2[i]; local
412 squaredDistance += difference * difference;
  /external/grub/stage2/
tparm.c 460 * We'll have to assume that the caller knows the difference, since
  /external/openfst/src/include/fst/script/
fstscript.h 40 #include <fst/script/difference.h>
100 REGISTER_FST_OPERATION(Difference, Arc, DifferenceArgs1);
101 REGISTER_FST_OPERATION(Difference, Arc, DifferenceArgs2);
  /external/srec/srec/ca/
cnfd_scr.c 46 #error allocate difference in simapi.h
  /external/webkit/Source/JavaScriptCore/wtf/
DateMath.cpp 372 int difference; local
374 difference = minYear - year;
376 difference = maxYear - year;
380 int quotient = difference / 28;
398 // Get the difference between this time zone and UTC on the 1st of January of this year.
    [all...]
  /external/webkit/Source/WebCore/editing/
EditingStyle.cpp 523 // CSS properties that create a visual difference only when applied to text.
534 RefPtr<CSSMutableStyleDeclaration> difference = getPropertiesNotIn(m_mutableStyle.get(), styleToCompare); local
537 difference->removePropertiesInSet(textOnlyProperties, WTF_ARRAY_LENGTH(textOnlyProperties));
539 if (!difference->length())
541 if (difference->length() == m_mutableStyle->length())
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.apache.commons.codec_1.3.0.v20100518-1140.jar 
  /external/libvpx/vp8/common/arm/armv6/
loopfilter_v6.asm 449 ;roughly 3/7th difference across boundary
484 ;roughly 2/7th difference across boundary
525 ;roughly 1/7th difference across boundary
    [all...]
  /external/chromium/webkit/glue/
webmediaplayer_impl.cc 73 float difference = integer - microseconds; local
75 // Round down if difference is large enough.
76 if ((microseconds > 0 && difference > 0.5f) ||
77 (microseconds <= 0 && difference >= 0.5f)) {
  /external/guava/guava/src/com/google/common/collect/
Sets.java 587 final Set<? extends E> set2minus1 = difference(set2, set1);
668 * Returns an unmodifiable <b>view</b> of the difference of two sets. The
678 public static <E> SetView<E> difference(
701 * Returns an unmodifiable <b>view</b> of the symmetric difference of two
718 return difference(union(set1, set2), intersection(set1, set2));
    [all...]
Maps.java 304 * Computes the difference between two maps. This difference is an immutable
317 * @return the difference between the two maps
320 public static <K, V> MapDifference<K, V> difference( method in class:Maps
324 SortedMapDifference<K, V> result = difference(sortedLeft, right);
327 return difference(left, right, Equivalences.equals());
331 * Computes the difference between two maps. This difference is an immutable
336 * equality, the value on the 'left' is returned in the difference.
346 * @return the difference between the two map
350 public static <K, V> MapDifference<K, V> difference( method in class:Maps
537 public static <K, V> SortedMapDifference<K, V> difference( method in class:Maps
    [all...]
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
Sets.java 575 final Set<? extends E> set2minus1 = difference(set2, set1);
656 * Returns an unmodifiable <b>view</b> of the difference of two sets. The
666 public static <E> SetView<E> difference(
689 * Returns an unmodifiable <b>view</b> of the symmetric difference of two
706 return difference(union(set1, set2), intersection(set1, set2));
    [all...]
Maps.java 301 * Computes the difference between two maps. This difference is an immutable
314 * @return the difference between the two maps
317 public static <K, V> MapDifference<K, V> difference( method in class:Maps
321 SortedMapDifference<K, V> result = difference(sortedLeft, right);
324 return difference(left, right, Equivalences.equals());
328 * Computes the difference between two maps. This difference is an immutable
333 * equality, the value on the 'left' is returned in the difference.
343 * @return the difference between the two map
347 public static <K, V> MapDifference<K, V> difference( method in class:Maps
534 public static <K, V> SortedMapDifference<K, V> difference( method in class:Maps
    [all...]
  /external/libvpx/vp8/common/arm/neon/
mbloopfilter_neon.asm 472 ; roughly 1/7th difference across boundary
473 ; roughly 2/7th difference across boundary
474 ; roughly 3/7th difference across boundary
  /frameworks/base/services/java/com/android/server/
PowerManagerService.java 2030 final int difference = realDifference | forceState; local
    [all...]
  /prebuilts/tools/common/http-client/
commons-codec-1.4.jar 

Completed in 564 milliseconds

1 23 4 5