Lines Matching defs:count
176 struct buffer_desc *exfat_alloc_buffer(int count,
182 bd = (struct buffer_desc *)calloc(sizeof(*bd), count);
186 for (i = 0; i < count; i++) {
196 exfat_free_buffer(bd, count);
200 void exfat_free_buffer(struct buffer_desc *bd, int count)
204 for (i = 0; i < count; i++) {
214 * get references of ancestors that include @child until the count of
215 * ancesters is not larger than @count and the count of characters of
220 struct exfat_inode **ancestors, int count,
245 depth = MIN(root_depth, count);