HomeSort by: relevance | last modified time | path
    Searched defs:ucs4 (Results 1 - 11 of 11) sorted by relevancy

  /xsrc/external/mit/fontconfig/dist/fc-validate/
fc-validate.c 201 FcChar32 ucs4, pos, map[FC_CHARSET_MAP_SIZE]; local
209 for (ucs4 = FcCharSetFirstPage (fcs_sub, map, &pos);
210 ucs4 != FC_CHARSET_DONE;
211 ucs4 = FcCharSetNextPage (fcs_sub, map, &pos))
218 FcChar32 base = ucs4 + j * 32;
  /xsrc/external/mit/libX11/dist/src/
imConv.c 116 ucs4_t ucs4; local
122 ucs4 = KeySymToUcs4(keysym);
123 if (ucs4)
124 count = (*cvt)((XPointer)NULL, buf, ucs4, nbytes);
172 ucs4_t ucs4; local
192 XPointer from = (XPointer) &ucs4;
199 ucs4 = (ucs4_t) KeySymToUcs4(symbol);
200 if (!ucs4)
245 ucs4_t ucs4; local
261 XPointer from = (XPointer) &ucs4;
317 ucs4_t ucs4; local
    [all...]
  /xsrc/external/mit/libXft/dist/include/X11/Xft/
Xft.h 79 FcChar32 ucs4; member in struct:_XftCharSpec
86 FcChar32 ucs4; member in struct:_XftCharFontSpec
411 FcChar32 ucs4);
416 FcChar32 ucs4);
  /xsrc/external/mit/libXft/dist/src/
xftextent.c 217 FcChar32 ucs4; local
228 while (len && (l = FcUtf8ToUcs4 (string, &ucs4, len)) > 0)
246 glyphs[i++] = XftCharIndex (dpy, pub, ucs4);
264 FcChar32 ucs4; local
275 while (len && (l = FcUtf16ToUcs4 (string, endian, &ucs4, len)) > 0)
293 glyphs[i++] = XftCharIndex (dpy, pub, ucs4);
xftrender.c 472 glyphs[i].glyph = XftCharIndex(dpy, pub, chars[i].ucs4);
762 glyphs[i].glyph = XftCharIndex(dpy, glyphs[i].font, chars[i].ucs4);
1041 FcChar32 ucs4; local
1052 while (len && (l = FcUtf8ToUcs4 (string, &ucs4, len)) > 0)
1069 glyphs[i++] = XftCharIndex (dpy, pub, ucs4);
1094 FcChar32 ucs4; local
1105 while (len && (l = FcUtf16ToUcs4 (string, endian, &ucs4, len)) > 0)
1122 glyphs[i++] = XftCharIndex (dpy, pub, ucs4);
xftdraw.c 611 FcChar32 ucs4; local
622 while (len && (l = FcUtf8ToUcs4 (string, &ucs4, len)) > 0)
639 glyphs[i++] = XftCharIndex (draw->dpy, pub, ucs4);
659 FcChar32 ucs4; local
670 while (len && (l = FcUtf16ToUcs4 (string, endian, &ucs4, len)) > 0)
687 glyphs[i++] = XftCharIndex (draw->dpy, pub, ucs4);
783 glyphs[i].glyph = XftCharIndex(draw->dpy, pub, chars[i].ucs4);
816 glyphs[i].glyph = XftCharIndex(draw->dpy, glyphs[i].font, chars[i].ucs4);
xftint.h 88 FcChar32 ucs4; member in struct:_XftUcsHash
  /xsrc/external/mit/fontconfig/dist/src/
fclang.c 145 FcChar32 ucs4; local
151 for (ucs4 = FcCharSetFirstPage (missed, map, &next);
152 ucs4 != FC_CHARSET_DONE;
153 ucs4 = FcCharSetNextPage (missed, map, &next))
161 printf (" %04x", ucs4 + i * 32 + j);
fccharset.c 131 FcCharSetFindLeafPos (const FcCharSet *fcs, FcChar32 ucs4)
133 return FcCharSetFindLeafForward (fcs, 0, ucs4 >> 8);
137 FcCharSetFindLeaf (const FcCharSet *fcs, FcChar32 ucs4)
139 int pos = FcCharSetFindLeafPos (fcs, ucs4);
149 FcChar32 ucs4,
156 ucs4 >>= 8;
157 if (ucs4 >= 0x10000)
217 numbers[pos] = (FcChar16) ucs4;
229 FcCharSetFindLeafCreate (FcCharSet *fcs, FcChar32 ucs4)
234 pos = FcCharSetFindLeafPos (fcs, ucs4);
307 FcChar32 ucs4; member in struct:_fcCharSetIter
    [all...]
fcstr.c 108 FcChar32 ucs4; local
112 slen = FcUtf8ToUcs4 (w->src - 1, &ucs4, len + 1);
115 if (FC_MIN_FOLD_CHAR <= ucs4 && ucs4 <= FC_MAX_FOLD_CHAR)
126 if (high <= ucs4)
128 else if (ucs4 < low)
137 if ((ucs4 & 1) != (fold->upper & 1))
141 dlen = FcUcs4ToUtf8 (ucs4 + fold->offset, w->utf8);
732 FcUcs4ToUtf8 (FcChar32 ucs4,
738 if (ucs4 < 0x80) { *d++= ucs4; bits= -6;
    [all...]
fcfreetype.c 757 FcChar32 ucs4; local
775 while ((ilen = FcUtf16ToUcs4 (src, FcEndianBig, &ucs4, src_len)) > 0)
779 olen = FcUcs4ToUtf8 (ucs4, u8);
791 FcChar32 ucs4; local
803 ucs4 = *src++;
805 olen = FcUcs4ToUtf8 (ucs4, u8);
817 FcChar32 ucs4; local
829 ucs4 = *src++;
830 if (ucs4 >= 128)
831 ucs4 = fcMacRomanNonASCIIToUnicode[ucs4 - 128]
2560 FcChar32 ucs4; local
2611 FcChar32 page, off, ucs4; local
    [all...]

Completed in 12 milliseconds