Lines Matching refs:ucs
810 conv_uni_to_pc(struct vc_data *conp, long ucs)
817 if (ucs > 0xffff)
819 else if (ucs < 0x20)
821 else if (ucs == 0xfeff || (ucs >= 0x200b && ucs <= 0x200f))
828 else if ((ucs & ~UNI_DIRECT_MASK) == UNI_DIRECT_BASE)
829 return ucs & UNI_DIRECT_MASK;
835 if ((p1 = p->uni_pgdir[ucs >> 11]) &&
836 (p2 = p1[(ucs >> 6) & 0x1f]) &&
837 (h = p2[ucs & 0x3f]) < MAX_GLYPH)