Searched refs:MIN_SIZE (Results 1 – 1 of 1) sorted by relevance
109 #define MIN_SIZE 32 /* Size that triggers the FIFO to flush characters to interface */ macro121 static char tmp_buf[MIN_SIZE]; in console_write()155 if (tmp_size + len < MIN_SIZE) in console_write()157 int size = min((int)(MIN_SIZE - tmp_size),(int)len); in console_write()165 memset(&tmp_buf[tmp_size-1], ' ', MIN_SIZE - tmp_size); in console_write()166 tmp_buf[MIN_SIZE - 1] = '\n'; in console_write()167 tmp_size = MIN_SIZE; in console_write()