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

/external/libnfc-nci/halimpl/bcm2079x/gki/ulinux/
H A Dgki_ulinux.c1056 UINT32 s_time; local
1063 s_time = ms_time/100; /* 100 Ticks per second */
1064 m_time = s_time/60;
1067 ms_time -= s_time*100;
1068 s_time -= m_time*60;
1077 *p_out++ = (INT8)((s_time / 10) + '0');
1078 *p_out++ = (INT8)((s_time % 10) + '0');
/external/libnfc-nci/src/gki/ulinux/
H A Dgki_ulinux.c1033 UINT32 s_time; local
1040 s_time = ms_time/100; /* 100 Ticks per second */
1041 m_time = s_time/60;
1044 ms_time -= s_time*100;
1045 s_time -= m_time*60;
1054 *p_out++ = (INT8)((s_time / 10) + '0');
1055 *p_out++ = (INT8)((s_time % 10) + '0');
/external/blktrace/btt/
H A Dglobals.h158 __u64 s_time; 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);
543 clock_t s_time = 0, c_time = 0; local
1111 ret=doit_biopair(s_ssl,c_ssl,bytes,&s_time,&c_time);
1131 (double)s_time/CLOCKS_PER_SEC,
1139 (double)s_time,
1170 clock_t *s_time, clock_t *c_time)
1317 /* c_time and s_time increments will typically be very small
1400 *s_time += (clock() - s_clock);
1169 doit_biopair(SSL *s_ssl, SSL *c_ssl, long count, clock_t *s_time, clock_t *c_time) argument

Completed in 486 milliseconds