HomeSort by relevance Sort by last modified time
    Searched refs:nsec (Results 126 - 150 of 378) sorted by null

1 2 3 4 56 7 8 91011>>

  /prebuilts/ndk/current/platforms/android-23/arch-arm/usr/include/linux/
pps.h 31 __s32 nsec; member in struct:pps_ktime
  /prebuilts/ndk/current/platforms/android-23/arch-arm64/usr/include/linux/
pps.h 31 __s32 nsec; member in struct:pps_ktime
  /prebuilts/ndk/current/platforms/android-23/arch-mips/usr/include/linux/
pps.h 31 __s32 nsec; member in struct:pps_ktime
  /prebuilts/ndk/current/platforms/android-23/arch-mips64/usr/include/linux/
pps.h 31 __s32 nsec; member in struct:pps_ktime
  /prebuilts/ndk/current/platforms/android-23/arch-x86/usr/include/linux/
pps.h 31 __s32 nsec; member in struct:pps_ktime
  /prebuilts/ndk/current/platforms/android-23/arch-x86_64/usr/include/linux/
pps.h 31 __s32 nsec; member in struct:pps_ktime
  /prebuilts/ndk/current/platforms/android-24/arch-arm/usr/include/linux/
pps.h 31 __s32 nsec; member in struct:pps_ktime
  /prebuilts/ndk/current/platforms/android-24/arch-arm64/usr/include/linux/
pps.h 31 __s32 nsec; member in struct:pps_ktime
  /prebuilts/ndk/current/platforms/android-24/arch-mips/usr/include/linux/
pps.h 31 __s32 nsec; member in struct:pps_ktime
  /prebuilts/ndk/current/platforms/android-24/arch-mips64/usr/include/linux/
pps.h 31 __s32 nsec; member in struct:pps_ktime
  /prebuilts/ndk/current/platforms/android-24/arch-x86/usr/include/linux/
pps.h 31 __s32 nsec; member in struct:pps_ktime
  /prebuilts/ndk/current/platforms/android-24/arch-x86_64/usr/include/linux/
pps.h 31 __s32 nsec; member in struct:pps_ktime
  /prebuilts/go/darwin-x86/src/time/
