Home
last modified time | relevance | path

Searched refs:suseconds_t (Results 1 - 25 of 62) sorted by relevance

123

/third_party/pulseaudio/src/pulse/
H A Dtimeval.c62 tv->tv_usec = (suseconds_t) (t % PA_USEC_PER_SEC); in pa_gettimeofday()
136 tv->tv_usec += (suseconds_t) v; in pa_timeval_add()
145 tv->tv_usec -= (suseconds_t) PA_USEC_PER_SEC; in pa_timeval_add()
152 tv->tv_usec = (suseconds_t) (PA_USEC_PER_SEC-1); in pa_timeval_add()
168 if (tv->tv_usec >= (suseconds_t) v) in pa_timeval_sub()
169 tv->tv_usec -= (suseconds_t) v; in pa_timeval_sub()
176 tv->tv_usec += (suseconds_t) (PA_USEC_PER_SEC - v); in pa_timeval_sub()
192 tv->tv_usec = (suseconds_t) (PA_USEC_PER_SEC-1); in pa_timeval_store()
198 tv->tv_usec = (suseconds_t) (v % PA_USEC_PER_SEC); in pa_timeval_store()
/third_party/ltp/testcases/kernel/syscalls/settimeofday/
H A Dsettimeofday01.c21 suseconds_t delta; in verify_settimeofday()
43 (suseconds_t) (tv2.tv_sec - tv1.tv_sec) * 1000 + in verify_settimeofday()
47 (suseconds_t) (tv1.tv_sec - tv2.tv_sec) * 1000 + in verify_settimeofday()
/third_party/musl/libc-test/src/api/
H A Dsys_time.c8 T(suseconds_t) in f()
13 F(suseconds_t,tv_usec) in f()
H A Dsys_select.c8 T(suseconds_t) in f()
15 F(suseconds_t, tv_usec) in f()
H A Dsys_types.c27 N(suseconds_t) in f()
/third_party/eudev/src/shared/
H A Dtime-util.c71 tv->tv_usec = (suseconds_t) -1; in timeval_store()
74 tv->tv_usec = (suseconds_t) (u % USEC_PER_SEC); in timeval_store()
/third_party/rust/crates/nix/src/sys/
H A Dtime.rs3 pub use libc::{suseconds_t, time_t};
532 tv_usec: micros as suseconds_t, in microseconds()
550 tv_usec: micros as suseconds_t, in nanoseconds()
584 pub const fn new(seconds: time_t, microseconds: suseconds_t) -> Self {
591 fn micros_mod_sec(&self) -> suseconds_t { in micros_mod_sec()
593 self.tv_usec() - MICROS_PER_SEC as suseconds_t in micros_mod_sec()
604 pub const fn tv_usec(&self) -> suseconds_t {
/third_party/pulseaudio/src/pulsecore/
H A Dsocket.h12 typedef long suseconds_t; typedef
/third_party/musl/porting/liteos_m/kernel/include/bits/
H A Dalltypes.h84 typedef _Int64 suseconds_t; typedef
218 struct timeval { time_t tv_sec; suseconds_t tv_usec; };
/third_party/musl/porting/liteos_m_iccarm/kernel/include/bits/
H A Dalltypes.h162 typedef _Int64 suseconds_t; typedef
227 struct timeval { time_t tv_sec; suseconds_t tv_usec; };
/third_party/musl/porting/liteos_a/kernel/include/bits/
H A Dalltypes.h70 typedef _Int64 suseconds_t; typedef
277 struct timeval { time_t tv_sec; suseconds_t tv_usec; };
/third_party/musl/porting/liteos_m/user/include/bits/
H A Dalltypes.h84 typedef _Int64 suseconds_t; typedef
218 struct timeval { time_t tv_sec; suseconds_t tv_usec; };
/third_party/musl/porting/uniproton/kernel/include/bits/
H A Dalltypes.h84 typedef _Int64 suseconds_t; typedef
218 struct timeval { time_t tv_sec; suseconds_t tv_usec; };
/third_party/curl/lib/
H A Dtimediff.c55 tv->tv_usec = (suseconds_t)tv_usec; in curlx_mstotv()
/third_party/rust/crates/libc/src/unix/bsd/freebsdlike/freebsd/
H A Dpowerpc64.rs6 pub type suseconds_t = i64; types
H A Dpowerpc.rs6 pub type suseconds_t = i32; types
H A Dx86.rs6 pub type suseconds_t = i32; types
H A Darm.rs6 pub type suseconds_t = i32; types
H A Daarch64.rs6 pub type suseconds_t = i64; types
/third_party/musl/src/network/
H A Dsetsockopt.c13 suseconds_t us; in setsockopt()
/third_party/musl/porting/liteos_a/user/src/select/
H A Dselect.c13 suseconds_t us = tv ? tv->tv_usec : 0; in select()
/third_party/musl/src/select/
H A Dselect.c13 suseconds_t us = tv ? tv->tv_usec : 0; in select()
/third_party/rust/crates/libc/src/unix/linux_like/linux/gnu/b32/
H A Dmod.rs23 pub type suseconds_t = i64; types
33 pub type suseconds_t = i32; types
/third_party/node/deps/v8/src/base/platform/
H A Dtime.cc440 DCHECK(tv.tv_usec < static_cast<suseconds_t>(kMicrosecondsPerSecond)); in FromTimeval()
444 if (tv.tv_usec == static_cast<suseconds_t>(kMicrosecondsPerSecond - 1) && in FromTimeval()
461 tv.tv_usec = static_cast<suseconds_t>(kMicrosecondsPerSecond - 1); in ToTimeval()
/third_party/rust/crates/libc/src/unix/linux_like/linux/uclibc/mips/mips64/
H A Dmod.rs11 pub type suseconds_t = i64; types

Completed in 11 milliseconds

123