Lines Matching defs:entries
454 * Create an array of sizes of directory entries for virtual
497 /* compare total size of entries with item length */
522 * return number of entries which may fit into specified amount of
529 int entries = 0;
538 entries++;
541 if (entries == dir_u->entry_count) {
549 && entries < 2)
550 entries = 0;
552 return entries ? : -1;
558 int entries = 0;
567 entries++;
569 BUG_ON(entries == dir_u->entry_count);
573 && entries > dir_u->entry_count - 2)
574 entries = dir_u->entry_count - 2;
576 return entries ? : -1;
579 /* sum of entry sizes between from-th and to-th entries including both edges */
614 printk("%d entries: ", dir_u->entry_count);