HomeSort by: relevance | last modified time | path
    Searched defs:chars (Results 1 - 25 of 37) sorted by relevancy

1 2

  /xsrc/external/mit/freetype/dist/src/pfr/
pfrcmap.h 32 PFR_Char chars; member in struct:PFR_CMapRec_
pfrtypes.h 238 PFR_Char chars; member in struct:PFR_PhyFontRec_
  /xsrc/external/mit/libXrender/dist/src/
Glyph.c 460 _Xconst char *chars; local
478 chars = elts[i].chars;
489 Data (dpy, chars, this_chars);
491 chars += this_chars;
573 _Xconst unsigned short *chars; local
591 chars = elts[i].chars;
603 Data16 (dpy, chars, this_bytes);
605 chars += this_chars
683 _Xconst unsigned int *chars; local
    [all...]
  /xsrc/external/mit/xorg-server.old/dist/hw/xwin/xlaunch/
config.cc 39 int chars = WideCharToMultiByte(CP_ACP, 0, wstr, -1, NULL, 0, NULL, NULL); local
40 if (chars == 0)
42 char *mbstr = new char[chars];
43 chars = WideCharToMultiByte(CP_ACP, 0, wstr, -1, mbstr, chars, NULL, NULL);
44 if (chars == 0)
51 int chars = MultiByteToWideChar(CP_ACP, 0, mbstr, -1, NULL, 0); local
52 if (chars == 0)
54 wchar_t *wstr = new wchar_t[chars];
55 chars = MultiByteToWideChar(CP_ACP, 0, mbstr, -1, wstr, chars)
    [all...]
  /xsrc/external/mit/bitmap/dist/
bmtoa.c 54 unsigned const char *data, const char *chars);
62 " -chars cc chars to use for 0 and 1 bits, respectively\n"
102 "%s: error copying stdin to file (%d of %d chars)\n",
118 const char *chars = "-#"; local
137 fprintf(stderr, "%s: -chars requires an argument\n",
141 chars = argv[i];
165 if (strlen (chars) != 2) {
168 ProgramName, chars);
186 print_scanline (width, height, data, chars);
    [all...]
atobm.c 46 static void doit(FILE *fp, const char *filename, const char *chars,
57 " -chars cc chars to use for 0 and 1 bits, respectively\n"
110 const char *chars = "-#"; local
125 if (++i >= argc) missing_arg("-chars");
126 chars = argv[i];
162 if (strlen (chars) != 2) {
165 ProgramName, chars);
182 doit (fp, filename, chars, xhot, yhot, name);
217 const char *chars,
    [all...]
  /xsrc/external/mit/libXft/dist/src/
xftrender.c 44 unsigned int *chars,
55 srcx, srcy, dstx, dsty, (char*)chars, nchars);
60 srcx, srcy, dstx, dsty, (unsigned short*)chars, nchars);
65 srcx, srcy, dstx, dsty, (unsigned int*)chars, nchars);
100 unsigned int *chars; local
142 chars = char_local;
148 chars = malloc (needed);
149 if (!chars)
154 char8 = (char *) chars;
155 char16 = (unsigned short *) chars;
263 unsigned int *chars; local
533 unsigned int *chars; local
    [all...]
  /xsrc/external/mit/showfont/dist/
