Lines Matching defs:t_log
48 logmap_t *t_log;
50 t_log = (logmap_t *) RCAR_BL31_LOG_BASE;
57 if (t_log->header.index >= (uint32_t) RCAR_BL31_LOG_MAX) {
58 t_log->header.index = 0U;
59 t_log->header.size = 0U;
64 t_log->log_data[t_log->header.index] = (uint8_t) c;
65 t_log->header.index++;
66 if (t_log->header.size < t_log->header.index) {
67 t_log->header.size = t_log->header.index;
69 if (t_log->header.index >= (uint32_t) RCAR_BL31_LOG_MAX) {
70 t_log->header.index = 0U;
80 logmap_t *t_log = (logmap_t *)RCAR_BL31_LOG_BASE;
81 uint32_t *log_data = (uint32_t *)t_log->log_data;
85 if (t_log->header.head != RCAR_LOG_HEAD) {
91 if (t_log->header.index >= (uint32_t) RCAR_BL31_LOG_MAX) {
101 t_log->header.head = RCAR_LOG_HEAD;
102 t_log->header.index = 0U;
103 t_log->header.size = 0U;