Lines Matching refs:upcase
1043 __le16 *upcase = NULL;
1055 exfat_err("invalid start cluster of upcase table. 0x%x\n",
1064 exfat_err("invalid size of upcase table. 0x%" PRIx64 "\n",
1070 upcase = (__le16 *)malloc(size);
1071 if (!upcase) {
1072 exfat_err("failed to allocate upcase table\n");
1077 if (exfat_read(exfat->blk_dev->dev_fd, upcase, size,
1080 exfat_err("failed to read upcase table\n");
1086 boot_calc_checksum((unsigned char *)upcase, size, false, &checksum);
1088 exfat_err("corrupted upcase table %#x (expected: %#x)\n",
1106 decompress_upcase_table(upcase, size / 2,
1111 if (upcase)
1112 free(upcase);
1329 exfat_err("failed to read upcase table\n");