showfont.c 174 FSChar2b chars[2]; local
180 chars[0] = first;
181 chars[1] = last;
184 FSQueryXExtents16(svr, fid, True, chars, num_chars, &extents);
188 int err = FSQueryXBitmaps16(svr, fid, format, True, chars, num_chars,
327 printf("All chars exist\n");
  /xsrc/external/mit/xorg-server/dist/glamor/
glamor_text.c 30 * aligns exactly with chars
35 int count, char *chars, Bool sixteen, CharInfoPtr *charinfo)
55 * once. Otherwise, we have to fetch chars one at a time to notice
59 GetGlyphs(font, (unsigned long) count, (unsigned char *) chars,
78 GetGlyphs(font, 1, (unsigned char *) chars,
82 chars += char_step;
98 unsigned char *chars = (unsigned char *) s_chars; local
153 row = chars[0];
154 col = chars[1];
166 col = chars[0]
    [all...]
  /xsrc/external/mit/xorg-server.old/dist/Xext/
xf86bigfont.c 429 unsigned char chars[512]; local
438 chars[i++] = row;
439 chars[i++] = col;
441 (*pFont->get_metrics) (pFont, ncols, chars, TwoD16Bit,
  /xsrc/external/mit/xorg-server/dist/Xext/
xf86bigfont.c 413 unsigned char chars[512]; local
422 chars[i++] = row;
423 chars[i++] = col;
425 (*pFont->get_metrics) (pFont, ncols, chars, TwoD16Bit,
  /xsrc/external/mit/xditview/dist/
DviP.h 93 char *chars; member in struct:_dviTextItem
  /xsrc/external/mit/font-util/dist/
ucs2any.c 543 int *chars = NULL; local
597 if (startswith(l, "CHARS"))
857 if (chars != NULL)
858 free(chars);
859 chars = zmalloc(j * sizeof(int));
860 memset(chars, 0, j * sizeof(int));
863 chars[k++] = i;
865 qsort(chars, j, sizeof(int), chars_compare);
870 ucs = da_fetch_int(map, chars[i]);
993 fprintf(fout_fp, "CHARS %d\n", j)
    [all...]
  /xsrc/external/mit/libXrender/dist/include/X11/extensions/
Xrender.h 222 _Xconst char *chars; member in struct:_XGlyphElt8
240 _Xconst unsigned short *chars; member in struct:_XGlyphElt16
258 _Xconst unsigned int *chars; member in struct:_XGlyphElt32
  /xsrc/external/mit/xorg-server.old/dist/dix/
dixfonts.c 514 unsigned char chars[512]; local
551 chars[i++] = r;
552 chars[i++] = c;
554 (*pFont->get_metrics) (pFont, ncols, chars,
  /xsrc/external/mit/xorg-server/dist/dix/
dixfonts.c 120 GetGlyphs(FontPtr font, unsigned long count, unsigned char *chars,
125 (*font->get_glyphs) (font, count, chars, fontEncoding, glyphcount, glyphs);
502 unsigned char chars[512]; local
537 chars[i++] = r;
538 chars[i++] = c;
540 (*pFont->get_metrics) (pFont, ncols, chars,
  /xsrc/external/mit/xedit/dist/lisp/
string.c 806 unsigned char *chars = (unsigned char*)THESTR(ochars); local
812 if (string[start] == chars[i])
821 if (string[end] == chars[i])
  /xsrc/external/mit/xterm/dist/
screen.c 366 * Allocates memory for a 2-dimensional array of chars and returns a pointer
561 * Turn on wide-chars temporarily when constructing pointers, since that is
899 IChar *chars; local
925 chars = ld->charData + screen->cur_col;
929 starcol1 = *chars;
951 chars[n] = str[n];
963 IChar *char1 = chars;
991 && isWide((int) chars[-1])) {
992 chars[-1] = (CharData) ' ';
996 if (chars[length] == HIDDEN_CHA
1606 IChar *chars; local
    [all...]
  /xsrc/external/mit/MesaGLUT/dist/src/glut/beos/
glut_mroman.c 2319 static const StrokeCharRec chars[] = { variable
2450 StrokeFontRec glutStrokeMonoRoman = { "Roman", 128, chars, 119.048, -33.3333 };
glut_roman.c 2319 static const StrokeCharRec chars[] = { variable
2450 StrokeFontRec glutStrokeRoman = { "Roman", 128, chars, 119.048, -33.3333 };
glut_8x13.c 1808 static const BitmapCharRec * const chars[] = { variable
2071 chars
glut_9x15.c 1810 static const BitmapCharRec * const chars[] = { variable
2073 chars
glut_hel10.c 1545 static const BitmapCharRec * const chars[] = { variable
1776 chars
  /xsrc/external/mit/MesaGLUT/dist/src/glut/glx/
glut_mroman.c 2321 static const StrokeCharRec chars[] = { variable
2453 const StrokeFontRec glutStrokeMonoRoman = { "Roman", 128, chars, 119.048, -33.3333 };
glut_roman.c 2321 static const StrokeCharRec chars[] = { variable
2453 const StrokeFontRec glutStrokeRoman = { "Roman", 128, chars, 119.048, -33.3333 };

Completed in 44 milliseconds

1 2