Home
last modified time | relevance | path

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

/openbmc/linux/include/linux/
H A 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()
/openbmc/linux/fs/nls/
H A Dnls_ucs2_utils.h69 static inline wchar_t *UniStrchr(const wchar_t *ucs, wchar_t uc) in UniStrchr() argument
71 while ((*ucs != uc) && *ucs) in UniStrchr()
72 ucs++; in UniStrchr()
74 if (*ucs == uc) in UniStrchr()
75 return (wchar_t *)ucs; in UniStrchr()
/openbmc/linux/fs/ntfs/
H A 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()
/openbmc/linux/drivers/tty/vt/
H A 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()
H A Dvt.c2535 uint32_t ucs = *(uint32_t *)key; in ucs_cmp() local
2538 if (ucs > e.last) in ucs_cmp()
2540 else if (ucs < e.first) in ucs_cmp()
2545 static int is_double_width(uint32_t ucs) in is_double_width() argument
2553 if (ucs < double_width[0].first || in is_double_width()
2554 ucs > double_width[ARRAY_SIZE(double_width) - 1].last) in is_double_width()
2557 return bsearch(&ucs, double_width, ARRAY_SIZE(double_width), in is_double_width()
/openbmc/linux/drivers/s390/crypto/
H A Dpkey_api.c1361 struct pkey_clr2seck __user *ucs = (void __user *)arg; in pkey_unlocked_ioctl() local
1364 if (copy_from_user(&kcs, ucs, sizeof(kcs))) in pkey_unlocked_ioctl()
1371 if (copy_to_user(ucs, &kcs, sizeof(kcs))) in pkey_unlocked_ioctl()
1549 struct pkey_clr2seck2 __user *ucs = (void __user *)arg; in pkey_unlocked_ioctl() local
1555 if (copy_from_user(&kcs, ucs, sizeof(kcs))) in pkey_unlocked_ioctl()
1585 if (copy_to_user(ucs, &kcs, sizeof(kcs))) in pkey_unlocked_ioctl()