HomeSort by relevance Sort by last modified time
    Searched defs:diff (Results 626 - 650 of 2033) sorted by null

<<21222324252627282930>>

  /frameworks/base/tools/layoutlib/bridge/src/android/graphics/
Matrix_Delegate.java 563 float diff; local
566 diff = dst.width() - src.width() * sy;
568 diff = dst.height() - src.height() * sy;
572 diff = diff / 2;
576 tx += diff;
578 ty += diff;
    [all...]
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/scanner/
BackgroundScanScheduler.java 513 int diff = Math.abs(PREDEFINED_BUCKET_PERIODS[i] - requestedPeriod); local
514 if (diff < minDiff) {
515 minDiff = diff;
    [all...]
  /hardware/intel/img/hwcomposer/merrifield/ips/common/
OverlayPlaneBase.cpp 917 double diff; local
974 diff = 1.0 - sum;
975 coeffs[i][tap2Fix] += diff;
    [all...]
  /hardware/intel/img/hwcomposer/moorefield_hdmi/ips/common/
OverlayPlaneBase.cpp 897 double diff; local
954 diff = 1.0 - sum;
955 coeffs[i][tap2Fix] += diff;
    [all...]
  /libcore/ojluni/src/main/java/java/util/concurrent/
ScheduledThreadPoolExecutor.java 249 long diff = time - x.time; local
250 if (diff < 0)
252 else if (diff > 0)
259 long diff = getDelay(NANOSECONDS) - other.getDelay(NANOSECONDS); local
260 return (diff < 0) ? -1 : (diff > 0) ? 1 : 0;
    [all...]
  /libcore/ojluni/src/main/java/sun/misc/
FDBigInteger.java 587 long diff = multDiffMe(q, S); local
588 if (diff != 0L) {
812 long diff = (mData[mIndex] & LONG_MASK) - (sData[sIndex] & LONG_MASK) + borrow; local
813 mData[mIndex] = (int) diff;
814 borrow = diff >> 32; // signed shift
817 long diff = (mData[mIndex] & LONG_MASK) + borrow; local
818 mData[mIndex] = (int) diff;
819 borrow = diff >> 32; // signed shift
891 long diff = 0L - (sData[sIndex] & LONG_MASK) + borrow; local
898 long diff = (mData[mIndex] & LONG_MASK) - (sData[sIndex] & LONG_MASK) + borrow; local
1290 long diff = 0L; local
    [all...]
  /packages/apps/Contacts/tests/src/com/android/contacts/model/
RawContactDeltaListTests.java 42 * Tests for {@link RawContactDeltaList} which focus on "diff" operations that should
173 final ArrayList<CPOWrapper> diff = Lists.newArrayList(); local
174 delta.buildAssertWrapper(diff);
175 delta.buildDiffWrapper(diff);
176 assertDiffPattern(diff, pattern);
183 static void assertDiffPattern(ArrayList<CPOWrapper> diff, CPOWrapper... pattern) {
184 assertEquals("Unexpected operations", pattern.length, diff.size());
187 final CPOWrapper found = diff.get(i);
298 static int countExceptionUpdates(ArrayList<CPOWrapper> diff) {
300 for (CPOWrapper cpoWrapper : diff) {
315 final ArrayList<CPOWrapper> diff = set.buildDiffWrapper(); local
326 final ArrayList<CPOWrapper> diff = set.buildDiffWrapper(); local
337 final ArrayList<CPOWrapper> diff = set.buildDiffWrapper(); local
349 final ArrayList<CPOWrapper> diff = set.buildDiffWrapper(); local
361 final ArrayList<CPOWrapper> diff = set.buildDiffWrapper(); local
    [all...]
  /packages/apps/Dialer/java/com/android/incallui/answer/impl/affordance/
SwipeButtonView.java 283 float diff = circleRadius - minBackgroundRadius; local
285 values[0].setFloatValues(circleStartValue + diff, circleRadius);
  /packages/apps/TV/src/com/android/tv/tuner/exoplayer/ac3/
Ac3PassthroughTrackRenderer.java 252 long diff = SystemClock.elapsedRealtime() - mEndOfStreamMs; local
253 if (diff >= KEEP_ALIVE_AFTER_EOS_DURATION_MS && !mIsStopped) {
435 Log.d(TAG, "Audio position is not set, diff in us: "
  /packages/inputmethods/LatinIME/native/jni/src/suggest/core/layout/
proximity_info_state_utils.cpp 875 const float diff = fabsf(static_cast<float>((*lengthCache)[index0] - (*lengthCache)[index1])); local
    [all...]
  /system/core/libbacktrace/
backtrace_test.cpp 1311 uintptr_t diff = backtrace->GetFrame(frame_num)->pc - test_func; local
    [all...]
  /system/update_engine/
payload_state.cc 1038 TimeDelta diff = GetUpdateDuration() - stored_delta; local
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.team.core_3.5.100.R36x_v20100825-0800.jar 
org.eclipse.core.databinding.observable_1.3.0.I20100601-0800.jar 
  /external/guava/guava-tests/test/com/google/common/collect/
MapsTest.java 353 MapDifference<Integer, Integer> diff = Maps.difference(EMPTY, EMPTY); local
354 assertTrue(diff.areEqual());
355 assertEquals(EMPTY, diff.entriesOnlyOnLeft());
356 assertEquals(EMPTY, diff.entriesOnlyOnRight());
357 assertEquals(EMPTY, diff.entriesInCommon());
358 assertEquals(EMPTY, diff.entriesDiffering());
359 assertEquals("equal", diff.toString());
363 MapDifference<Integer, Integer> diff = Maps.difference(EMPTY, SINGLETON); local
364 assertFalse(diff.areEqual());
365 assertEquals(EMPTY, diff.entriesOnlyOnLeft())
373 MapDifference<Integer, Integer> diff = Maps.difference(SINGLETON, EMPTY); local
485 SortedMapDifference<Integer, Integer> diff = local
496 SortedMapDifference<Integer, Integer> diff = local
507 SortedMapDifference<Integer, Integer> diff = local
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/
ContactSaveService.java 520 final ArrayList<ContentProviderOperation> diff = Lists.newArrayList(); local
523 diff.add(cpoWrapper.getOperation());
528 for (ContentProviderOperation operation : diff) {
535 final ContentProviderResult[] results = new ContentProviderResult[diff.size()];
536 while (numberProcessed < diff.size()) {
537 final int subsetCount = applyDiffSubset(diff, numberProcessed, results, resolver);
675 * Splits "diff" into subsets based on "MAX_CONTACTS_PROVIDER_BATCH_SIZE", applies each of the
680 private int applyDiffSubset(ArrayList<ContentProviderOperation> diff, int offset,
683 final int subsetCount = Math.min(diff.size() - offset, MAX_CONTACTS_PROVIDER_BATCH_SIZE);
685 subset.addAll(diff.subList(offset, offset + subsetCount))
    [all...]
  /art/compiler/linker/arm64/
relative_patcher_arm64_test.cc 560 uint32_t diff = kTrampolineOffset - method1_offset; local
561 ASSERT_EQ(diff & 1u, 0u);
562 ASSERT_GE(diff, -1u << 9); // Simple encoding, -256 <= (diff >> 1) < 0 (checked as unsigned).
563 auto expected_code = GenNopsAndBl(0u, kBlPlus0 | ((diff >> 2) & 0x03ffffffu));
591 uint32_t diff = thunk_offset - (last_method_offset + bl_offset_in_last_method); local
592 CHECK_ALIGNED(diff, 4u);
593 ASSERT_LT(diff, 128 * MB);
594 auto expected_code = GenNopsAndBl(1u, kBlPlus0 | (diff >> 2));
680 uint32_t diff = thunk_offset - (method1_offset + bl_offset_in_method1) local
710 uint32_t diff = thunk_offset - (last_method_offset + bl_offset_in_last_method); local
    [all...]
  /art/dexlayout/
dexlayout.cc 1629 const uint32_t diff = offset - max_offset; local
1717 int32_t diff = 0; local
1848 int32_t diff = LayoutCodeItems(dex_file, new_class_data_order); local
    [all...]
  /cts/tests/tests/keystore/src/android/keystore/cts/
TestUtils.java 273 int diff = actualCount - ((expectedCount != null) ? expectedCount : 0); local
274 if (diff > 0) {
275 extraneousFreq.put(actualEntry.getKey(), diff); local
283 int diff = expectedCount - ((actualCount != null) ? actualCount : 0); local
284 if (diff > 0) {
285 missingFreq.put(expectedEntry.getKey(), diff); local
    [all...]
  /cts/tests/tests/media/src/android/media/cts/
MediaSyncTest.java 442 final double diff = state.mMediaDurationUs - state.mClockDurationUs * playbackRate ; local
447 + ", diff " + diff
451 if (Math.abs(diff) <= tolerance) {
  /device/google/marlin/camera/QCamera2/HAL/
QCamera2HWICallbacks.cpp 2911 nsecs_t diff = now - mVLastFpsTime; local
2935 nsecs_t diff = now - mPLastFpsTime; local
    [all...]
  /device/google/marlin/camera/QCamera2/HAL3/
QCamera3Channel.cpp 1661 nsecs_t diff = now - mLastFpsTime; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
bltinmodule.c 1713 PyObject *diff = NULL; local
1947 unsigned long diff = uhi - ulo - 1; local
    [all...]
dtoa.c 44 * Balloc, multadd, s2b, i2b, mult, pow5mult, lshift, diff, d2b
312 involving Bigints: a notable exception is the diff function, which
923 diff(Bigint *a, Bigint *b) function
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
bltinmodule.c 1703 PyObject *diff = NULL; local
1937 unsigned long diff = uhi - ulo - 1; local
    [all...]

Completed in 1659 milliseconds

<<21222324252627282930>>