Home
last modified time | relevance | path

Searched refs:b_in (Results 1 – 1 of 1) sorted by relevance

/linux-5.19.10/drivers/usb/mon/
Dmon_bin.c188 unsigned int b_in, b_out; /* Offsets into buffer - bytes */ member
303 offset = rp->b_in; in mon_buff_area_alloc()
305 if ((rp->b_in += size) >= rp->b_size) in mon_buff_area_alloc()
306 rp->b_in -= rp->b_size; in mon_buff_area_alloc()
329 if (rp->b_in + size > rp->b_size) { in mon_buff_area_alloc_contiguous()
335 fill_size = rp->b_size - rp->b_in; in mon_buff_area_alloc_contiguous()
338 mon_buff_area_fill(rp, rp->b_in, fill_size); in mon_buff_area_alloc_contiguous()
341 rp->b_in = size; in mon_buff_area_alloc_contiguous()
343 } else if (rp->b_in + size == rp->b_size) { in mon_buff_area_alloc_contiguous()
344 offset = rp->b_in; in mon_buff_area_alloc_contiguous()
[all …]