Lines Matching refs:ucs
863 int conv_uni_to_pc(struct vc_data *conp, long ucs)
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)];
895 glyph = row[UNI_GLYPH(ucs)];