Lines Matching defs:buff_out
13 static u16 *buff_out = synth_buffer;
50 if (buff_in >= buff_out)
51 chars_free = SYNTH_BUF_SIZE - (buff_in - buff_out);
53 chars_free = buff_out - buff_in;
59 return (buff_in == buff_out);
90 if (buff_out == buff_in)
92 ch = *buff_out++;
93 if (buff_out > buffer_end)
94 buff_out = synth_buffer;
101 if (buff_out == buff_in)
103 return *buff_out;
109 while (buff_out != buff_in) {
110 if (*buff_out < 0x100)
112 buff_out++;
113 if (buff_out > buffer_end)
114 buff_out = synth_buffer;
122 buff_out = synth_buffer;