Searched refs:upcase (Results 1 - 19 of 19) sorted by relevance

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/ntfs-3g-2009.3.8/include/ntfs-3g/
H A Dunistr.h31 const ntfschar *upcase, const u32 upcase_size);
36 const ntfschar *upcase, const u32 upcase_len);
41 const ntfschar *upcase, const u32 upcase_size);
48 const ntfschar *upcase, const u32 upcase_len);
51 const ntfschar *upcase, const u32 upcase_len);
56 const ntfschar *upcase, const u32 upcase_len);
H A Dvolume.h206 ntfschar *upcase; /* Upper case equivalents of all 65536 2-byte member in struct:_ntfs_volume
209 u32 upcase_len; /* Length in Unicode characters of the upcase
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/ntfs/
H A Dunistr.c61 * @upcase: upcase table (only if @ic == IGNORE_CASE)
62 * @upcase_size: length in Unicode characters of @upcase (if present)
66 * the @upcase table is used to performa a case insensitive comparison.
70 const ntfschar *upcase, const u32 upcase_size)
76 return !ntfs_ucsncasecmp(s1, s2, s1_len, upcase, upcase_size);
85 * @upcase: upcase table (ignored if @ic is CASE_SENSITIVE)
86 * @upcase_len: upcase table size (ignored if @ic is CASE_SENSITIVE)
100 const ntfschar *upcase, cons
68 ntfs_are_names_equal(const ntfschar *s1, size_t s1_len, const ntfschar *s2, size_t s2_len, const IGNORE_CASE_BOOL ic, const ntfschar *upcase, const u32 upcase_size) argument
97 ntfs_collate_names(const ntfschar *name1, const u32 name1_len, const ntfschar *name2, const u32 name2_len, const int err_val, const IGNORE_CASE_BOOL ic, const ntfschar *upcase, const u32 upcase_len) argument
185 ntfs_ucsncasecmp(const ntfschar *s1, const ntfschar *s2, size_t n, const ntfschar *upcase, const u32 upcase_size) argument
206 ntfs_upcase_name(ntfschar *name, u32 name_len, const ntfschar *upcase, const u32 upcase_len) argument
217 ntfs_file_upcase_value(FILE_NAME_ATTR *file_name_attr, const ntfschar *upcase, const u32 upcase_len) argument
224 ntfs_file_compare_values(FILE_NAME_ATTR *file_name_attr1, FILE_NAME_ATTR *file_name_attr2, const int err_val, const IGNORE_CASE_BOOL ic, const ntfschar *upcase, const u32 upcase_len) argument
[all...]
H A Dntfs.h111 const ntfschar *upcase, const u32 upcase_size);
115 const ntfschar *upcase, const u32 upcase_len);
118 const ntfschar *upcase, const u32 upcase_size);
120 const ntfschar *upcase, const u32 upcase_len);
122 const ntfschar *upcase, const u32 upcase_len);
126 const ntfschar *upcase, const u32 upcase_len);
132 /* From fs/ntfs/upcase.c */
H A DMakefile7 unistr.o upcase.o
H A Dsuper.c50 /* A global default upcase table and a corresponding reference count. */
1601 * load_and_init_upcase - load the upcase table for an ntfs volume
1602 * @vol: ntfs super block describing device whose upcase to load
1617 /* Read upcase table and setup vol->upcase and vol->upcase_len. */
1625 * The upcase size must not be above 64k Unicode characters, must not
1632 vol->upcase = (ntfschar*)ntfs_malloc_nofs(i_size);
1633 if (!vol->upcase)
1639 /* Read the upcase table and copy it into the linear buffer. */
1644 memcpy((char*)vol->upcase
[all...]
H A Dvolume.h67 u32 upcase_len; /* Number of entries in upcase[]. */
68 ntfschar *upcase; /* The upcase table. */ member in struct:__anon7648
H A Ddir.c158 CASE_SENSITIVE, vol->upcase, vol->upcase_len)) {
208 IGNORE_CASE, vol->upcase, vol->upcase_len)) {
249 IGNORE_CASE, vol->upcase, vol->upcase_len);
268 CASE_SENSITIVE, vol->upcase, vol->upcase_len);
418 CASE_SENSITIVE, vol->upcase, vol->upcase_len)) {
468 IGNORE_CASE, vol->upcase, vol->upcase_len)) {
511 IGNORE_CASE, vol->upcase, vol->upcase_len);
530 CASE_SENSITIVE, vol->upcase, vol->upcase_len);
H A Dattrib.c567 * the upcase table. If @ic is CASE_SENSITIVE, the comparison is case
597 ntfschar *upcase = vol->upcase; local
632 a->name_length, ic, upcase, upcase_len)) {
639 upcase, upcase_len);
653 upcase, upcase_len);
931 name_len, ic, vol->upcase, vol->upcase_len)) {
936 vol->upcase, vol->upcase_len);
948 vol->upcase, vol->upcase_len);
973 vol->upcase, vo
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/fs/hpfs/
H A Dname.c55 static inline unsigned char upcase(unsigned char *dir, unsigned char a) function
64 return upcase(dir, a);
113 unsigned char c1 = upcase(hpfs_sb(s)->sb_cp_table,n1[i]);
114 unsigned char c2 = upcase(hpfs_sb(s)->sb_cp_table,n2[i]);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/ntfs-3g-2009.3.8/libntfs-3g/
H A Dcollate.c144 IGNORE_CASE, vol->upcase, vol->upcase_len);
148 vol->upcase, vol->upcase_len);
H A Dunistr.c97 * @upcase: upcase table (only if @ic == IGNORE_CASE)
98 * @upcase_size: length in Unicode characters of @upcase (if present)
102 * the @upcase table is used to perform a case insensitive comparison.
107 const ntfschar *upcase, const u32 upcase_size)
115 return ntfs_ucsncasecmp(s1, s2, s1_len, upcase, upcase_size) ? FALSE:
127 * @upcase: upcase table (ignored if @ic is CASE_SENSITIVE)
128 * @upcase_len: upcase table size (ignored if @ic is CASE_SENSITIVE)
142 const IGNORE_CASE_BOOL ic, const ntfschar *upcase,
104 ntfs_names_are_equal(const ntfschar *s1, size_t s1_len, const ntfschar *s2, size_t s2_len, const IGNORE_CASE_BOOL ic, const ntfschar *upcase, const u32 upcase_size) argument
139 ntfs_names_collate(const ntfschar *name1, const u32 name1_len, const ntfschar *name2, const u32 name2_len, const int err_val __attribute__((unused)), const IGNORE_CASE_BOOL ic, const ntfschar *upcase, const u32 upcase_len) argument
243 ntfs_ucsncasecmp(const ntfschar *s1, const ntfschar *s2, size_t n, const ntfschar *upcase, const u32 upcase_size) argument
335 ntfs_name_upcase(ntfschar *name, u32 name_len, const ntfschar *upcase, const u32 upcase_len) argument
356 ntfs_file_value_upcase(FILE_NAME_ATTR *file_name_attr, const ntfschar *upcase, const u32 upcase_len) argument
376 ntfs_file_values_compare(const FILE_NAME_ATTR *file_name_attr1, const FILE_NAME_ATTR *file_name_attr2, const int err_val, const IGNORE_CASE_BOOL ic, const ntfschar *upcase, const u32 upcase_len) argument
[all...]
H A Dvolume.c201 free(v->upcase);
480 /* Create the default upcase table. */
482 vol->upcase = ntfs_malloc(vol->upcase_len * sizeof(ntfschar));
483 if (!vol->upcase)
486 ntfs_upcase_table_build(vol->upcase,
904 /* Now load the upcase table from $UpCase. */
918 * Note: Normally, the upcase table has a length equal to 65536
932 free(vol->upcase);
933 vol->upcase = ntfs_malloc(na->data_size);
934 if (!vol->upcase)
[all...]
H A Ddir.c187 IGNORE_CASE, vol->upcase, vol->upcase_len);
206 CASE_SENSITIVE, vol->upcase, vol->upcase_len);
342 IGNORE_CASE, vol->upcase, vol->upcase_len);
361 CASE_SENSITIVE, vol->upcase, vol->upcase_len);
1456 ni->vol->upcase, ni->vol->upcase_len)){
H A Dattrib.c1658 * the upcase table. If @ic is CASE_SENSITIVE, the comparison is case
1687 ntfschar *upcase; local
1694 upcase = vol->upcase;
1703 upcase = NULL;
1747 a->name_length, ic, upcase, upcase_len)) {
1754 upcase, upcase_len);
1770 upcase, upcase_len);
2057 name, name_len, ic, vol->upcase,
2063 vol->upcase, vo
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/gettext-0.17/gettext-tools/misc/
H A Dpo-compat.el195 (charset-upper (upcase charset))
225 (charset-upper (upcase charset))
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/samba-3.0.13/packaging/Fedora/
H A Dsamba.spec318 %{_libdir}/samba/upcase.dat
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/netatalk-2.2.0/libatalk/bstring/
H A Dbstrlib.c555 #define upcase(c) (toupper ((unsigned char) c)) macro
568 b->data[i] = (unsigned char) upcase (b->data[i]);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/timemachine/netatalk-2.2.5/libatalk/bstring/
H A Dbstrlib.c555 #define upcase(c) (toupper ((unsigned char) c)) macro
568 b->data[i] = (unsigned char) upcase (b->data[i]);

Completed in 248 milliseconds