Home | History | Annotate | Download | only in at91

Lines Matching defs:f_buf_size

55 	int		f_buf_size;	/* size of the fifo		*/
72 return fifo->f_length >= fifo->f_buf_size;
77 return fifo->f_buf_size - fifo->f_length;
91 fifo->f_pdc_space = fifo->f_buf_size;
131 if ((fifo->f_pdc_wr_ndx += chunk_size) >= fifo->f_buf_size)
158 cc = fifo->f_buf_size - fifo->f_pdc_rd_ndx;
183 int contig_bytes = fifo->f_buf_size - fifo->f_ndx;
194 int contig_bytes = fifo->f_buf_size - fifo->f_ndx;
212 int len = fifo->f_buf_size - fifo->f_pdc_rd_ndx;
213 int max_len = fifo->f_length - (fifo->f_buf_size - fifo->f_pdc_space);
220 __FUNCTION__, len, fifo->f_length, fifo->f_pdc_space, fifo->f_buf_size);
225 __FUNCTION__, fifo->f_length, fifo->f_pdc_space, fifo->f_buf_size);
235 if ((fifo->f_pdc_rd_ndx += len) >= fifo->f_buf_size)
253 cc = fifo->f_buf_size - fifo->f_pdc_wr_ndx;
276 int space = fifo->f_buf_size - fifo->f_length;
279 int contig_bytes = fifo->f_buf_size - fifo->f_ndx;
288 if (bytes_written > (fifo->f_buf_size - fifo->f_length))
289 bytes_written = (fifo->f_buf_size - fifo->f_length);
290 int contig_bytes = fifo->f_buf_size - fifo->f_ndx;