HomeSort by relevance Sort by last modified time
    Searched full:microseconds (Results 1 - 25 of 338) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/skia/bench/
BenchSysTimer_mach.cpp 40 if ((end_clock.microseconds - start_clock.microseconds) < 0) {
43 + end_clock.microseconds
44 - start_clock.microseconds) / 1000.0;
47 duration_clock += (end_clock.microseconds - start_clock.microseconds)
  /packages/apps/Camera/jni/feature_stab/db_vlvm/
db_framestitching.h 51 4.5 microseconds with 3 points
52 4.7 microseconds with 4 points
53 5.0 microseconds with 5 points
54 5.2 microseconds with 6 points
55 5.8 microseconds with 10 points
56 20 microseconds with 100 points
57 205 microseconds with 1000 points
db_image_homography.h 119 0.9 microseconds with 2 points
120 1.0 microseconds with 3 points
121 1.1 microseconds with 4 points
122 1.3 microseconds with 5 points
123 1.4 microseconds with 6 points
124 1.7 microseconds with 10 points
125 9 microseconds with 100 points
126 130 microseconds with 1000 points
  /packages/apps/LegacyCamera/jni/feature_stab/db_vlvm/
db_framestitching.h 51 4.5 microseconds with 3 points
52 4.7 microseconds with 4 points
53 5.0 microseconds with 5 points
54 5.2 microseconds with 6 points
55 5.8 microseconds with 10 points
56 20 microseconds with 100 points
57 205 microseconds with 1000 points
db_image_homography.h 119 0.9 microseconds with 2 points
120 1.0 microseconds with 3 points
121 1.1 microseconds with 4 points
122 1.3 microseconds with 5 points
123 1.4 microseconds with 6 points
124 1.7 microseconds with 10 points
125 9 microseconds with 100 points
126 130 microseconds with 1000 points
  /external/bluetooth/glib/glib/
gtimer.c 140 gulong *microseconds)
154 if (microseconds)
155 *microseconds = (elapsed / 1000) % 1000000;
161 g_usleep (gulong microseconds)
164 Sleep (microseconds / 1000);
168 request.tv_sec = microseconds / G_USEC_PER_SEC;
169 request.tv_nsec = 1000 * (microseconds % G_USEC_PER_SEC);
176 request.tv_sec = microseconds / G_USEC_PER_SEC;
177 request.tv_nsec = 1000 * (microseconds % G_USEC_PER_SEC);
188 if (microseconds > G_MAXLONG
    [all...]
gtimer.h 41 /* microseconds per second */
53 gulong *microseconds);
55 void g_usleep (gulong microseconds);
58 glong microseconds);
  /external/libvpx/
usage_cx.dox 6 of time in microseconds the encoder should spend working on the frame. For
  /sdk/traceview/src/com/android/traceview/
TraceUnits.java 24 private TimeScale mTimeScale = TimeScale.MicroSeconds;
80 case MicroSeconds:
91 Seconds, MilliSeconds, MicroSeconds
  /external/iptables/extensions/
libxt_RATEEST.man 9 Rate measurement interval, in seconds, milliseconds or microseconds.
  /frameworks/base/tools/layoutlib/bridge/src/android/os/
SystemClock_Delegate.java 73 * Returns microseconds running in the current thread.
75 * @return elapsed microseconds in the thread
85 * Returns current wall time in microseconds.
87 * @return elapsed microseconds in wall time
  /external/bluetooth/glib/docs/reference/glib/tmpl/
timers.sgml 9 #GTimer records a start time, and counts microseconds elapsed since that time.
78 seconds elapsed, including any fractional part. The @microseconds
86 @microseconds: return location for the fractional part of seconds elapsed,
87 in microseconds (that is, the total number of microseconds elapsed, modulo
  /external/netperf/
hist.h 14 Given a time difference in microseconds, increment one of 61
75 microseconds.
102 delta_micro - calculate the difference in microseconds between two
  /external/skia/src/ports/
SkTime_Unix.cpp 38 return (SkMSec) (tv.tv_sec * 1000 + tv.tv_usec / 1000 ); // microseconds to milliseconds
  /external/tcpdump/
igrp.h 25 u_int8_t igr_dly[3]; /* delay in tens of microseconds */
  /external/chromium/chrome/common/extensions/docs/examples/api/messaging/timer/
popup.html 36 var usec = Math.round(timer.microseconds() / response.counter);
58 var usec = Math.round(timer.microseconds() / response.counter);
  /external/qemu/distrib/sdl-1.2.12/src/timer/macos/
FastTimes.c 30 On 680x0 machines, we just use Microseconds().
39 * We can also try Microseconds() which is emulated : Overhead = 36 ?sec.
43 uses UpTime() if available and falls back to Microseconds() otherwise.
45 UpTime() if available and falls back to Microseconds() otherwise.
50 accurate, and it's the basis for the Time Manager and Microseconds().
61 Time Manager implementation: UpTime(), Microseconds(), and TickCount() are
164 /* Calculate a scale value that will give microseconds per second.
212 Microseconds(&wide);
254 Microseconds(&wide);
SDL_systimer.c 95 Microseconds (&ms);
106 Microseconds (&microsecs);
114 Microseconds (&microsecs);
  /external/icu4c/i18n/
utmscale.c 15 #define microseconds (ticks * 10) macro
16 #define milliseconds (microseconds * 1000)
34 {microseconds, INT64_C(62135596800000000), INT64_C(-984472800485477580), INT64_C(860201606885477580), INT64_C(-9223372036854775804), INT64_C(9223372036854775804), INT64_C(62135596800000001), INT64_C(62135596799999999), INT64_C(5), INT64_C(-9223372036854775803), INT64_C(9223372036854775802)},
  /external/chromium/base/
time_posix.cc 18 int64 microseconds = InMicroseconds(); local
20 if (microseconds >= Time::kMicrosecondsPerSecond) {
22 microseconds -= seconds * Time::kMicrosecondsPerSecond;
26 microseconds * Time::kNanosecondsPerMicrosecond};
63 // Combine seconds and microseconds in a 64-bit field containing microseconds
  /device/moto/stingray/whisper/
SHA_TimeUtilsLoop.c 33 //!< Offsets time needed to prepare microseconds loop.
49 * \param[in] delay Delay for this number of microseconds (us).
  /external/guava/guava/src/com/google/common/base/
Stopwatch.java 21 import static java.util.concurrent.TimeUnit.MICROSECONDS;
203 if (MICROSECONDS.convert(nanos, NANOSECONDS) > 0) {
204 return MICROSECONDS;
213 case MICROSECONDS:
  /external/guava/guava-gwt/src-super/com/google/common/base/super/com/google/common/base/
Stopwatch.java 21 import static java.util.concurrent.TimeUnit.MICROSECONDS;
175 if (MICROSECONDS.convert(nanos, NANOSECONDS) > 0) {
176 return MICROSECONDS;
185 case MICROSECONDS:
  /libcore/luni/src/main/java/libcore/io/
StructTimeval.java 27 /** Microseconds. */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
time.h 17 suseconds_t tv_usec; /* microseconds */

Completed in 1379 milliseconds

1 2 3 4 5 6 7 8 91011>>