Symbol: BUF_LEN
drivers/input/touchscreen/bu21029_ts.c
223
u8 buf[BUF_LEN];
drivers/media/usb/dvb-usb-v2/af9015.c
307
#define LEN_MAX (BUF_LEN - REQ_HDR_LEN) /* Max payload size */
drivers/media/usb/dvb-usb-v2/af9015.c
67
if ((write && (req->data_len > BUF_LEN - REQ_HDR_LEN)) ||
drivers/media/usb/dvb-usb-v2/af9015.c
68
(!write && (req->data_len > BUF_LEN - ACK_HDR_LEN))) {
drivers/media/usb/dvb-usb-v2/af9015.h
95
u8 buf[BUF_LEN]; /* bulk USB control message */
drivers/media/usb/dvb-usb-v2/af9035.c
46
if (req->wlen > (BUF_LEN - REQ_HDR_LEN - CHECKSUM_LEN) ||
drivers/media/usb/dvb-usb-v2/af9035.c
47
req->rlen > (BUF_LEN - ACK_HDR_LEN - CHECKSUM_LEN)) {
drivers/media/usb/dvb-usb-v2/af9035.h
47
u8 buf[BUF_LEN];
drivers/media/usb/dvb-usb-v2/zd1301.c
18
u8 buf[BUF_LEN]; /* bulk USB control message */
lib/test_objagg.c
32
char next_root_buf[BUF_LEN];
lib/test_objagg.c
39
char buf[BUF_LEN];
tools/testing/selftests/powerpc/copyloops/memmove_validate.c
24
char *usermap = memalign(BUF_LEN, BUF_LEN);
tools/testing/selftests/powerpc/copyloops/memmove_validate.c
25
char *kernelmap = memalign(BUF_LEN, BUF_LEN);
tools/testing/selftests/powerpc/copyloops/memmove_validate.c
30
memset(usermap, 0, BUF_LEN);
tools/testing/selftests/powerpc/copyloops/memmove_validate.c
31
memset(kernelmap, 0, BUF_LEN);
tools/testing/selftests/powerpc/copyloops/memmove_validate.c
33
for (i = 0; i < BUF_LEN; i++) {
tools/usb/ffs-aio-example/multibuff/device_app/aio_multibuff.c
300
init_bufs(&iobuf[i], BUFS_MAX, BUF_LEN);
tools/usb/ffs-aio-example/multibuff/host_app/test.c
169
static unsigned char buffer[BUF_LEN];
tools/usb/ffs-aio-example/multibuff/host_app/test.c
171
libusb_bulk_transfer(state.handle, addr, buffer, BUF_LEN,
tools/usb/ffs-aio-example/simple/device_app/aio_simple.c
292
buf_in = malloc(BUF_LEN);
tools/usb/ffs-aio-example/simple/device_app/aio_simple.c
293
buf_out = malloc(BUF_LEN);
tools/usb/ffs-aio-example/simple/device_app/aio_simple.c
344
io_prep_pwrite(iocb_in, ep[0], buf_in, BUF_LEN, 0);
tools/usb/ffs-aio-example/simple/device_app/aio_simple.c
358
io_prep_pread(iocb_out, ep[1], buf_out, BUF_LEN, 0);
tools/usb/ffs-aio-example/simple/host_app/test.c
170
static unsigned char buffer[BUF_LEN];
tools/usb/ffs-aio-example/simple/host_app/test.c
172
libusb_bulk_transfer(state.handle, in_addr, buffer, BUF_LEN,
tools/usb/ffs-aio-example/simple/host_app/test.c
174
libusb_bulk_transfer(state.handle, out_addr, buffer, BUF_LEN,