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

1 2 3 4 5 6 7 8 9

  /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
  /libcore/luni/src/test/java/tests/api/java/util/concurrent/
TimeUnitTest.java 44 TimeUnit.MICROSECONDS));
67 TimeUnit.MICROSECONDS));
73 TimeUnit.MICROSECONDS.convert(t,
76 TimeUnit.MICROSECONDS.convert(t,
79 TimeUnit.MICROSECONDS.convert(t,
82 TimeUnit.MICROSECONDS.convert(t,
85 TimeUnit.MICROSECONDS.convert(t,
88 TimeUnit.MICROSECONDS.convert(t,
89 TimeUnit.MICROSECONDS));
91 TimeUnit.MICROSECONDS.convert(1000L*t
    [all...]
  /sdk/traceview/src/com/android/traceview/
TraceUnits.java 24 private TimeScale mTimeScale = TimeScale.MicroSeconds;
80 case MicroSeconds:
91 Seconds, MilliSeconds, MicroSeconds
  /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/tcpdump/
igrp.h 25 u_int8_t igr_dly[3]; /* delay in tens of microseconds */
  /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);
SDL_MPWtimer.c 52 Microseconds(&now);
64 Microseconds(&now);
  /external/chromium/third_party/icu/source/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/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)},
  /frameworks/base/include/utils/
Timers.h 75 static inline nsecs_t microseconds(nsecs_t v) { return us2ns(v); } function
115 // Get the duration in microseconds.
119 // microseconds.
  /external/chromium/base/
time_posix.cc 50 // Combine seconds and microseconds in a 64-bit field containing microseconds
181 int64 microseconds = InMicroseconds(); local
183 if (microseconds >= Time::kMicrosecondsPerSecond) {
185 microseconds -= seconds * Time::kMicrosecondsPerSecond;
189 microseconds * Time::kNanosecondsPerMicrosecond};
time.h 6 // microseconds (s/1,000,000) since a platform-dependent epoch. Each
11 // microseconds.
14 // in measuring time durations. It is internally represented in microseconds.
158 // Constructs a delta given the duration in microseconds. This is private
164 // Delta in microseconds.
361 // The representation of Jan 1, 1970 UTC in microseconds since the
365 // Time in microseconds in UTC.
486 // and testing. Ticks is in microseconds.
490 // Tick count in microseconds.
  /external/skia/src/ports/
SkTime_Unix.cpp 47 return (SkMSec) (tv.tv_sec * 1000 + tv.tv_usec / 1000 ); // microseconds to milliseconds
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
time.h 17 suseconds_t tv_usec; /* microseconds */
  /frameworks/base/core/java/android/os/
BatteryStats.java 33 * wakelocks, processes, packages, and services. All times are represented in microseconds
182 * Returns the total time in microseconds associated with this Timer for the
185 * @param batteryRealtime system realtime on battery in microseconds
187 * @return a time in microseconds
340 * Returns the cpu time spent in microseconds while the process was in the foreground.
342 * @return foreground cpu time in microseconds
347 * Returns the approximate cpu time spent in microseconds, at a certain CPU speed.
386 * @param batteryUptime elapsed uptime on battery in microseconds.
574 * Returns the time in microseconds that the screen has been on while the device was
594 * Returns the time in microseconds that the screen has been on wit
    [all...]
  /bionic/libc/include/sys/
_types.h 60 typedef __uint32_t __useconds_t; /* microseconds */
61 typedef __int32_t __suseconds_t; /* microseconds (signed) */
  /development/ndk/platforms/android-3/include/sys/
_types.h 60 typedef __uint32_t __useconds_t; /* microseconds */
61 typedef __int32_t __suseconds_t; /* microseconds (signed) */
  /frameworks/base/libs/utils/
Timers.cpp 76 // Get the duration in microseconds.
83 // microseconds.
  /prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/sys/
_types.h 60 typedef __uint32_t __useconds_t; /* microseconds */
61 typedef __int32_t __suseconds_t; /* microseconds (signed) */
  /prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/sys/
_types.h 60 typedef __uint32_t __useconds_t; /* microseconds */
61 typedef __int32_t __suseconds_t; /* microseconds (signed) */
  /prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/sys/
_types.h 60 typedef __uint32_t __useconds_t; /* microseconds */
61 typedef __int32_t __suseconds_t; /* microseconds (signed) */

Completed in 394 milliseconds

1 2 3 4 5 6 7 8 9