Lines Matching defs:index
35 uint32_t index;
55 * If index is broken, then index and size initialize
57 if (t_log->header.index >= (uint32_t) RCAR_BL31_LOG_MAX) {
58 t_log->header.index = 0U;
62 * data store to log area then index and size renewal
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;
91 if (t_log->header.index >= (uint32_t) RCAR_BL31_LOG_MAX) {
93 * index is broken, then log area initialize
102 t_log->header.index = 0U;