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

1 2 3 4 5 6 7 8 91011>>

  /prebuilts/go/darwin-x86/src/syscall/
syscall_nacl_386.go 9 Nsec int32
17 func TimespecToNsec(ts Timespec) int64 { return int64(ts.Sec)*1e9 + int64(ts.Nsec) }
19 func NsecToTimespec(nsec int64) (ts Timespec) {
20 ts.Sec = int64(nsec / 1e9)
21 ts.Nsec = int32(nsec % 1e9)
27 func NsecToTimeval(nsec int64) (tv Timeval) {
28 nsec += 999 // round up to microsecond
29 tv.Usec = int32(nsec % 1e9 / 1e3)
30 tv.Sec = int64(nsec / 1e9
    [all...]
syscall_nacl_amd64p32.go 9 Nsec int32
17 func TimespecToNsec(ts Timespec) int64 { return int64(ts.Sec)*1e9 + int64(ts.Nsec) }
19 func NsecToTimespec(nsec int64) (ts Timespec) {
20 ts.Sec = int64(nsec / 1e9)
21 ts.Nsec = int32(nsec % 1e9)
27 func NsecToTimeval(nsec int64) (tv Timeval) {
28 nsec += 999 // round up to microsecond
29 tv.Usec = int32(nsec % 1e9 / 1e3)
30 tv.Sec = int64(nsec / 1e9
    [all...]
syscall_nacl_arm.go 9 Nsec int32
17 func TimespecToNsec(ts Timespec) int64 { return int64(ts.Sec)*1e9 + int64(ts.Nsec) }
19 func NsecToTimespec(nsec int64) (ts Timespec) {
20 ts.Sec = int64(nsec / 1e9)
21 ts.Nsec = int32(nsec % 1e9)
27 func NsecToTimeval(nsec int64) (tv Timeval) {
28 nsec += 999 // round up to microsecond
29 tv.Usec = int32(nsec % 1e9 / 1e3)
30 tv.Sec = int64(nsec / 1e9
    [all...]
syscall_solaris_amd64.go 9 func TimespecToNsec(ts Timespec) int64 { return int64(ts.Sec)*1e9 + int64(ts.Nsec) }
11 func NsecToTimespec(nsec int64) (ts Timespec) {
12 ts.Sec = nsec / 1e9
13 ts.Nsec = nsec % 1e9
19 func NsecToTimeval(nsec int64) (tv Timeval) {
20 nsec += 999 // round up to microsecond
21 tv.Usec = nsec % 1e9 / 1e3
22 tv.Sec = int64(nsec / 1e9)
syscall_netbsd_386.go 9 func TimespecToNsec(ts Timespec) int64 { return int64(ts.Sec)*1e9 + int64(ts.Nsec) }
11 func NsecToTimespec(nsec int64) (ts Timespec) {
12 ts.Sec = int64(nsec / 1e9)
13 ts.Nsec = int32(nsec % 1e9)
19 func NsecToTimeval(nsec int64) (tv Timeval) {
20 nsec += 999 // round up to microsecond
21 tv.Usec = int32(nsec % 1e9 / 1e3)
22 tv.Sec = int64(nsec / 1e9)
syscall_netbsd_amd64.go 9 func TimespecToNsec(ts Timespec) int64 { return int64(ts.Sec)*1e9 + int64(ts.Nsec) }
11 func NsecToTimespec(nsec int64) (ts Timespec) {
12 ts.Sec = int64(nsec / 1e9)
13 ts.Nsec = int64(nsec % 1e9)
19 func NsecToTimeval(nsec int64) (tv Timeval) {
20 nsec += 999 // round up to microsecond
21 tv.Usec = int32(nsec % 1e9 / 1e3)
22 tv.Sec = int64(nsec / 1e9)
syscall_netbsd_arm.go 9 func TimespecToNsec(ts Timespec) int64 { return int64(ts.Sec)*1e9 + int64(ts.Nsec) }
11 func NsecToTimespec(nsec int64) (ts Timespec) {
12 ts.Sec = int64(nsec / 1e9)
13 ts.Nsec = int32(nsec % 1e9)
19 func NsecToTimeval(nsec int64) (tv Timeval) {
20 nsec += 999 // round up to microsecond
21 tv.Usec = int32(nsec % 1e9 / 1e3)
22 tv.Sec = int64(nsec / 1e9)
syscall_openbsd_386.go 9 func TimespecToNsec(ts Timespec) int64 { return int64(ts.Sec)*1e9 + int64(ts.Nsec) }
11 func NsecToTimespec(nsec int64) (ts Timespec) {
12 ts.Sec = int64(nsec / 1e9)
13 ts.Nsec = int32(nsec % 1e9)
19 func NsecToTimeval(nsec int64) (tv Timeval) {
20 nsec += 999 // round up to microsecond
21 tv.Usec = int32(nsec % 1e9 / 1e3)
22 tv.Sec = int64(nsec / 1e9)
syscall_openbsd_amd64.go 9 func TimespecToNsec(ts Timespec) int64 { return int64(ts.Sec)*1e9 + int64(ts.Nsec) }
11 func NsecToTimespec(nsec int64) (ts Timespec) {
12 ts.Sec = nsec / 1e9
13 ts.Nsec = nsec % 1e9
19 func NsecToTimeval(nsec int64) (tv Timeval) {
20 nsec += 999 // round up to microsecond
21 tv.Usec = nsec % 1e9 / 1e3
22 tv.Sec = nsec / 1e9
syscall_openbsd_arm.go 9 func TimespecToNsec(ts Timespec) int64 { return int64(ts.Sec)*1e9 + int64(ts.Nsec) }
11 func NsecToTimespec(nsec int64) (ts Timespec) {
12 ts.Sec = int64(nsec / 1e9)
13 ts.Nsec = int32(nsec % 1e9)
19 func NsecToTimeval(nsec int64) (tv Timeval) {
20 nsec += 999 // round up to microsecond
21 tv.Usec = int32(nsec % 1e9 / 1e3)
22 tv.Sec = int64(nsec / 1e9)
syscall_darwin_386.go 11 func TimespecToNsec(ts Timespec) int64 { return int64(ts.Sec)*1e9 + int64(ts.Nsec) }
13 func NsecToTimespec(nsec int64) (ts Timespec) {
14 ts.Sec = int32(nsec / 1e9)
15 ts.Nsec = int32(nsec % 1e9)
21 func NsecToTimeval(nsec int64) (tv Timeval) {
22 nsec += 999 // round up to microsecond
23 tv.Usec = int32(nsec % 1e9 / 1e3)
24 tv.Sec = int32(nsec / 1e9)
syscall_darwin_amd64.go 11 func TimespecToNsec(ts Timespec) int64 { return int64(ts.Sec)*1e9 + int64(ts.Nsec) }
13 func NsecToTimespec(nsec int64) (ts Timespec) {
14 ts.Sec = nsec / 1e9
15 ts.Nsec = nsec % 1e9
21 func NsecToTimeval(nsec int64) (tv Timeval) {
22 nsec += 999 // round up to microsecond
23 tv.Usec = int32(nsec % 1e9 / 1e3)
24 tv.Sec = int64(nsec / 1e9)
syscall_darwin_arm.go 11 func TimespecToNsec(ts Timespec) int64 { return int64(ts.Sec)*1e9 + int64(ts.Nsec) }
13 func NsecToTimespec(nsec int64) (ts Timespec) {
14 ts.Sec = int32(nsec / 1e9)
15 ts.Nsec = int32(nsec % 1e9)
21 func NsecToTimeval(nsec int64) (tv Timeval) {
22 nsec += 999 // round up to microsecond
23 tv.Usec = int32(nsec % 1e9 / 1e3)
24 tv.Sec = int32(nsec / 1e9)
syscall_darwin_arm64.go 11 func TimespecToNsec(ts Timespec) int64 { return int64(ts.Sec)*1e9 + int64(ts.Nsec) }
13 func NsecToTimespec(nsec int64) (ts Timespec) {
14 ts.Sec = nsec / 1e9
15 ts.Nsec = nsec % 1e9
21 func NsecToTimeval(nsec int64) (tv Timeval) {
22 nsec += 999 // round up to microsecond
23 tv.Usec = int32(nsec % 1e9 / 1e3)
24 tv.Sec = int64(nsec / 1e9)
syscall_dragonfly_amd64.go 11 func TimespecToNsec(ts Timespec) int64 { return int64(ts.Sec)*1e9 + int64(ts.Nsec) }
13 func NsecToTimespec(nsec int64) (ts Timespec) {
14 ts.Sec = nsec / 1e9
15 ts.Nsec = nsec % 1e9
21 func NsecToTimeval(nsec int64) (tv Timeval) {
22 nsec += 999 // round up to microsecond
23 tv.Usec = nsec % 1e9 / 1e3
24 tv.Sec = int64(nsec / 1e9)
  /prebuilts/go/linux-x86/src/syscall/
syscall_nacl_386.go 9 Nsec int32
17 func TimespecToNsec(ts Timespec) int64 { return int64(ts.Sec)*1e9 + int64(ts.Nsec) }
19 func NsecToTimespec(nsec int64) (ts Timespec) {
20 ts.Sec = int64(nsec / 1e9)
21 ts.Nsec = int32(nsec % 1e9)
27 func NsecToTimeval(nsec int64) (tv Timeval) {
28 nsec += 999 // round up to microsecond
29 tv.Usec = int32(nsec % 1e9 / 1e3)
30 tv.Sec = int64(nsec / 1e9
    [all...]
syscall_nacl_amd64p32.go 9 Nsec int32
17 func TimespecToNsec(ts Timespec) int64 { return int64(ts.Sec)*1e9 + int64(ts.Nsec) }
19 func NsecToTimespec(nsec int64) (ts Timespec) {
20 ts.Sec = int64(nsec / 1e9)
21 ts.Nsec = int32(nsec % 1e9)
27 func NsecToTimeval(nsec int64) (tv Timeval) {
28 nsec += 999 // round up to microsecond
29 tv.Usec = int32(nsec % 1e9 / 1e3)
30 tv.Sec = int64(nsec / 1e9
    [all...]
syscall_nacl_arm.go 9 Nsec int32
17 func TimespecToNsec(ts Timespec) int64 { return int64(ts.Sec)*1e9 + int64(ts.Nsec) }
19 func NsecToTimespec(nsec int64) (ts Timespec) {
20 ts.Sec = int64(nsec / 1e9)
21 ts.Nsec = int32(nsec % 1e9)
27 func NsecToTimeval(nsec int64) (tv Timeval) {
28 nsec += 999 // round up to microsecond
29 tv.Usec = int32(nsec % 1e9 / 1e3)
30 tv.Sec = int64(nsec / 1e9
    [all...]
syscall_solaris_amd64.go 9 func TimespecToNsec(ts Timespec) int64 { return int64(ts.Sec)*1e9 + int64(ts.Nsec) }
11 func NsecToTimespec(nsec int64) (ts Timespec) {
12 ts.Sec = nsec / 1e9
13 ts.Nsec = nsec % 1e9
19 func NsecToTimeval(nsec int64) (tv Timeval) {
20 nsec += 999 // round up to microsecond
21 tv.Usec = nsec % 1e9 / 1e3
22 tv.Sec = int64(nsec / 1e9)
syscall_netbsd_386.go 9 func TimespecToNsec(ts Timespec) int64 { return int64(ts.Sec)*1e9 + int64(ts.Nsec) }
11 func NsecToTimespec(nsec int64) (ts Timespec) {
12 ts.Sec = int64(nsec / 1e9)
13 ts.Nsec = int32(nsec % 1e9)
19 func NsecToTimeval(nsec int64) (tv Timeval) {
20 nsec += 999 // round up to microsecond
21 tv.Usec = int32(nsec % 1e9 / 1e3)
22 tv.Sec = int64(nsec / 1e9)
syscall_netbsd_amd64.go 9 func TimespecToNsec(ts Timespec) int64 { return int64(ts.Sec)*1e9 + int64(ts.Nsec) }
11 func NsecToTimespec(nsec int64) (ts Timespec) {
12 ts.Sec = int64(nsec / 1e9)
13 ts.Nsec = int64(nsec % 1e9)
19 func NsecToTimeval(nsec int64) (tv Timeval) {
20 nsec += 999 // round up to microsecond
21 tv.Usec = int32(nsec % 1e9 / 1e3)
22 tv.Sec = int64(nsec / 1e9)
syscall_netbsd_arm.go 9 func TimespecToNsec(ts Timespec) int64 { return int64(ts.Sec)*1e9 + int64(ts.Nsec) }
11 func NsecToTimespec(nsec int64) (ts Timespec) {
12 ts.Sec = int64(nsec / 1e9)
13 ts.Nsec = int32(nsec % 1e9)
19 func NsecToTimeval(nsec int64) (tv Timeval) {
20 nsec += 999 // round up to microsecond
21 tv.Usec = int32(nsec % 1e9 / 1e3)
22 tv.Sec = int64(nsec / 1e9)
syscall_openbsd_386.go 9 func TimespecToNsec(ts Timespec) int64 { return int64(ts.Sec)*1e9 + int64(ts.Nsec) }
11 func NsecToTimespec(nsec int64) (ts Timespec) {
12 ts.Sec = int64(nsec / 1e9)
13 ts.Nsec = int32(nsec % 1e9)
19 func NsecToTimeval(nsec int64) (tv Timeval) {
20 nsec += 999 // round up to microsecond
21 tv.Usec = int32(nsec % 1e9 / 1e3)
22 tv.Sec = int64(nsec / 1e9)
syscall_openbsd_amd64.go 9 func TimespecToNsec(ts Timespec) int64 { return int64(ts.Sec)*1e9 + int64(ts.Nsec) }
11 func NsecToTimespec(nsec int64) (ts Timespec) {
12 ts.Sec = nsec / 1e9
13 ts.Nsec = nsec % 1e9
19 func NsecToTimeval(nsec int64) (tv Timeval) {
20 nsec += 999 // round up to microsecond
21 tv.Usec = nsec % 1e9 / 1e3
22 tv.Sec = nsec / 1e9
syscall_openbsd_arm.go 9 func TimespecToNsec(ts Timespec) int64 { return int64(ts.Sec)*1e9 + int64(ts.Nsec) }
11 func NsecToTimespec(nsec int64) (ts Timespec) {
12 ts.Sec = int64(nsec / 1e9)
13 ts.Nsec = int32(nsec % 1e9)
19 func NsecToTimeval(nsec int64) (tv Timeval) {
20 nsec += 999 // round up to microsecond
21 tv.Usec = int32(nsec % 1e9 / 1e3)
22 tv.Sec = int64(nsec / 1e9)

Completed in 94 milliseconds

1 2 3 4 5 6 7 8 91011>>