Home
last modified time | relevance | path

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

/third_party/pulseaudio/src/pulse/
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/
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/
Dsys_time.c8 T(suseconds_t) in f()
13 F(suseconds_t,tv_usec) in f()
Dsys_select.c8 T(suseconds_t) in f()
15 F(suseconds_t, tv_usec) in f()
Dsys_types.c27 N(suseconds_t) in f()
/third_party/eudev/src/shared/
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/pulseaudio/src/pulsecore/
Dsocket.h12 typedef long suseconds_t; typedef
/third_party/musl/porting/liteos_m_iccarm/kernel/include/bits/
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/
Dalltypes.h70 typedef _Int64 suseconds_t; typedef
277 struct timeval { time_t tv_sec; suseconds_t tv_usec; };
/third_party/musl/porting/linux/user/include/
Dalltypes.h.in13 TYPEDEF _Int64 suseconds_t; variable
43 STRUCT timeval { time_t tv_sec; suseconds_t tv_usec; };
/third_party/musl/include/
Dalltypes.h.in13 TYPEDEF _Int64 suseconds_t; variable
43 STRUCT timeval { time_t tv_sec; suseconds_t tv_usec; };
/third_party/musl/porting/liteos_m/user/include/bits/
Dalltypes.h84 typedef _Int64 suseconds_t; typedef
218 struct timeval { time_t tv_sec; suseconds_t tv_usec; };
/third_party/musl/src/network/
Dsetsockopt.c13 suseconds_t us; in setsockopt()
/third_party/musl/src/select/
Dselect.c13 suseconds_t us = tv ? tv->tv_usec : 0; in select()
/third_party/musl/porting/liteos_a/user/src/select/
Dselect.c13 suseconds_t us = tv ? tv->tv_usec : 0; in select()
/third_party/musl/porting/uniproton/kernel/include/bits/
Dalltypes.h84 typedef _Int64 suseconds_t; typedef
218 struct timeval { time_t tv_sec; suseconds_t tv_usec; };
/third_party/musl/porting/liteos_m/kernel/include/bits/
Dalltypes.h84 typedef _Int64 suseconds_t; typedef
218 struct timeval { time_t tv_sec; suseconds_t tv_usec; };
/third_party/curl/lib/
Dselect.c114 pending_tv.tv_usec = (suseconds_t)tv_usec; in Curl_wait_ms()
178 pending_tv.tv_usec = (suseconds_t)tv_usec; in our_select()
/third_party/libwebsockets/lib/event-libs/libevent/
Dlibevent.c92 tv.tv_sec = (suseconds_t)(us / LWS_US_PER_SEC); in lws_event_idle_timer_cb()
93 tv.tv_usec = (suseconds_t)(us - (tv.tv_sec * LWS_US_PER_SEC)); in lws_event_idle_timer_cb()
/third_party/libwebsockets/include/
Dlibwebsockets.h100 typedef int suseconds_t; typedef
/third_party/mbedtls/library/
Dnet_sockets.c559 tv.tv_usec = (suseconds_t) usec % 1000000; in mbedtls_net_usleep()
/third_party/icu/docs/userguide/datetime/
Duniversaltimescale.md47 | Unix `struct timeval (as in gettimeofday)` | `struct: time_t` (seconds); suseconds_t (microse…
/third_party/curl/
Dconfigure.ac3173 # check for suseconds_t
3174 AC_CHECK_TYPE([suseconds_t],[
3176 [Define to 1 if suseconds_t is an available type.])
/third_party/libwebsockets/
DCMakeLists.txt727 suseconds_t x = 0;
/third_party/python/Lib/lib2to3/tests/data/
Dinfinite_recursion.py2400 suseconds_t = __darwin_suseconds_t variable