Searched refs:u_int64 (Results 1 – 7 of 7) sorted by relevance
149 typedef uint64_t u_int64; typedef154 typedef unsigned long u_int64; typedef159 typedef unsigned long long u_int64; typedef215 u_int64 Q_s; /* unsigned quad scalar */
282 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); \
44 ((((u_int64)(tvu) << 32) + MICROSECONDS / 2) / \72 (((u_int64)(tsf) * MICROSECONDS + 0x80000000) >> 32))
29 (((u_int64)(tsf) * NANOSECONDS + 0x80000000) >> 32))32 ((((u_int64)(tvu) << 32) + NANOSECONDS / 2) / \
191 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()
183 …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()
123514 Use u_int64 where available, instead of only where long is 64-bit.123528 Remove workarounds for VC6 deficit converting u_int64 to double,