Lines Matching refs:p_out
1293 INT8 *p_out = tbuf; in GKI_get_time_stamp() local
1305 *p_out++ = (INT8)((h_time / 10) + '0'); in GKI_get_time_stamp()
1306 *p_out++ = (INT8)((h_time % 10) + '0'); in GKI_get_time_stamp()
1307 *p_out++ = ':'; in GKI_get_time_stamp()
1308 *p_out++ = (INT8)((m_time / 10) + '0'); in GKI_get_time_stamp()
1309 *p_out++ = (INT8)((m_time % 10) + '0'); in GKI_get_time_stamp()
1310 *p_out++ = ':'; in GKI_get_time_stamp()
1311 *p_out++ = (INT8)((s_time / 10) + '0'); in GKI_get_time_stamp()
1312 *p_out++ = (INT8)((s_time % 10) + '0'); in GKI_get_time_stamp()
1313 *p_out++ = ':'; in GKI_get_time_stamp()
1314 *p_out++ = (INT8)((ms_time / 10) + '0'); in GKI_get_time_stamp()
1315 *p_out++ = (INT8)((ms_time % 10) + '0'); in GKI_get_time_stamp()
1316 *p_out++ = ':'; in GKI_get_time_stamp()
1317 *p_out = 0; in GKI_get_time_stamp()