Searched defs:c_time (Results 1 - 4 of 4) sorted by relevance

/external/blktrace/btt/
H A Dinlines.h200 static inline void update_q2c(struct io *iop, __u64 c_time) argument
203 UPDATE_AVGS(q2c_dm, iop, iop->pip, c_time);
205 UPDATE_AVGS(q2c, iop, iop->pip, c_time);
271 static inline void update_d2c(struct io *iop, __u64 c_time) argument
273 UPDATE_AVGS(d2c, iop, iop->pip, c_time);
H A Dglobals.h157 __u64 bytes_left, g_time, i_time, m_time, d_time, c_time, d_sec, c_sec; member in struct:io
/external/openssl/ssl/
H A Dssltest.c310 int doit_biopair(SSL *s_ssl,SSL *c_ssl,long bytes,clock_t *s_time,clock_t *c_time);
549 clock_t s_time = 0, c_time = 0; local
1134 ret=doit_biopair(s_ssl,c_ssl,bytes,&s_time,&c_time);
1155 (double)c_time/CLOCKS_PER_SEC);
1163 (double)c_time);
1193 clock_t *s_time, clock_t *c_time)
1340 /* c_time and s_time increments will typically be very small
1348 *c_time += (clock() - c_clock);
1192 doit_biopair(SSL *s_ssl, SSL *c_ssl, long count, clock_t *s_time, clock_t *c_time) argument
/external/ppp/pppd/
H A Dmain.c1241 struct timeval c_time; /* time at which to call routine */ member in struct:callout
1269 newp->c_time.tv_sec = timenow.tv_sec + secs;
1270 newp->c_time.tv_usec = timenow.tv_usec + usecs;
1271 if (newp->c_time.tv_usec >= 1000000) {
1272 newp->c_time.tv_sec += newp->c_time.tv_usec / 1000000;
1273 newp->c_time.tv_usec %= 1000000;
1280 if (newp->c_time.tv_sec < p->c_time.tv_sec
1281 || (newp->c_time
[all...]

Completed in 1327 milliseconds