Lines Matching refs:upcase
158 * On-disk ntfs's upcase table is created by ntfs formatter.
159 * 'upcase' table is 128K bytes of memory.
161 * Several ntfs volumes likely use the same 'upcase' table.
162 * It is good idea to share in-memory 'upcase' table between different volumes.
163 * Unfortunately winxp/vista/win7 use different upcase tables.
627 kvfree(ntfs_put_shared(sbi->upcase));
1494 u16 *dst = Add2Ptr(sbi->upcase, idx << PAGE_SHIFT);
1514 shared = ntfs_set_shared(sbi->upcase, 0x10000 * sizeof(short));
1515 if (shared && sbi->upcase != shared) {
1516 kvfree(sbi->upcase);
1517 sbi->upcase = shared;
1755 sbi->upcase = kvmalloc(0x10000 * sizeof(short), GFP_KERNEL);
1756 if (!sbi->upcase)