recsize          1755 fs/xfs/xfs_ioctl.c 	size_t			recsize)
recsize          1763 fs/xfs/xfs_ioctl.c 	if (recsize < sizeof(struct getbmapx))
recsize          1781 fs/xfs/xfs_ioctl.c 	size_t			recsize;
recsize          1792 fs/xfs/xfs_ioctl.c 		recsize = sizeof(struct getbmap);
recsize          1795 fs/xfs/xfs_ioctl.c 		recsize = sizeof(struct getbmapx);
recsize          1801 fs/xfs/xfs_ioctl.c 	if (copy_from_user(&bmx, arg, recsize))
recsize          1806 fs/xfs/xfs_ioctl.c 	if (bmx.bmv_count > ULONG_MAX / recsize)
recsize          1818 fs/xfs/xfs_ioctl.c 	if (copy_to_user(arg, &bmx, recsize))
recsize          1820 fs/xfs/xfs_ioctl.c 	arg += recsize;
recsize          1823 fs/xfs/xfs_ioctl.c 		if (!xfs_getbmap_format(buf + i, arg, recsize))
recsize          1825 fs/xfs/xfs_ioctl.c 		arg += recsize;
recsize            52 include/linux/kfifo.h #define __STRUCT_KFIFO_COMMON(datatype, recsize, ptrtype) \
recsize            57 include/linux/kfifo.h 		char		(*rectype)[recsize]; \
recsize            62 include/linux/kfifo.h #define __STRUCT_KFIFO(type, size, recsize, ptrtype) \
recsize            64 include/linux/kfifo.h 	__STRUCT_KFIFO_COMMON(type, recsize, ptrtype); \
recsize            71 include/linux/kfifo.h #define __STRUCT_KFIFO_PTR(type, recsize, ptrtype) \
recsize            73 include/linux/kfifo.h 	__STRUCT_KFIFO_COMMON(type, recsize, ptrtype); \
recsize           788 include/linux/kfifo.h 	const void *buf, unsigned int len, size_t recsize);
recsize           791 include/linux/kfifo.h 	void *buf, unsigned int len, size_t recsize);
recsize           795 include/linux/kfifo.h 	size_t recsize);
recsize           798 include/linux/kfifo.h 	unsigned long len, unsigned int *copied, size_t recsize);
recsize           801 include/linux/kfifo.h 	struct scatterlist *sgl, int nents, unsigned int len, size_t recsize);
recsize           804 include/linux/kfifo.h 	unsigned int len, size_t recsize);
recsize           807 include/linux/kfifo.h 	struct scatterlist *sgl, int nents, unsigned int len, size_t recsize);
recsize           809 include/linux/kfifo.h extern void __kfifo_dma_out_finish_r(struct __kfifo *fifo, size_t recsize);
recsize           811 include/linux/kfifo.h extern unsigned int __kfifo_len_r(struct __kfifo *fifo, size_t recsize);
recsize           813 include/linux/kfifo.h extern void __kfifo_skip_r(struct __kfifo *fifo, size_t recsize);
recsize           816 include/linux/kfifo.h 	void *buf, unsigned int len, size_t recsize);
recsize           818 include/linux/kfifo.h extern unsigned int __kfifo_max_r(unsigned int len, size_t recsize);
recsize           382 lib/kfifo.c    unsigned int __kfifo_max_r(unsigned int len, size_t recsize)
recsize           384 lib/kfifo.c    	unsigned int max = (1 << (recsize << 3)) - 1;
recsize           398 lib/kfifo.c    static unsigned int __kfifo_peek_n(struct __kfifo *fifo, size_t recsize)
recsize           406 lib/kfifo.c    	if (--recsize)
recsize           421 lib/kfifo.c    static void __kfifo_poke_n(struct __kfifo *fifo, unsigned int n, size_t recsize)
recsize           428 lib/kfifo.c    	if (recsize > 1)
recsize           432 lib/kfifo.c    unsigned int __kfifo_len_r(struct __kfifo *fifo, size_t recsize)
recsize           434 lib/kfifo.c    	return __kfifo_peek_n(fifo, recsize);
recsize           439 lib/kfifo.c    		unsigned int len, size_t recsize)
recsize           441 lib/kfifo.c    	if (len + recsize > kfifo_unused(fifo))
recsize           444 lib/kfifo.c    	__kfifo_poke_n(fifo, len, recsize);
recsize           446 lib/kfifo.c    	kfifo_copy_in(fifo, buf, len, fifo->in + recsize);
recsize           447 lib/kfifo.c    	fifo->in += len + recsize;
recsize           453 lib/kfifo.c    	void *buf, unsigned int len, size_t recsize, unsigned int *n)
recsize           455 lib/kfifo.c    	*n = __kfifo_peek_n(fifo, recsize);
recsize           460 lib/kfifo.c    	kfifo_copy_out(fifo, buf, len, fifo->out + recsize);
recsize           465 lib/kfifo.c    		unsigned int len, size_t recsize)
recsize           472 lib/kfifo.c    	return kfifo_out_copy_r(fifo, buf, len, recsize, &n);
recsize           477 lib/kfifo.c    		unsigned int len, size_t recsize)
recsize           484 lib/kfifo.c    	len = kfifo_out_copy_r(fifo, buf, len, recsize, &n);
recsize           485 lib/kfifo.c    	fifo->out += n + recsize;
recsize           490 lib/kfifo.c    void __kfifo_skip_r(struct __kfifo *fifo, size_t recsize)
recsize           494 lib/kfifo.c    	n = __kfifo_peek_n(fifo, recsize);
recsize           495 lib/kfifo.c    	fifo->out += n + recsize;
recsize           500 lib/kfifo.c    	unsigned long len, unsigned int *copied, size_t recsize)
recsize           504 lib/kfifo.c    	len = __kfifo_max_r(len, recsize);
recsize           506 lib/kfifo.c    	if (len + recsize > kfifo_unused(fifo)) {
recsize           511 lib/kfifo.c    	__kfifo_poke_n(fifo, len, recsize);
recsize           513 lib/kfifo.c    	ret = kfifo_copy_from_user(fifo, from, len, fifo->in + recsize, copied);
recsize           518 lib/kfifo.c    	fifo->in += len + recsize;
recsize           524 lib/kfifo.c    	unsigned long len, unsigned int *copied, size_t recsize)
recsize           534 lib/kfifo.c    	n = __kfifo_peek_n(fifo, recsize);
recsize           538 lib/kfifo.c    	ret = kfifo_copy_to_user(fifo, to, len, fifo->out + recsize, copied);
recsize           543 lib/kfifo.c    	fifo->out += n + recsize;
recsize           549 lib/kfifo.c    	struct scatterlist *sgl, int nents, unsigned int len, size_t recsize)
recsize           553 lib/kfifo.c    	len = __kfifo_max_r(len, recsize);
recsize           555 lib/kfifo.c    	if (len + recsize > kfifo_unused(fifo))
recsize           558 lib/kfifo.c    	return setup_sgl(fifo, sgl, nents, len, fifo->in + recsize);
recsize           563 lib/kfifo.c    	unsigned int len, size_t recsize)
recsize           565 lib/kfifo.c    	len = __kfifo_max_r(len, recsize);
recsize           566 lib/kfifo.c    	__kfifo_poke_n(fifo, len, recsize);
recsize           567 lib/kfifo.c    	fifo->in += len + recsize;
recsize           572 lib/kfifo.c    	struct scatterlist *sgl, int nents, unsigned int len, size_t recsize)
recsize           576 lib/kfifo.c    	len = __kfifo_max_r(len, recsize);
recsize           578 lib/kfifo.c    	if (len + recsize > fifo->in - fifo->out)
recsize           581 lib/kfifo.c    	return setup_sgl(fifo, sgl, nents, len, fifo->out + recsize);
recsize           585 lib/kfifo.c    void __kfifo_dma_out_finish_r(struct __kfifo *fifo, size_t recsize)
recsize           589 lib/kfifo.c    	len = __kfifo_peek_n(fifo, recsize);
recsize           590 lib/kfifo.c    	fifo->out += len + recsize;