HomeSort by relevance Sort by last modified time
    Searched refs:timeDiff (Results 1 - 11 of 11) sorted by null

  /external/webkit/Source/JavaScriptCore/runtime/
TimeoutChecker.cpp 132 unsigned timeDiff = currentTime - m_timeAtLastCheck;
134 if (timeDiff == 0)
135 timeDiff = 1;
137 m_timeExecuting += timeDiff;
142 m_ticksUntilNextCheck = static_cast<unsigned>((static_cast<float>(intervalBetweenChecks) / timeDiff) * m_ticksUntilNextCheck);
143 // If the new threshold is 0 reset it to the default threshold. This can happen if the timeDiff is higher than the
  /packages/apps/Camera/src/com/android/camera/
SwitchAnimManager.java 74 long timeDiff = SystemClock.uptimeMillis() - mAnimStartTime;
75 if (timeDiff > ANIMATION_DURATION) return false;
76 float fraction = timeDiff / ANIMATION_DURATION;
CaptureAnimManager.java 108 long timeDiff = SystemClock.uptimeMillis() - mAnimStartTime;
109 if (timeDiff > CAPTURE_ANIM_DURATION) return false;
110 float fraction = timeDiff / CAPTURE_ANIM_DURATION;
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/src/org/eclipse/test/performance/ui/
TimeLineGraph.java 274 long timeDiff=thisItem.timestamp-anItem.timestamp;
276 if (timeDiff>0&&timeDiff<minimumTimeDiffPreceding){
280 if (timeDiff<=0&&Math.abs(timeDiff)<=minimumTimeDiffFollowing){
  /system/media/audio_utils/
echo_reference.c 341 int64_t timeDiff;
346 ALOGV("echo_reference_read(): NEW:timestamp is zero---------setting timeDiff = 0, "\
348 timeDiff = 0;
357 timeDiff = (((int64_t)tmp.tv_sec * 1000000000 + tmp.tv_nsec));
359 int64_t expectedDelayNs = er->playback_delay + buffer->delay_ns - timeDiff;
368 "er->playback_delay[%d] + delayCapture[%d] - timeDiff[%lld]",
369 expectedDelayNs, er->playback_delay, buffer->delay_ns, timeDiff);
431 "er->playback_delay[%d] + delayCapture[%d] - timeDiff[%lld]",
432 expectedDelayNs, er->playback_delay, buffer->delay_ns, timeDiff);
  /external/sqlite/dist/orig/
shell.c 110 static double timeDiff(struct timeval *pStart, struct timeval *pEnd){
123 timeDiff(&sBegin.ru_utime, &sEnd.ru_utime),
124 timeDiff(&sBegin.ru_stime, &sEnd.ru_stime));
181 static double timeDiff(FILETIME *pStart, FILETIME *pEnd){
195 timeDiff(&ftUserBegin, &ftUserEnd),
196 timeDiff(&ftKernelBegin, &ftKernelEnd));
    [all...]
  /external/sqlite/dist/
shell.c 115 static double timeDiff(struct timeval *pStart, struct timeval *pEnd){
128 timeDiff(&sBegin.ru_utime, &sEnd.ru_utime),
129 timeDiff(&sBegin.ru_stime, &sEnd.ru_stime));
186 static double timeDiff(FILETIME *pStart, FILETIME *pEnd){
200 timeDiff(&ftUserBegin, &ftUserEnd),
201 timeDiff(&ftKernelBegin, &ftKernelEnd));
    [all...]
  /sdk/traceview/src/com/android/traceview/
TimeLineView.java 526 long timeDiff = bd1.mStartTime - bd2.mStartTime;
527 if (timeDiff == 0)
528 timeDiff = bd1.mEndTime - bd2.mEndTime;
529 return (int) timeDiff;
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/
EventInfoFragment.java 480 long timeDiff = LOADING_MSG_MIN_DISPLAY_TIME - (System.currentTimeMillis() -
482 if (timeDiff > 0) {
483 mAnimateAlpha.setStartDelay(timeDiff);
    [all...]
  /frameworks/base/core/java/com/android/internal/os/
BatteryStatsImpl.java     [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.test.performance.ui/
performanceui.jar 

Completed in 1223 milliseconds