Searched refs:repeat_char (Results 1 – 2 of 2) sorted by relevance
80 void ZPLCompress(unsigned char repeat_char, unsigned repeat_count);745 unsigned char repeat_char; /* Repeated character */ in OutputLine() local833 for (compptr = CompBuffer + 1, repeat_char = CompBuffer[0], repeat_count = 1; in OutputLine()836 if (*compptr == repeat_char) in OutputLine()840 ZPLCompress(repeat_char, repeat_count); in OutputLine()841 repeat_char = *compptr; in OutputLine()845 if (repeat_char == '0') in OutputLine()861 ZPLCompress(repeat_char, repeat_count); in OutputLine()1041 ZPLCompress(unsigned char repeat_char, /* I - Character to repeat */ in ZPLCompress() argument1079 putchar((int)repeat_char); in ZPLCompress()
108 let divider = repeat_char('~', 79); in fmt()264 let mut result = repeat_char(' ', pad); in left_pad_line_number()283 fn repeat_char(c: char, count: usize) -> String { in repeat_char() function