Lines Matching defs:header
41 loghead_t header;
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;
85 if (t_log->header.head != RCAR_LOG_HEAD) {
87 * Log header is not "TLOG", then log area initialize
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;