Lines Matching defs:length
26 size_t bytes_per_datum, unsigned int length)
28 if ((length == 0) || (bytes_per_datum == 0))
35 if (roundup_pow_of_two(length) > UINT_MAX / bytes_per_datum)
38 return __kfifo_alloc((struct __kfifo *)&buf->kf, length,
51 buf->buffer.length);
78 static int iio_set_length_kfifo(struct iio_buffer *r, unsigned int length)
81 if (length < 2)
82 length = 2;
83 if (r->length != length) {
84 r->length = length;
164 kf->buffer.length = 2;