HomeSort by relevance Sort by last modified time
    Searched defs:difference (Results 26 - 50 of 157) sorted by null

12 3 4 5 6 7

  /external/guava/guava/src/com/google/common/collect/
SortedMaps.java 153 * Computes the difference between two sorted maps, using the comparator of
155 * natural ordering of its elements. This difference is an immutable snapshot
168 * @return the difference between the two maps
169 * @deprecated Use {@link Maps#difference(SortedMap, Map)}
171 @Deprecated public static <K, V> SortedMapDifference<K, V> difference( method in class:SortedMaps
173 return Maps.difference(left, right);
  /cts/tests/tests/hardware/src/android/hardware/cts/helpers/
SensorCtsHelper.java 83 double difference = mean - value.doubleValue(); local
84 squaredDiffs.add(Math.pow(difference, 2));
  /external/apache-http/src/org/apache/commons/codec/language/
Soundex.java 74 * T-SQL DIFFERENCE </a>
80 public int difference(String s1, String s2) throws EncoderException { method in class:Soundex
81 return SoundexUtils.difference(this, s1, s2);
  /external/ceres-solver/internal/ceres/
canonical_views_clustering.cc 120 const double difference = local
122 if (difference > best_difference) {
123 best_difference = difference;
159 // Computes the difference in the quality score if 'candidate' were
165 double difference = local
179 difference += new_similarity - old_similarity;
184 difference -= options_.size_penalty_weight;
188 difference -= options_.similarity_penalty_weight *
192 return difference;
  /external/chromium_org/chrome/browser/profile_resetter/
automatic_profile_resetter_delegate.cc 386 int difference = local
388 if (difference) {
391 SerializeSettingsReport(*old_settings_snapshot, difference);
  /external/chromium_org/chrome/browser/sync/
backend_migrator_unittest.cc 128 syncer::ModelTypeSet to_migrate, difference; local
130 difference.Put(syncer::AUTOFILL);
131 difference.Put(syncer::BOOKMARKS);
146 SendConfigureDone(DataTypeManager::OK, difference);
159 syncer::ModelTypeSet to_migrate, difference; local
161 difference.Put(syncer::AUTOFILL);
162 difference.Put(syncer::BOOKMARKS);
174 SendConfigureDone(DataTypeManager::OK, difference);
227 Difference(preferred_types(), to_migrate1);
248 syncer::ModelTypeSet difference; local
273 syncer::ModelTypeSet to_migrate, difference; local
    [all...]
  /external/chromium_org/chrome/browser/ui/views/
dropdown_bar_host.cc 300 int difference = new_pos.right() - kAddedWidth - widget_bounds.right() - local
302 if (difference > 0) {
304 exclude[0].x = max_x - difference; // Top left corner.
313 exclude[3].x = max_x - difference; // Bottom left corner.
  /external/chromium_org/native_client_sdk/src/tests/nacl_io_test/
filesystem_test.cc 387 double difference = byte_count[i] - expected_count; local
388 chi_squared += difference * difference / expected_count;
  /external/chromium_org/remoting/codec/
video_decoder_vpx.cc 160 webrtc::DesktopRegion difference = updated_region_; local
161 difference.Subtract(desktop_shape_);
162 updated_region_.Subtract(difference);
163 transparent_region_.AddRegion(difference);
346 webrtc::DesktopRegion difference = *new_desktop_shape; local
347 difference.Subtract(desktop_shape_);
348 updated_region_.AddRegion(difference);
  /external/chromium_org/third_party/WebKit/Source/wtf/dtoa/
bignum.cc 228 Chunk difference = bigits_[i + offset] - other.bigits_[i] - borrow; local
229 bigits_[i + offset] = difference & kBigitMask;
230 borrow = difference >> (kChunkSize - 1);
233 Chunk difference = bigits_[i + offset] - borrow; local
234 bigits_[i + offset] = difference & kBigitMask;
235 borrow = difference >> (kChunkSize - 1);
752 Chunk difference = bigits_[i + exponent_diff] - ((uint32_t)remove & kBigitMask);
753 bigits_[i + exponent_diff] = difference & kBigitMask;
754 borrow = static_cast<Chunk>((difference >> (kChunkSize - 1)) +
759 Chunk difference = bigits_[i] - borrow
    [all...]
  /external/chromium_org/v8/src/
bignum.cc 204 Chunk difference = bigits_[i + offset] - other.bigits_[i] - borrow; local
205 bigits_[i + offset] = difference & kBigitMask;
206 borrow = difference >> (kChunkSize - 1);
209 Chunk difference = bigits_[i + offset] - borrow; local
210 bigits_[i + offset] = difference & kBigitMask;
211 borrow = difference >> (kChunkSize - 1);
735 Chunk difference =
737 bigits_[i + exponent_diff] = difference & kBigitMask;
738 borrow = static_cast<Chunk>((difference >> (kChunkSize - 1)) +
743 Chunk difference = bigits_[i] - borrow
    [all...]
  /external/chromium_org/base/time/
time_unittest.cc 707 TimeDelta difference = delta - delta_thread; local
708 EXPECT_GE(difference.InMicroseconds(), 9000);
  /external/chromium_org/chrome/browser/history/
visit_filter.cc 175 base::TimeDelta difference; local
177 difference = time_of_day2 - time_of_day1;
179 difference = time_of_day1 - time_of_day2;
181 // If the difference is more than 12 hours, we'll get closer by 'wrapping'
183 if (difference > base::TimeDelta::FromHours(12))
184 difference = base::TimeDelta::FromHours(24) - difference;
186 return difference;
  /external/chromium_org/content/browser/indexed_db/
indexed_db_context_impl.cc 493 int64 difference = current_disk_usage - former_disk_usage; local
494 if (difference) {
502 difference);
  /external/chromium_org/courgette/
ensemble_create.cc 122 // This is a quick hack to avoid the problem by prohibiting a big difference in
177 // more nuanced, returning early if the measured difference is greater than
196 size_t difference = difference_estimator.Measure(old_base, new_subject); local
200 << " --> " << difference
203 if (difference == 0) {
210 if (difference < best_difference) {
211 best_difference = difference;
  /external/chromium_org/third_party/WebKit/Source/platform/
Timer.cpp 180 // We need to look at the difference of the insertion orders instead of comparing the two
182 unsigned difference = a->m_heapInsertionOrder - b->m_heapInsertionOrder; local
183 return difference < numeric_limits<unsigned>::max() / 2;
  /external/chromium_org/third_party/WebKit/Source/platform/image-decoders/webp/
WEBPImageDecoderTest.cpp 235 const int difference = abs(pixelA[channel] - pixelB[channel]); local
236 if (difference > maxDifference)
237 maxDifference = difference;
  /external/deqp/framework/common/
tcuImageCompare.cpp 213 float difference = fuzzyCompare(params, reference, result, errorMask.getAccess()); local
214 bool isOk = difference <= threshold;
228 log << TestLog::Message << "Image comparison failed: difference = " << difference << ", threshold = " << threshold << TestLog::EndMessage;
311 * \brief Per-pixel difference accuracy metric
346 << TestLog::Image("DiffMask", "Difference", diffMask)
360 log << TestLog::Integer("DiffSum", "Squared difference sum", "", QP_KEY_TAG_NONE, squaredSum)
367 * \brief Per-pixel difference accuracy metric
395 * difference between floating-point values and thus this function can
406 * \param threshold Maximum allowed difference
    [all...]
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
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/llvm/lib/IR/
ConstantRange.cpp 252 ConstantRange ConstantRange::difference(const ConstantRange &CR) const { function in class:ConstantRange
  /frameworks/av/media/libstagefright/codecs/aacenc/src/
qc_main.c 95 Word16 difference; local
99 difference = calcFrameLen( bitRate,
102 *paddingRest = *paddingRest - difference;
  /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
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
_weakrefset.py 126 def difference(self, other): member in class:WeakSet
130 __sub__ = difference
sets.py 220 """Return the symmetric difference of two sets as a new set.
229 """Return the symmetric difference of two sets as a new set.
248 """Return the difference of two sets as a new Set.
254 return self.difference(other)
256 def difference(self, other): member in class:BaseSet
257 """Return the difference of two sets as a new Set.
452 """Update a set with the symmetric difference of itself and another."""
458 """Update a set with the symmetric difference of itself and another."""
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
_weakrefset.py 126 def difference(self, other): member in class:WeakSet
130 __sub__ = difference

Completed in 1035 milliseconds

12 3 4 5 6 7