Lines Matching defs:framesize
6307 unsigned int framesize = 0;
6372 framesize = 0;
6389 framesize = RCLRVALUE - info->rx_buffer_list[EndIndex].rcc;
6393 framesize -= 2;
6395 framesize -= 4;
6400 __FILE__,__LINE__,info->device_name,status,framesize);
6404 min_t(int, framesize, DMABUFFERSIZE),0);
6406 if (framesize) {
6408 ((framesize+1) > info->max_frame_size) ) ||
6409 (framesize > info->max_frame_size) )
6413 int copy_count = framesize;
6437 ++framesize;
6450 hdlcdev_rx(info,info->intermediate_rxbuffer,framesize);
6453 ldisc_receive_buf(tty, info->intermediate_rxbuffer, info->flag_buf, framesize);
6505 unsigned int framesize = 0;
6552 framesize = 0;
6590 framesize = RCLRVALUE - info->rx_buffer_list[CurrentIndex].rcc;
6592 framesize = DMABUFFERSIZE;
6595 framesize = DMABUFFERSIZE;
6598 if ( framesize > DMABUFFERSIZE ) {
6605 framesize = framesize % DMABUFFERSIZE;
6611 __FILE__,__LINE__,info->device_name,status,framesize);
6615 min_t(int, framesize, DMABUFFERSIZE),0);
6617 if (framesize) {
6622 memcpy( info->intermediate_rxbuffer, pBufEntry->virt_addr, framesize);
6625 ldisc_receive_buf(tty, info->intermediate_rxbuffer, info->flag_buf, framesize);