Searched refs:recsize (Results 1 – 3 of 3) sorted by relevance
/linux-4.1.27/lib/ |
D | kfifo.c | 395 unsigned int __kfifo_max_r(unsigned int len, size_t recsize) in __kfifo_max_r() argument 397 unsigned int max = (1 << (recsize << 3)) - 1; in __kfifo_max_r() 411 static unsigned int __kfifo_peek_n(struct __kfifo *fifo, size_t recsize) in __kfifo_peek_n() argument 419 if (--recsize) in __kfifo_peek_n() 434 static void __kfifo_poke_n(struct __kfifo *fifo, unsigned int n, size_t recsize) in __kfifo_poke_n() argument 441 if (recsize > 1) in __kfifo_poke_n() 445 unsigned int __kfifo_len_r(struct __kfifo *fifo, size_t recsize) in __kfifo_len_r() argument 447 return __kfifo_peek_n(fifo, recsize); in __kfifo_len_r() 452 unsigned int len, size_t recsize) in __kfifo_in_r() argument 454 if (len + recsize > kfifo_unused(fifo)) in __kfifo_in_r() [all …]
|
/linux-4.1.27/include/linux/ |
D | kfifo.h | 66 #define __STRUCT_KFIFO_COMMON(datatype, recsize, ptrtype) \ argument 71 char (*rectype)[recsize]; \ 76 #define __STRUCT_KFIFO(type, size, recsize, ptrtype) \ argument 78 __STRUCT_KFIFO_COMMON(type, recsize, ptrtype); \ 85 #define __STRUCT_KFIFO_PTR(type, recsize, ptrtype) \ argument 87 __STRUCT_KFIFO_COMMON(type, recsize, ptrtype); \ 801 const void *buf, unsigned int len, size_t recsize); 804 void *buf, unsigned int len, size_t recsize); 808 size_t recsize); 811 unsigned long len, unsigned int *copied, size_t recsize); [all …]
|
/linux-4.1.27/drivers/staging/lustre/lustre/include/lustre/ |
D | libiam.h | 76 int blocksize, int keysize, int recsize, int ptrsize); 104 int *recsize, char *save_rec); 120 int *recsize, char *save_rec); 129 int *recsize, char *save_rec);
|