Lines Matching refs:upcase
47 * @upcase: upcase table (only if @ic == IGNORE_CASE)
48 * @upcase_size: length in Unicode characters of @upcase (if present)
52 * the @upcase table is used to performa a case insensitive comparison.
56 const ntfschar *upcase, const u32 upcase_size)
62 return !ntfs_ucsncasecmp(s1, s2, s1_len, upcase, upcase_size);
71 * @upcase: upcase table (ignored if @ic is CASE_SENSITIVE)
72 * @upcase_len: upcase table size (ignored if @ic is CASE_SENSITIVE)
86 const ntfschar *upcase, const u32 upcase_len)
99 c1 = le16_to_cpu(upcase[c1]);
101 c2 = le16_to_cpu(upcase[c2]);
158 * @upcase: upcase table
159 * @upcase_size: upcase table size in Unicode characters
165 * Each character is uppercased using the @upcase table before the comparison.
172 const ntfschar *upcase, const u32 upcase_size)
179 c1 = le16_to_cpu(upcase[c1]);
181 c2 = le16_to_cpu(upcase[c2]);
192 void ntfs_upcase_name(ntfschar *name, u32 name_len, const ntfschar *upcase,
200 name[i] = upcase[u];
204 const ntfschar *upcase, const u32 upcase_len)
207 file_name_attr->file_name_length, upcase, upcase_len);
213 const ntfschar *upcase, const u32 upcase_len)
219 err_val, ic, upcase, upcase_len);