Lines Matching defs:count
63 void *val, size_t count)
76 if ((offset + count) > at25->chip.byte_len)
77 count = at25->chip.byte_len - offset;
78 if (unlikely(!count))
110 t[1].len = count;
123 count, offset, status);
129 static int at25_ee_write(void *priv, unsigned int off, void *val, size_t count)
139 if ((off + count) > at25->chip.byte_len)
140 count = at25->chip.byte_len - off;
141 if (unlikely(!count))
192 if (segment > count)
193 segment = count;
235 count -= segment;
237 } while (count > 0);