HomeSort by relevance Sort by last modified time
    Searched defs:tv_nsec (Results 1 - 25 of 56) sorted by null

1 2 3

  /bionic/libc/include/bits/
timespec.h 43 long tv_nsec; member in struct:timespec
  /device/linaro/bootloader/arm-trusted-firmware/include/lib/stdlib/sys/
_timespec.h 46 long tv_nsec; /* and nanoseconds */ member in struct:timespec
  /libcore/luni/src/main/java/android/system/
StructTimespec.java 29 public final long tv_nsec; field in class:StructTimespec
31 public StructTimespec(long tv_sec, long tv_nsec) {
33 this.tv_nsec = tv_nsec;
34 if (tv_nsec < 0 || tv_nsec > 999_999_999) {
36 "tv_nsec value " + tv_nsec + " is not in [0, 999999999]");
48 if (tv_nsec > other.tv_nsec) {
    [all...]
  /system/core/liblog/include_vndk/log/
log_time.h 38 #define LOG_TIME_NSEC(t) ((t)->tv_nsec & (UINT32_MAX >> 2))
42 uint32_t tv_nsec; member in struct:log_time
  /external/libusb/libusb/os/
threads_windows.h 42 long tv_nsec; member in struct:timespec
  /external/libvncserver/compat/msvc/sys/
time.h 20 long tv_nsec; /* Additional nanoseconds since */ member in struct:timespec
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/alsa/
global.h 144 long tv_nsec; /* nanoseconds */ member in struct:timespec
  /device/google/cuttlefish_common/common/vsoc/lib/
vsoc_audio_message.h 28 uint32_t tv_nsec; member in struct:timespec32
34 tv_nsec(from.tv_nsec) {
97 time_presented.tv_nsec = 0;
  /external/libcxx/test/libcxx/experimental/filesystem/
convert_file_time.sh.cpp 171 NSecT tv_nsec; member in struct:TestTimeSpec
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/sys/
timeb.h 92 long tv_nsec; /* Nanoseconds */ member in struct:timespec
types.h 91 long tv_nsec; /* Nanoseconds */ member in struct:timespec
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/test/libcxx/experimental/filesystem/
convert_file_time.sh.cpp 171 NSecT tv_nsec; member in struct:TestTimeSpec
  /system/core/liblog/include/log/
log_time.h 33 #define LOG_TIME_NSEC(t) ((t)->tv_nsec & (UINT32_MAX >> 2))
45 uint32_t tv_nsec; member in struct:log_time
52 tv_nsec(static_cast<uint32_t>(T.tv_nsec)) {
55 : tv_sec(sec), tv_nsec(nsec) {
68 tv_nsec = static_cast<uint32_t>(T.tv_nsec);
76 tv_nsec = c[4] | (static_cast<uint32_t>(c[5]) << 8) |
84 (tv_nsec == static_cast<uint32_t>(T.tv_nsec));
178 uint32_t tv_nsec; member in struct:log_time
    [all...]
logprint.h 58 long tv_nsec; member in struct:AndroidLogEntry_t
  /bionic/libc/kernel/uapi/linux/
time.h 26 long tv_nsec; member in struct:timespec
  /device/linaro/bootloader/edk2/StdLib/Include/sys/
time.h 65 LONG32 tv_nsec; /* and nanoseconds */ member in struct:timespec
70 (ts)->tv_nsec = (tv)->tv_usec * 1000; \
75 (tv)->tv_usec = (ts)->tv_nsec / 1000; \
108 #define timespecclear(tsp) (tsp)->tv_sec = (tsp)->tv_nsec = 0
109 #define timespecisset(tsp) ((tsp)->tv_sec || (tsp)->tv_nsec)
113 ((tsp)->tv_nsec cmp (usp)->tv_nsec) : \
119 (vsp)->tv_nsec = (tsp)->tv_nsec + (usp)->tv_nsec; \
    [all...]
  /external/kernel-headers/original/uapi/linux/
time.h 12 long tv_nsec; /* nanoseconds */ member in struct:timespec
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
time.h 11 long tv_nsec; /* nanoseconds */ member in struct:timespec
  /bionic/libc/kernel/uapi/linux/hsi/
cs-protocol.h 51 __u32 tv_nsec; member in struct:cs_timestamp
  /device/google/cuttlefish_common/common/libs/time/
monotonic_time.h 31 ts_.tv_nsec = nanoseconds;
46 truncated_ns_ = ts_.tv_nsec;
61 int64_t tv_nsec = static_cast<int64_t>(ts_.tv_nsec) * factor; local
62 rval.ts_.tv_sec += (tv_nsec / kNanosecondsPerSecond);
63 rval.ts_.tv_nsec = tv_nsec % kNanosecondsPerSecond;
69 ret.tv_nsec = (ts_.tv_nsec + other.ts_.tv_nsec) % 1000000000
    [all...]
  /external/kernel-headers/original/uapi/linux/hsi/
cs-protocol.h 85 __u32 tv_nsec; /* nanoseconds */ member in struct:cs_timestamp
  /external/libpcap/
pcap-snf.c 109 long tv_nsec; local
115 tv_nsec = (ts_nanosec % _NSEC_PER_SEC);
119 tv.tv_usec = tv_nsec;
121 tv.tv_usec = tv_nsec / 1000;
  /external/perfetto/src/ftrace_reader/
cpu_reader.cc 95 uint64_t tv_nsec; member in struct:perfetto::__anon31970::TimeStamp
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
time.h 123 long int tv_nsec; /* Nanoseconds. */ member in struct:timespec
  /bionic/libc/async_safe/
async_safe_log.cpp 474 uint32_t tv_nsec; member in struct:log_time
495 realtime_ts.tv_nsec = ts.tv_nsec;

Completed in 788 milliseconds

1 2 3