Searched refs:RPC_C_CLOCK_HZ (Results 1 - 4 of 4) sorted by relevance

/macosx-10.9.5/dcerpc-58/dcerpc/ncklib/
H A Drpcclock.h99 #define RPC_C_CLOCK_HZ 5 macro
101 #define RPC_CLOCK_SEC(sec) ((sec)*RPC_C_CLOCK_HZ)
102 #define RPC_CLOCK_MS(ms) ((ms)/(1000/RPC_C_CLOCK_HZ))
H A Drpcclock.c179 start_time.tv_usec -= (1000000L/RPC_C_CLOCK_HZ);
191 * tick count format we're using (RPC_C_CLOCK_HZ ticks per second).
197 ticks = (tp.tv_sec - start_time.tv_sec) * RPC_C_CLOCK_HZ +
202 ticks -= RPC_C_CLOCK_HZ;
205 ticks += (tp.tv_usec - start_time.tv_usec) / (1000000L/RPC_C_CLOCK_HZ);
211 * RPC_C_CLOCK_HZ's we believe that the current time has been altered.
232 rpc_clock_skew += rpc_g_clock_curr - ticks + RPC_C_CLOCK_HZ;
233 rpc_g_clock_curr += RPC_C_CLOCK_HZ;
259 whole_secs = (int)clock / RPC_C_CLOCK_HZ;
260 remaining_ticks = (int)clock % RPC_C_CLOCK_HZ;
[all...]
H A Drpctimer.c176 ("(timer_loop) next event in %ld seconds\n", next/RPC_C_CLOCK_HZ));
H A Dcnnet.c124 #define RPC_C_SOCKET_SERVER_RECV_TIMER ( rpc_g_cn_assoc_grp_tbl.grp_server_timer.frequency / RPC_C_CLOCK_HZ )
129 #define RPC_C_SOCKET_CLIENT_RECV_TIMER ( rpc_g_cn_assoc_grp_tbl.grp_client_timer.frequency / RPC_C_CLOCK_HZ )

Completed in 115 milliseconds