Home
last modified time | relevance | path

Searched refs:ucs (Results 1 – 7 of 7) sorted by relevance

/linux-6.1.9/include/linux/
Dconsolemap.h27 int conv_uni_to_pc(struct vc_data *conp, long ucs);
44 static inline int conv_uni_to_pc(struct vc_data *conp, long ucs) in conv_uni_to_pc() argument
46 return ucs > 0xff ? -1 : ucs; in conv_uni_to_pc()
/linux-6.1.9/fs/ksmbd/
Dunicode.h101 static inline wchar_t *UniStrchr(const wchar_t *ucs, wchar_t uc) in UniStrchr() argument
103 while ((*ucs != uc) && *ucs) in UniStrchr()
104 ucs++; in UniStrchr()
106 if (*ucs == uc) in UniStrchr()
107 return (wchar_t *)ucs; in UniStrchr()
/linux-6.1.9/fs/ntfs/
Dunistr.c249 ntfschar *ucs; in ntfs_nlstoucs() local
255 ucs = kmem_cache_alloc(ntfs_name_cache, GFP_NOFS); in ntfs_nlstoucs()
256 if (likely(ucs)) { in ntfs_nlstoucs()
263 ucs[o++] = cpu_to_le16(wc); in ntfs_nlstoucs()
271 ucs[o] = 0; in ntfs_nlstoucs()
272 *outs = ucs; in ntfs_nlstoucs()
282 kmem_cache_free(ntfs_name_cache, ucs); in ntfs_nlstoucs()
/linux-6.1.9/fs/cifs/
Dcifs_unicode.h136 UniStrchr(const wchar_t *ucs, wchar_t uc) in UniStrchr() argument
138 while ((*ucs != uc) && *ucs) in UniStrchr()
139 ucs++; in UniStrchr()
141 if (*ucs == uc) in UniStrchr()
142 return (wchar_t *) ucs; in UniStrchr()
/linux-6.1.9/drivers/tty/vt/
Dconsolemap.c863 int conv_uni_to_pc(struct vc_data *conp, long ucs) in conv_uni_to_pc() argument
869 if (ucs > 0xffff) in conv_uni_to_pc()
871 else if (ucs < 0x20) in conv_uni_to_pc()
873 else if (ucs == 0xfeff || (ucs >= 0x200b && ucs <= 0x200f)) in conv_uni_to_pc()
880 else if ((ucs & ~UNI_DIRECT_MASK) == UNI_DIRECT_BASE) in conv_uni_to_pc()
881 return ucs & UNI_DIRECT_MASK; in conv_uni_to_pc()
887 dir = dict->uni_pgdir[UNI_DIR(ucs)]; in conv_uni_to_pc()
891 row = dir[UNI_ROW(ucs)]; in conv_uni_to_pc()
895 glyph = row[UNI_GLYPH(ucs)]; in conv_uni_to_pc()
Dvt.c2581 uint32_t ucs = *(uint32_t *)key; in ucs_cmp() local
2584 if (ucs > e.last) in ucs_cmp()
2586 else if (ucs < e.first) in ucs_cmp()
2591 static int is_double_width(uint32_t ucs) in is_double_width() argument
2599 if (ucs < double_width[0].first || in is_double_width()
2600 ucs > double_width[ARRAY_SIZE(double_width) - 1].last) in is_double_width()
2603 return bsearch(&ucs, double_width, ARRAY_SIZE(double_width), in is_double_width()
/linux-6.1.9/drivers/s390/crypto/
Dpkey_api.c1169 struct pkey_clr2seck __user *ucs = (void __user *)arg; in pkey_unlocked_ioctl() local
1172 if (copy_from_user(&kcs, ucs, sizeof(kcs))) in pkey_unlocked_ioctl()
1179 if (copy_to_user(ucs, &kcs, sizeof(kcs))) in pkey_unlocked_ioctl()
1346 struct pkey_clr2seck2 __user *ucs = (void __user *)arg; in pkey_unlocked_ioctl() local
1352 if (copy_from_user(&kcs, ucs, sizeof(kcs))) in pkey_unlocked_ioctl()
1382 if (copy_to_user(ucs, &kcs, sizeof(kcs))) in pkey_unlocked_ioctl()