Lines Matching refs:next
44 clus_t start_clu, clus_t *next,
53 *next = start_clu;
62 clus_t start_clu, clus_t *next)
65 start_clu, next, 0);
69 clus_t start_clu, clus_t *next)
72 start_clu, next, 1);
695 int exfat_get_next_clus(struct exfat *exfat, clus_t clus, clus_t *next)
699 *next = EXFAT_EOF_CLUSTER;
708 if (exfat_read(exfat->blk_dev->dev_fd, next, sizeof(*next), offset)
709 != sizeof(*next))
711 *next = le32_to_cpu(*next);
716 clus_t clus, clus_t *next)
718 *next = EXFAT_EOF_CLUSTER;
723 *next = clus + 1;
727 return exfat_get_next_clus(exfat, clus, next);
785 clus_t clus, next;
798 if (exfat_get_inode_next_clus(exfat, node, clus, &next)) {
803 if (next != EXFAT_EOF_CLUSTER && !exfat_heap_clus(exfat, next))
806 clus = next;