Lines Matching refs:ed
71 struct exfat_dentry *ed;
141 ed = malloc(sizeof(struct exfat_dentry)*3);
142 if (!ed) {
148 ret = exfat_read(bd->dev_fd, ed, sizeof(struct exfat_dentry)*3,
156 volume_label = exfat_conv_volume_label(&ed[0]);
162 bitmap_clu = le32_to_cpu(ed[1].bitmap_start_clu);
165 bitmap_len = le64_to_cpu(ed[1].bitmap_size);
168 exfat_info("Volume entry type: \t\t\t0x%x\n", ed[0].type);
170 exfat_info("Volume label character count: \t\t%u\n", ed[0].vol_char_cnt);
172 exfat_info("Bitmap entry type: \t\t\t0x%x\n", ed[1].type);
176 exfat_info("Upcase table entry type: \t\t0x%x\n", ed[2].type);
178 le32_to_cpu(ed[2].upcase_start_clu));
180 le64_to_cpu(ed[2].upcase_size));
211 free(ed);