HomeSort by relevance Sort by last modified time
    Searched refs:tv_nsec (Results 226 - 250 of 627) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /system/extras/tests/memtest/
fptest.cpp 41 t.tv_sec = t.tv_nsec = 0;
43 return nsecs_t(t.tv_sec)*1000000000LL + t.tv_nsec;
memtest.cpp 34 t.tv_sec = t.tv_nsec = 0;
36 return nsecs_t(t.tv_sec)*1000000000LL + t.tv_nsec;
  /external/chromium_org/third_party/libusb/src/libusb/os/
poll_windows.h 112 (tv)->tv_usec = (long)(ts)->tv_nsec / 1000; \
  /external/chromium_org/third_party/webrtc/base/
timing.cc 85 ts.tv_nsec = static_cast<long>(sec_frac * 1.0e9); // NOLINT
  /external/chromium_org/tools/xdisplaycheck/
xdisplaycheck.cc 31 sleep_time.tv_nsec = duration_ms * 1000 * 1000; // nanoseconds.
  /external/libcxx/src/
chrono.cpp 126 return time_point(seconds(tp.tv_sec) + nanoseconds(tp.tv_nsec));
  /external/qemu/distrib/sdl-1.2.15/src/thread/pthread/
SDL_syssem.c 140 ts_timeout.tv_nsec = now.tv_usec * 1000;
  /external/stlport/stlport/stl/
_threads.c 111 __ts.tv_nsec = 1 << __log_nsec;
  /frameworks/base/services/core/jni/
com_android_server_AlarmManagerService.cpp 120 ts.tv_nsec = tv->tv_usec * 1000;
147 if (!ts->tv_nsec && !ts->tv_sec) {
148 ts->tv_nsec = 1;
363 ts.tv_nsec = nanoseconds;
  /hardware/intel/img/hwcomposer/common/observers/
SoftVsyncObserver.cpp 138 spec.tv_nsec = next_vsync % 1000000000;
  /hardware/libhardware/modules/local_time/
local_time_hw.c 48 ((uint64_t)ts.tv_nsec);
  /hardware/ti/omap4-aah/domx/mm_osal/src/
timm_osal_mutex.c 190 abs_timeout.tv_nsec = (ltimenow_us % 1000000) * 1000;
  /hardware/ti/omap4xxx/domx/mm_osal/src/
timm_osal_mutex.c 190 abs_timeout.tv_nsec = (ltimenow_us % 1000000) * 1000;
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_threads.c 111 __ts.tv_nsec = 1 << __log_nsec;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/alsa/
global.h 144 long tv_nsec; /* nanoseconds */ member in struct:timespec
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/alsa/
global.h 144 long tv_nsec; /* nanoseconds */ member in struct:timespec
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/
_threads.c 111 __ts.tv_nsec = 1 << __log_nsec;
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/
_threads.c 111 __ts.tv_nsec = 1 << __log_nsec;
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/
_threads.c 111 __ts.tv_nsec = 1 << __log_nsec;
  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/
_threads.c 111 __ts.tv_nsec = 1 << __log_nsec;
  /prebuilts/ndk/9/sources/cxx-stl/EH/stlport/stlport/stl/
_threads.c 111 __ts.tv_nsec = 1 << __log_nsec;
  /system/core/toolbox/
uptime.c 108 up_time = up_timespec.tv_sec + up_timespec.tv_nsec / 1e9;
  /frameworks/wilhelm/src/
locks.c 37 ts->tv_nsec += delta;
39 if (ts->tv_nsec >= 1000000000L) {
41 ts->tv_nsec -= 1000000000L;
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/
kernel_intercept.cc 340 ts[0].tv_nsec = times[0].tv_usec * 1000;
342 ts[1].tv_nsec = times[1].tv_usec * 1000;
351 ts[0].tv_nsec = times[0].tv_usec * 1000;
353 ts[1].tv_nsec = times[1].tv_usec * 1000;
407 ts[0].tv_nsec = 0;
409 ts[1].tv_nsec = 0;
  /external/qemu/util/
qemu-thread-posix.c 200 ts->tv_nsec = tv.tv_usec * 1000 + (ms % 1000) * 1000000;
202 if (ts->tv_nsec >= 1000000000) {
204 ts->tv_nsec -= 1000000000;

Completed in 639 milliseconds

1 2 3 4 5 6 7 8 91011>>