Home
last modified time | relevance | path

Searched refs:u_int64 (Results 1 – 7 of 7) sorted by relevance

/netbsd/src/external/bsd/ntp/dist/include/
Dntp_types.h149 typedef uint64_t u_int64; typedef
154 typedef unsigned long u_int64; typedef
159 typedef unsigned long long u_int64; typedef
215 u_int64 Q_s; /* unsigned quad scalar */
Dntp_fp.h282 u_int64 q_tmp; \
290 q_tmp = (u_int64)ldexp(d_tmp, 32); \
301 u_int64 q_tmp; \
304 q_tmp = ((u_int64)(r_ui) << 32) + (r_uf); \
Dtimevalops.h44 ((((u_int64)(tvu) << 32) + MICROSECONDS / 2) / \
72 (((u_int64)(tsf) * MICROSECONDS + 0x80000000) >> 32))
/netbsd/src/external/bsd/ntp/dist/libntp/
Dtimespecops.c29 (((u_int64)(tsf) * NANOSECONDS + 0x80000000) >> 32))
32 ((((u_int64)(tvu) << 32) + NANOSECONDS / 2) / \
/netbsd/src/external/bsd/ntp/dist/tests/libntp/
Dtimespecops.c191 return (u_int32)((( ((u_int64)(ticks)) << 32) + 500000000) / 1000000000); in my_tick_to_tsf()
206 return (u_int32)(( ((u_int64)(tsf)) * 1000000000 + 0x80000000) >> 32); in my_tsf_to_tick()
Dtimevalops.c183 …return (u_int32)((( ((u_int64)(ticks)) << 32) + 500000) / 1000000); //I put too much () when casti… in my_tick_to_tsf()
197 return (u_int32)( ((u_int64)(tsf) * 1000000 + 0x80000000) >> 32); //CHECK ME!!! in my_tsf_to_tick()
/netbsd/src/external/bsd/ntp/dist/
DCommitLog123514 Use u_int64 where available, instead of only where long is 64-bit.
123528 Remove workarounds for VC6 deficit converting u_int64 to double,