HomeSort by relevance Sort by last modified time
    Searched full:microseconds (Results 26 - 50 of 381) sorted by null

12 3 4 5 6 7 8 91011>>

  /packages/apps/LegacyCamera/jni/feature_stab/db_vlvm/
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/qemu/distrib/sdl-1.2.15/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/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
  /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:
  /external/kernel-headers/original/linux/
idle_stats_device.h 16 * microseconds unless stated otherwise.
  /external/stressapptest/src/
sattypes.h 157 inline bool sat_usleep(int32 microseconds) {
159 req.tv_sec = microseconds / 1000000;
160 // Convert microseconds argument to nano seconds.
161 req.tv_nsec = (microseconds % 1000000) * 1000;
  /libcore/luni/src/main/java/libcore/io/
StructTimeval.java 27 /** Microseconds. */
  /ndk/sources/cxx-stl/llvm-libc++/test/utilities/time/time.duration/time.duration.arithmetic/
op_mod=rep.pass.cpp 21 std::chrono::microseconds us(11);
  /ndk/sources/cxx-stl/llvm-libc++/test/utilities/time/time.duration/time.duration.comparisons/
op_equal.pass.cpp 43 std::chrono::microseconds s2(3000);
49 std::chrono::microseconds s2(4000);
86 constexpr std::chrono::microseconds s2(3000);
92 constexpr std::chrono::microseconds s2(4000);
op_less.pass.cpp 57 std::chrono::microseconds s2(3000);
65 std::chrono::microseconds s2(4000);
114 constexpr std::chrono::microseconds s2(3000);
122 constexpr std::chrono::microseconds s2(4000);
  /ndk/sources/cxx-stl/llvm-libc++/test/utilities/time/time.duration/time.duration.cons/
convert_inexact.fail.cpp 23 std::chrono::microseconds us(1);
  /ndk/sources/cxx-stl/llvm-libc++/test/utilities/time/time.point/time.point.cons/
convert.fail.cpp 25 typedef std::chrono::microseconds Duration2;
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
time.h 17 suseconds_t tv_usec; /* microseconds */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
time.h 17 suseconds_t tv_usec; /* microseconds */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
time.h 17 suseconds_t tv_usec; /* microseconds */
  /system/media/audio_effects/include/audio_effects/
effect_aec.h 34 AEC_PARAM_ECHO_DELAY, // echo delay in microseconds
  /frameworks/base/core/java/android/os/
BatteryStats.java 37 * wakelocks, processes, packages, and services. All times are represented in microseconds
192 * Returns the total time in microseconds associated with this Timer for the
195 * @param batteryRealtime system realtime on battery in microseconds
197 * @return a time in microseconds
358 * Returns the cpu time spent in microseconds while the process was in the foreground.
360 * @return foreground cpu time in microseconds
365 * Returns the approximate cpu time spent in microseconds, at a certain CPU speed.
404 * @param batteryUptime elapsed uptime on battery in microseconds.
763 * Returns the time in microseconds that the screen has been on while the device was
783 * Returns the time in microseconds that the screen has been on wit
    [all...]
  /external/llvm/include/llvm/Support/
TimeValue.h 207 /// @brief Retrieve the fractional part as microseconds;
208 uint32_t microseconds() const { function in class:llvm::sys::TimeValue
219 /// Returns the TimeValue as a number of microseconds. Note that the value
223 /// @brief Convert to a number of microseconds (can overflow)
301 /// @brief Set the nanoseconds component using a number of microseconds.
302 void microseconds ( int32_t micros ) { function in class:llvm::sys::TimeValue
315 void usec( int64_t microseconds ) {
316 this->seconds_ = microseconds / MICROSECONDS_PER_SECOND;
317 this->nanos_ = NanoSecondsType(microseconds % MICROSECONDS_PER_SECOND) *
  /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/native/libs/utils/
Timers.cpp 95 // Get the duration in microseconds.
102 // microseconds.

Completed in 1021 milliseconds

12 3 4 5 6 7 8 91011>>