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

/linux-master/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) argument
46 return ucs > 0xff ? -1 : ucs;
/linux-master/fs/nls/
H A Dnls_ucs2_utils.h69 static inline wchar_t *UniStrchr(const wchar_t *ucs, wchar_t uc) argument
71 while ((*ucs != uc) && *ucs)
72 ucs++;
74 if (*ucs == uc)
75 return (wchar_t *)ucs;
/linux-master/drivers/crypto/intel/qat/qat_common/
H A Dadf_gen4_tl.c77 ADF_GEN4_TL_SL_UTIL_COUNTER(ucs),
99 ADF_GEN4_TL_SL_EXEC_COUNTER(ucs),
/linux-master/drivers/tty/vt/
H A Dconsolemap.c863 int conv_uni_to_pc(struct vc_data *conp, long ucs) argument
869 if (ucs > 0xffff)
871 else if (ucs < 0x20)
873 else if (ucs == 0xfeff || (ucs >= 0x200b && ucs <= 0x200f))
880 else if ((ucs & ~UNI_DIRECT_MASK) == UNI_DIRECT_BASE)
881 return ucs & UNI_DIRECT_MASK;
887 dir = dict->uni_pgdir[UNI_DIR(ucs)];
891 row = dir[UNI_ROW(ucs)];
[all...]
H A Dvt.c2717 * Latest version: https://www.cl.cam.ac.uk/~mgk25/ucs/wcwidth.c
2726 uint32_t ucs = *(uint32_t *)key; local
2729 if (ucs > e.last)
2731 else if (ucs < e.first)
2736 static int is_double_width(uint32_t ucs) argument
2744 if (ucs < double_width[0].first ||
2745 ucs > double_width[ARRAY_SIZE(double_width) - 1].last)
2748 return bsearch(&ucs, double_width, ARRAY_SIZE(double_width),
/linux-master/drivers/s390/crypto/
H A Dpkey_api.c1369 struct pkey_clr2seck __user *ucs = (void __user *)arg; local
1372 if (copy_from_user(&kcs, ucs, sizeof(kcs)))
1379 if (copy_to_user(ucs, &kcs, sizeof(kcs)))
1557 struct pkey_clr2seck2 __user *ucs = (void __user *)arg; local
1563 if (copy_from_user(&kcs, ucs, sizeof(kcs)))
1593 if (copy_to_user(ucs, &kcs, sizeof(kcs)))

Completed in 214 milliseconds