time_test.go 114 nsec := test.seconds*1e9 + int64(golden.Nanosecond)
115 tm := Unix(0, nsec).UTC()
117 if newnsec != nsec {
118 t.Errorf("NanosecondsToUTC(%d).Nanoseconds() = %d", nsec, newnsec)
121 t.Errorf("NanosecondsToUTC(%d):", nsec)
148 nsec := test.seconds*1e9 + int64(golden.Nanosecond)
149 tm := Unix(0, nsec)
151 if newnsec != nsec {
152 t.Errorf("NanosecondsToLocalTime(%d).Seconds() = %d", nsec, newnsec)
155 t.Errorf("NanosecondsToLocalTime(%d):", nsec)
    [all...]
  /prebuilts/go/linux-x86/src/time/
time_test.go 114 nsec := test.seconds*1e9 + int64(golden.Nanosecond)
115 tm := Unix(0, nsec).UTC()
117 if newnsec != nsec {
118 t.Errorf("NanosecondsToUTC(%d).Nanoseconds() = %d", nsec, newnsec)
121 t.Errorf("NanosecondsToUTC(%d):", nsec)
148 nsec := test.seconds*1e9 + int64(golden.Nanosecond)
149 tm := Unix(0, nsec)
151 if newnsec != nsec {
152 t.Errorf("NanosecondsToLocalTime(%d).Seconds() = %d", nsec, newnsec)
155 t.Errorf("NanosecondsToLocalTime(%d):", nsec)
    [all...]
  /system/core/liblog/
pmsg_reader.c 224 log_msg->entry_v4.nsec = buf.l.realtime.tv_nsec;
339 if ((transp.logMsg.entry.nsec % ANDROID_LOG_PMSG_FILE_SEQUENCE) ||
340 ((transp.logMsg.entry.nsec / ANDROID_LOG_PMSG_FILE_SEQUENCE) >=
467 if (transp.logMsg.entry.nsec == content->entry.nsec) {
485 if ((node_to_item(node, struct content, node))->entry.nsec <
486 transp.logMsg.entry.nsec) {
530 while (sequence < content->entry.nsec) {
560 sequence = content->entry.nsec + ANDROID_LOG_PMSG_FILE_SEQUENCE;
  /prebuilts/go/darwin-x86/src/syscall/
syscall_linux_amd64.go 86 func TimespecToNsec(ts Timespec) int64 { return int64(ts.Sec)*1e9 + int64(ts.Nsec) }
88 func NsecToTimespec(nsec int64) (ts Timespec) {
89 ts.Sec = nsec / 1e9
90 ts.Nsec = nsec % 1e9
96 func NsecToTimeval(nsec int64) (tv Timeval) {
97 nsec += 999 // round up to microsecond
98 tv.Sec = nsec / 1e9
99 tv.Usec = nsec % 1e9 / 1e3
syscall_linux_arm.go 13 func TimespecToNsec(ts Timespec) int64 { return int64(ts.Sec)*1e9 + int64(ts.Nsec) }
15 func NsecToTimespec(nsec int64) (ts Timespec) {
16 ts.Sec = int32(nsec / 1e9)
17 ts.Nsec = int32(nsec % 1e9)
21 func NsecToTimeval(nsec int64) (tv Timeval) {
22 nsec += 999 // round up to microsecond
23 tv.Sec = int32(nsec / 1e9)
24 tv.Usec = int32(nsec % 1e9 / 1e3)
syscall_linux_arm64.go 73 func TimespecToNsec(ts Timespec) int64 { return int64(ts.Sec)*1e9 + int64(ts.Nsec) }
75 func NsecToTimespec(nsec int64) (ts Timespec) {
76 ts.Sec = nsec / 1e9
77 ts.Nsec = nsec % 1e9
83 func NsecToTimeval(nsec int64) (tv Timeval) {
84 nsec += 999 // round up to microsecond
85 tv.Sec = nsec / 1e9
86 tv.Usec = nsec % 1e9 / 1e3
syscall_linux_ppc64x.go 69 func TimespecToNsec(ts Timespec) int64 { return int64(ts.Sec)*1e9 + int64(ts.Nsec) }
71 func NsecToTimespec(nsec int64) (ts Timespec) {
72 ts.Sec = nsec / 1e9
73 ts.Nsec = nsec % 1e9
79 func NsecToTimeval(nsec int64) (tv Timeval) {
80 nsec += 999 // round up to microsecond
81 tv.Sec = nsec / 1e9
82 tv.Usec = nsec % 1e9 / 1e3
  /prebuilts/go/linux-x86/src/syscall/
syscall_linux_amd64.go 86 func TimespecToNsec(ts Timespec) int64 { return int64(ts.Sec)*1e9 + int64(ts.Nsec) }
88 func NsecToTimespec(nsec int64) (ts Timespec) {
89 ts.Sec = nsec / 1e9
90 ts.Nsec = nsec % 1e9
96 func NsecToTimeval(nsec int64) (tv Timeval) {
97 nsec += 999 // round up to microsecond
98 tv.Sec = nsec / 1e9
99 tv.Usec = nsec % 1e9 / 1e3
syscall_linux_arm.go 13 func TimespecToNsec(ts Timespec) int64 { return int64(ts.Sec)*1e9 + int64(ts.Nsec) }
15 func NsecToTimespec(nsec int64) (ts Timespec) {
16 ts.Sec = int32(nsec / 1e9)
17 ts.Nsec = int32(nsec % 1e9)
21 func NsecToTimeval(nsec int64) (tv Timeval) {
22 nsec += 999 // round up to microsecond
23 tv.Sec = int32(nsec / 1e9)
24 tv.Usec = int32(nsec % 1e9 / 1e3)
syscall_linux_arm64.go 73 func TimespecToNsec(ts Timespec) int64 { return int64(ts.Sec)*1e9 + int64(ts.Nsec) }
75 func NsecToTimespec(nsec int64) (ts Timespec) {
76 ts.Sec = nsec / 1e9
77 ts.Nsec = nsec % 1e9
83 func NsecToTimeval(nsec int64) (tv Timeval) {
84 nsec += 999 // round up to microsecond
85 tv.Sec = nsec / 1e9
86 tv.Usec = nsec % 1e9 / 1e3
syscall_linux_ppc64x.go 69 func TimespecToNsec(ts Timespec) int64 { return int64(ts.Sec)*1e9 + int64(ts.Nsec) }
71 func NsecToTimespec(nsec int64) (ts Timespec) {
72 ts.Sec = nsec / 1e9
73 ts.Nsec = nsec % 1e9
79 func NsecToTimeval(nsec int64) (tv Timeval) {
80 nsec += 999 // round up to microsecond
81 tv.Sec = nsec / 1e9
82 tv.Usec = nsec % 1e9 / 1e3
  /external/blktrace/btt/
trace_complete.c 24 __u64 sec, __u32 nsec, int indent)
31 type2c(type), (unsigned long long)sec, nsec);
  /prebuilts/go/darwin-x86/src/runtime/
sys_plan9_386.s 90 TEXT nsec<>(SB),NOSPLIT,$0
95 TEXT runtime·nsec(SB),NOSPLIT,$8
98 CALL nsec<>(SB)
105 // func now() (sec int64, nsec int32)
115 MOVL DX, nsec+8(FP)

Completed in 4581 milliseconds

1 2 3 4 56 7 8 91011>>