HomeSort by relevance Sort by last modified time
    Searched refs:diff (Results 826 - 850 of 3197) sorted by null

<<31323334353637383940>>

  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/wifi/
WifiUtils.java 45 long diff = (now - config.getNetworkSelectionStatus().getDisableTime()) / 1000; local
46 long sec = diff % 60; //seconds
47 long min = (diff / 60) % 60; //minutes
  /frameworks/base/packages/SystemUI/scripts/
new_merge.py 27 DIFF_TOOLS=["meld", "kdiff3", "xdiff", "diffmerge.sh", "diff"]
76 print "Running diff for: %s" %(file)
77 diff(sourceFile, destFile)
81 diff(sourceFile, destFile)
96 pipe = Popen(['git', 'diff', '--name-only', argv[1]], stdout=PIPE).stdout
150 def diff(file1, file2): function
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/lowram/
TaskStackLowRamLayoutAlgorithm.java 156 int diff = taskY - y; local
157 if (diff > 0) {
159 boolean useNext = diff > diffPrev;
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
MediaNotificationProcessor.java 139 float diff = Math.abs(hsl[0] - mFilteredBackgroundHsl[0]);
140 return diff > 10 && diff < 350;
  /frameworks/opt/timezonepicker/src/com/android/timezonepicker/
TimeZoneInfo.java 267 int diff = this.mCountry.compareTo(other.mCountry); local
269 if (diff != 0) {
270 return diff;
274 // Finally diff by display name
  /packages/apps/Calendar/src/com/android/calendar/
DayFragment.java 183 int diff = currentView.compareToVisibleTimeRange(goToTime); local
185 if (diff == 0) {
190 if (diff > 0) {
CalendarViewAdapter.java 392 int diff = dayOfWeek - firstDayOfWeek; local
393 if (diff != 0) {
394 if (diff < 0) {
395 diff += 7;
397 t.monthDay -= diff;
  /packages/apps/Gallery2/jni/filters/
kmeans.h 75 N diff = (N) val1[x] - (N) val2[x]; local
76 sum += diff * diff;
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/
TraceFileParserTask.java 186 long diff = (c1.getStartTime() - c2.getStartTime());
188 // We could return diff casted to an int. But in Java, casting
190 // the sign. So we resort to comparing the diff to 0 and returning
192 if (diff == 0) {
194 } else if (diff > 0) {
  /system/bt/stack/smp/
smp_cmac.cc 281 uint16_t len, diff; local
295 diff = len - length;
298 memcpy(&cmac_cb.text[diff], input, (int)length);
  /test/vti/dashboard/src/main/java/com/android/vts/job/
VtsInactivityJobServlet.java 75 long diff = now - lastRunTime; local
79 if (diff >= TimeUnit.DAYS.toMicros(1) && diff < TimeUnit.DAYS.toMicros(8)) {
  /external/valgrind/callgrind/
dump.c 474 int diff = curr->addr - last->addr; local
476 (diff > -100) && (diff < 100)) {
477 if (diff >0)
478 VG_(fprintf)(fp, "+%d ", diff);
479 else if (diff==0)
482 VG_(fprintf)(fp, "%d ", diff);
489 int diff = curr->bb_addr - last->bb_addr; local
491 (diff > -100) && (diff < 100))
504 int diff = curr->line - last->line; local
    [all...]
  /external/pcre/dist2/src/sljit/
sljitNativeARM_64.c 156 sljit_sw diff; local
170 diff = (sljit_sw)target_addr - (sljit_sw)(code_ptr + 4);
173 diff += sizeof(sljit_ins);
174 if (diff <= 0xfffff && diff >= -0x100000) {
180 diff -= sizeof(sljit_ins);
183 if (diff <= 0x7ffffff && diff >= -0x8000000) {
887 sljit_sw diff; local
892 diff = argw - next_argw
914 sljit_sw diff; local
1555 sljit_sw diff; local
    [all...]
  /external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/xy/
XYPlotZoomPan.java 300 final float diff = newX.y - newX.x; local
305 newX.y = newX.x + diff;
309 newX.x = newX.y - diff;
314 newX.y = newX.x + diff;
318 newX.x = newX.y - diff;
  /external/fio/
steadystate.c 132 double diff; local
167 diff = ss->iops_data[i] - mean;
169 diff = ss->bw_data[i] - mean;
170 ss->deviation = max(ss->deviation, diff * (diff < 0.0 ? -1.0 : 1.0));
178 dprint(FD_STEADYSTATE, "sum_y: %llu, mean: %f, max diff: %f, "
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/timezone/
TimeZoneAliasTest.java 102 int diff = testZone.findOffsetOrdering(last, diffDate); local
103 if (diff != 0) {
105 + ", " + Zone.formatHours(diff) + "hr");
195 int diff = testZone.findOffsetOrdering(last, diffDate); external variable declarations
196 if (diff != 0) {
308 //System.out.println("-diff: " + id + "\t" + other.id);
341 //System.out.println("+diff: " + (result/HOUR) + "\t" + dateDiffFound);
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/timezone/
TimeZoneAliasTest.java 99 int diff = testZone.findOffsetOrdering(last, diffDate); local
100 if (diff != 0) {
102 + ", " + Zone.formatHours(diff) + "hr");
192 int diff = testZone.findOffsetOrdering(last, diffDate); external variable declarations
193 if (diff != 0) {
305 //System.out.println("-diff: " + id + "\t" + other.id);
338 //System.out.println("+diff: " + (result/HOUR) + "\t" + dateDiffFound);
  /external/ltp/lib/
random_range.c 549 long long med, half, diff; local
566 diff = max - min;
568 if (diff <= 2147483647)
571 half = diff / (long long)2; /* half the distance between min and max */
577 printf(" diff = %lld, half = %lld, med = %lld\n", diff, half, med);
  /external/webrtc/webrtc/modules/audio_processing/aecm/
echo_control_mobile.c 579 short diff; local
593 diff = aecm->filtDelay - aecm->knownDelay;
594 if (diff > 224)
603 } else if (diff < 96 && aecm->knownDelay > 0)
616 aecm->lastDelayDiff = diff;
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/metrics/
TelephonyMetrics.java 577 long diff = currentTimestamp - previousTimestamp; local
578 if (diff < 0) {
580 } else if (diff <= 10) {
582 } else if (diff <= 20) {
584 } else if (diff <= 50) {
586 } else if (diff <= 100) {
588 } else if (diff <= 200) {
590 } else if (diff <= 500) {
592 } else if (diff <= 1000) {
594 } else if (diff <= 2000)
    [all...]
  /system/libvintf/
HalManifest.cpp 244 std::vector<std::string> diff; local
247 std::inserter(diff, diff.begin()));
248 if (!diff.empty()) {
252 for (const auto& name : diff) {
  /toolchain/binutils/binutils-2.27/bfd/
coff-i860.c 61 symvalue diff; local
79 diff = symbol->value + reloc_entry->addend;
87 diff = reloc_entry->addend;
91 x = ((x & ~howto->dst_mask) | (((x & howto->src_mask) + diff) & howto->dst_mask))
93 if (diff != 0)
coff-m68k.c 272 symvalue diff;
290 diff = symbol->value + reloc_entry->addend;
298 diff = reloc_entry->addend;
302 x = ((x & ~howto->dst_mask) | (((x & howto->src_mask) + diff) & howto->dst_mask))
304 if (diff != 0)
271 symvalue diff; local
  /external/libvpx/libvpx/vpx_dsp/
variance.c 31 int diff = a[c] - b[c]; local
32 distortion += diff * diff;
61 const int diff = a[j] - b[j]; local
62 *sum += diff;
63 *sse += diff * diff;
252 const int diff = a[j] - b[j]; local
253 *sum += diff;
254 *sse += diff * diff
    [all...]
  /frameworks/base/core/java/android/text/
DynamicLayout.java 514 int diff = where - find; local
515 before += diff;
516 after += diff;
517 where -= diff;
551 int diff = where - st; local
552 before += diff;
553 after += diff;
554 where -= diff;
560 int diff = en - (where + after); local
561 before += diff;
    [all...]

Completed in 1784 milliseconds

<<31323334353637383940>>