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

  /external/webkit/JavaScriptCore/runtime/
TimeoutChecker.cpp 122 unsigned timeDiff = currentTime - m_timeAtLastCheck;
124 if (timeDiff == 0)
125 timeDiff = 1;
127 m_timeExecuting += timeDiff;
132 m_ticksUntilNextCheck = static_cast<unsigned>((static_cast<float>(intervalBetweenChecks) / timeDiff) * m_ticksUntilNextCheck);
133 // If the new threshold is 0 reset it to the default threshold. This can happen if the timeDiff is higher than the
  /packages/apps/Contacts/src/com/android/contacts/
TwelveKeyDialer.java 605 long timeDiff = SystemClock.uptimeMillis() - event.getDownTime();
606 if (timeDiff >= ViewConfiguration.getLongPressTimeout()) {
    [all...]
  /external/sqlite/dist/
shell.c 90 static double timeDiff(struct timeval *pStart, struct timeval *pEnd){
103 timeDiff(&sBegin.ru_utime, &sEnd.ru_utime),
104 timeDiff(&sBegin.ru_stime, &sEnd.ru_stime));
164 static double timeDiff(FILETIME *pStart, FILETIME *pEnd){
178 timeDiff(&ftUserBegin, &ftUserEnd),
179 timeDiff(&ftKernelBegin, &ftKernelEnd));
    [all...]

Completed in 160 milliseconds