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

1 23 4 5 6 7 8 91011>>

  /external/python/cpython2/Lib/
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."""
  /external/python/cpython2/Modules/_multiprocessing/
semaphore.c 218 unsigned long delay, difference; local
245 difference = (tvdeadline.tv_sec - now.tv_sec) * 1000000 +
251 if (delay > difference)
252 delay = difference;
  /external/python/cpython3/Lib/
_weakrefset.py 126 def difference(self, other): member in class:WeakSet
130 __sub__ = difference
  /external/python/cpython3/Modules/_multiprocessing/
semaphore.c 211 unsigned long delay, difference; local
238 difference = (tvdeadline.tv_sec - now.tv_sec) * 1000000 +
244 if (delay > difference)
245 delay = difference;
  /frameworks/base/packages/SystemUI/src/com/android/systemui/classifier/
AnglesClassifier.java 32 * the last three points. After that, it calculates the difference between this angle and the
34 * To the differences there is artificially added value 0.0 and the difference between the first
149 float difference = angle - mPreviousAngle; local
162 mSecondSum += difference;
163 mSecondSumSquares += difference * difference;
167 mSum += difference;
168 mSumSquares += difference * difference;
  /packages/apps/Dialer/java/com/android/incallui/answer/impl/classifier/
AnglesClassifier.java 29 * last three points. After that, it calculates the difference between this angle and the previously
31 * differences there is artificially added value 0.0 and the difference between the first angle and
144 float difference = angle - previousAngle; local
157 secondSum += difference;
158 secondSumSquares += difference * difference;
162 sum += difference;
163 sumSquares += difference * difference;
  /prebuilts/gdb/darwin-x86/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/gdb/linux-x86/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/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
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."""
  /tools/tradefederation/core/prod-tests/src/com/android/framework/tests/
BandwidthStats.java 45 * Compute percent difference between a and b.
48 * @return % difference of a and b.
103 float difference = BandwidthStats.computePercentDifference( local
107 difference);
113 float difference = BandwidthStats.computePercentDifference( local
117 difference);
123 float difference = BandwidthStats.computePercentDifference( local
127 difference);
133 float difference = BandwidthStats.computePercentDifference( local
137 difference);
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/sixdof/Renderer/
BaseRenderer.java 339 int difference = (currentOrientation - defaultOrientation) % ORIENTATION_COUNT; local
340 difference = difference * 90;
342 return difference;
  /cts/tests/sensor/src/android/hardware/cts/helpers/
SensorCtsHelper.java 102 double difference = mean - value.doubleValue(); local
103 squaredDiffs.add(Math.pow(difference, 2));
  /external/ImageMagick/MagickCore/
compare.c 89 % reconstructed image and returns the difference image.
210 Generate difference image.
254 difference;
267 difference=MagickFalse;
286 difference=MagickTrue;
290 if (difference == MagickFalse)
370 Compute the absolute difference in pixels between two images.
412 difference;
423 difference=MagickFalse;
443 difference=MagickTrue
252 difference; local
409 difference; local
1179 difference; local
1210 difference; local
    [all...]
  /external/drrickorang/LoopbackApp/app/src/main/java/org/drrickorang/loopback/
GlitchDetectionThread.java 30 // the acceptable difference between the expected center of mass and what we actually get
203 double difference = (Math.abs(centerOfMass - mCenterOfMass) / mCenterOfMass); local
212 if (difference > mAcceptablePercentDifference || centerOfMass == -1) {
  /external/icu/android_icu4j/src/main/java/android/icu/text/
NFRuleSet.java 638 long difference = Long.MAX_VALUE; local
660 if (tempDifference < difference) {
661 difference = tempDifference;
663 if (difference == 0) {
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
NFRuleSet.java 637 long difference = Long.MAX_VALUE; local
659 if (tempDifference < difference) {
660 difference = tempDifference;
662 if (difference == 0) {
    [all...]
  /external/libchrome/base/time/
time_unittest.cc 725 TimeDelta difference = delta - delta_thread; local
726 EXPECT_GE(difference.InMicroseconds(), 9000);
    [all...]
  /libcore/ojluni/src/main/java/java/time/
OffsetTime.java 554 * To take into account the difference between the offsets, and adjust the time fields,
571 * adjusted by the difference between the two offsets.
588 int difference = offset.getTotalSeconds() - this.offset.getTotalSeconds(); local
589 LocalTime adjusted = time.plusSeconds(difference);
    [all...]
  /libcore/ojluni/src/main/java/java/time/zone/
ZoneOffsetTransitionRule.java 614 int difference = wallOffset.getTotalSeconds() - ZoneOffset.UTC.getTotalSeconds(); local
615 return dateTime.plusSeconds(difference);
618 int difference = wallOffset.getTotalSeconds() - standardOffset.getTotalSeconds(); local
619 return dateTime.plusSeconds(difference);
  /external/aac/libAACenc/src/
qc_main.cpp 214 INT difference; local
218 difference = FDKaacEnc_calcFrameLen(bitRate, sampleRate, granuleLength,
220 *paddingRest -= difference;
529 totalBits. For that case, the difference must be added/substracted again
551 /* Compensate for bit distibution difference */
566 * is not 0. In hyperframing mode the difference between grantedDynBits and
    [all...]

Completed in 495 milliseconds

1 23 4 5 6 7 8 91011>>