Lines Matching refs:p_out
1037 INT8 *p_out = tbuf; in GKI_get_time_stamp() local
1049 *p_out++ = (INT8)((h_time / 10) + '0'); in GKI_get_time_stamp()
1050 *p_out++ = (INT8)((h_time % 10) + '0'); in GKI_get_time_stamp()
1051 *p_out++ = ':'; in GKI_get_time_stamp()
1052 *p_out++ = (INT8)((m_time / 10) + '0'); in GKI_get_time_stamp()
1053 *p_out++ = (INT8)((m_time % 10) + '0'); in GKI_get_time_stamp()
1054 *p_out++ = ':'; in GKI_get_time_stamp()
1055 *p_out++ = (INT8)((s_time / 10) + '0'); in GKI_get_time_stamp()
1056 *p_out++ = (INT8)((s_time % 10) + '0'); in GKI_get_time_stamp()
1057 *p_out++ = ':'; in GKI_get_time_stamp()
1058 *p_out++ = (INT8)((ms_time / 10) + '0'); in GKI_get_time_stamp()
1059 *p_out++ = (INT8)((ms_time % 10) + '0'); in GKI_get_time_stamp()
1060 *p_out++ = ':'; in GKI_get_time_stamp()
1061 *p_out = 0; in GKI_get_time_stamp()