Home
last modified time | relevance | path

Searched refs:tv_usec (Results 1 – 12 of 12) sorted by relevance

/utopia/UTPA2-700.0.x/projects/tools/lint/mips-linux-gnu_include/sys/
H A Dtime.h45 (ts)->tv_nsec = (tv)->tv_usec * 1000; \
49 (tv)->tv_usec = (ts)->tv_nsec / 1000; \
164 # define timerisset(tvp) ((tvp)->tv_sec || (tvp)->tv_usec)
165 # define timerclear(tvp) ((tvp)->tv_sec = (tvp)->tv_usec = 0)
168 ((a)->tv_usec CMP (b)->tv_usec) : \
173 (result)->tv_usec = (a)->tv_usec + (b)->tv_usec; \
174 if ((result)->tv_usec >= 1000000) \
177 (result)->tv_usec -= 1000000; \
183 (result)->tv_usec = (a)->tv_usec - (b)->tv_usec; \
184 if ((result)->tv_usec < 0) { \
[all …]
/utopia/UTPA2-700.0.x/projects/tools/lint/aeon_include/sys/
H A Dtime.h18 long tv_usec; member
46 #define timerisset(tvp) ((tvp)->tv_sec || (tvp)->tv_usec)
47 #define timerclear(tvp) ((tvp)->tv_sec = (tvp)->tv_usec = 0)
50 ((a)->tv_usec CMP (b)->tv_usec) : \
55 (result)->tv_usec = (a)->tv_usec + (b)->tv_usec; \
56 if ((result)->tv_usec >= 1000000) \
59 (result)->tv_usec -= 1000000; \
65 (result)->tv_usec = (a)->tv_usec - (b)->tv_usec; \
66 if ((result)->tv_usec < 0) { \
68 (result)->tv_usec += 1000000; \
/utopia/UTPA2-700.0.x/modules/hsl/api/hsl/
H A Dfrhsl_ringbuffer.c141 …((timeNow.tv_sec-timeStart.tv_sec)*1000000 + (timeNow.tv_usec-timeStart.tv_usec) < (pCommand->mRun… in HslSelfTestThreadFun()
352 timeout.tv_nsec = now.tv_usec; in bufferWriteThread()
H A Dfrhsl_autotest.c665 tv.tv_usec = 0; in CmdRecvStart()
/utopia/UTPA2-700.0.x/projects/tools/lint/mips-linux-gnu_include/bits/
H A Dtime.h72 __suseconds_t tv_usec; /* Microseconds. */ member
H A Dutmpx.h75 __int32_t tv_usec; /* Microseconds. */ member
H A Dutmp.h78 int32_t tv_usec; /* Microseconds. */ member
/utopia/UTPA2-700.0.x/projects/tools/lint/mips-linux-gnu_include/linux/
H A Dtime.h17 suseconds_t tv_usec; /* microseconds */ member
/utopia/UTPA2-700.0.x/projects/tools/lint/mips-linux-gnu_include/rpcsvc/
H A Drstat.x58 unsigned int tv_usec; /* and microseconds */ member
H A Drstat.h29 u_int tv_usec; member
/utopia/UTPA2-700.0.x/projects/tools/lint/mips-linux-gnu_include/rpc/
H A Dauth_des.h55 uint32_t tv_usec; /* Microseconds. */ member
/utopia/UTPA2-700.0.x/projects/build/scripts/kconfig/
H A Dconf.c490 seed = (unsigned int)((now.tv_sec + 1) * (now.tv_usec + 1)); in main()