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

  /xsrc/external/mit/bdftopcf/dist/
bitmaputil.c 75 int nchars; local
94 nchars = bitmapFont->num_chars;
95 for (i = 0, ci = bitmapFont->metrics; i < nchars; i++, ci++) {
163 int nchars, i; local
175 nchars = bitmapFont->num_chars;
176 for (i = 0, ci = bitmapFont->ink_metrics; i < nchars; i++, ci++) {
bdfread.c 256 int i, ndx, nchars, nignored; local
283 if ((!line) || (sscanf((char *) line, "CHARS %d", &nchars) != 1)) {
287 if (nchars < 1) {
291 if (nchars > (signed) (INT32_MAX / sizeof(CharInfoRec))) {
292 bdfError("Couldn't allocate pCI (%d*%d)\n", nchars,
296 ci = calloc(nchars, sizeof(CharInfoRec));
298 bdfError("Couldn't allocate pCI (%d*%d)\n", nchars,
305 bitmapExtra->glyphNames = malloc(nchars * sizeof(Atom));
308 nchars, (int) sizeof(Atom));
313 bitmapExtra->sWidths = malloc(nchars * sizeof(int))
    [all...]
  /xsrc/external/mit/libXfont/dist/src/bitmap/
bitmaputil.c 72 int nchars; local
93 nchars = bitmapFont->num_chars;
94 for (i = 0, ci = bitmapFont->metrics; i < nchars; i++, ci++) {
149 int nchars; local
176 nchars = bitmapFont->num_chars;
177 for (i = 0, ci = bitmapFont->ink_metrics; i < nchars; i++, ci++) {
bdfread.c 266 nchars, local
293 if ((!line) || (sscanf((char *) line, "CHARS %d", &nchars) != 1)) {
297 if (nchars < 1) {
301 if (nchars > (signed) (INT32_MAX / sizeof(CharInfoRec))) {
302 bdfError("Couldn't allocate pCI (%d*%d)\n", nchars,
306 ci = calloc(nchars, sizeof(CharInfoRec));
308 bdfError("Couldn't allocate pCI (%d*%d)\n", nchars,
315 bitmapExtra->glyphNames = malloc(nchars * sizeof(Atom));
318 nchars, (int) sizeof(Atom));
323 bitmapExtra->sWidths = malloc(nchars * sizeof(int))
    [all...]
bitscale.c 760 int nchars = 0; /* how many characters in the font */ local
849 nchars = (lastRow - firstRow + 1) * (lastCol - firstCol + 1);
856 bitmapFont->num_chars = nchars;
864 bitmapFont->metrics = malloc(nchars * sizeof(CharInfoRec));
867 nchars, (unsigned long)sizeof(CharInfoRec));
870 bitmapFont->encoding = calloc(NUM_SEGMENTS(nchars), sizeof(CharInfoPtr*));
873 nchars, (unsigned long)sizeof(CharInfoPtr));
912 for (i = 0; i < nchars; i++)
1014 for (i = 0; i < nchars; i++)
1096 for(i=0; i<NUM_SEGMENTS(nchars); i++
1454 int nchars = 0; local
    [all...]
  /xsrc/external/mit/libXfont2/dist/src/bitmap/
bitmaputil.c 74 int nchars; local
95 nchars = bitmapFont->num_chars;
96 for (i = 0, ci = bitmapFont->metrics; i < nchars; i++, ci++) {
151 int nchars; local
178 nchars = bitmapFont->num_chars;
179 for (i = 0, ci = bitmapFont->ink_metrics; i < nchars; i++, ci++) {
bdfread.c 268 nchars, local
295 if ((!line) || (sscanf((char *) line, "CHARS %d", &nchars) != 1)) {
299 if (nchars < 1) {
303 if (nchars > (signed) (INT32_MAX / sizeof(CharInfoRec))) {
304 bdfError("Couldn't allocate pCI (%d*%d)\n", nchars,
308 ci = calloc(nchars, sizeof(CharInfoRec));
310 bdfError("Couldn't allocate pCI (%d*%d)\n", nchars,
317 bitmapExtra->glyphNames = mallocarray(nchars, sizeof(Atom));
320 nchars, (int) sizeof(Atom));
325 bitmapExtra->sWidths = mallocarray(nchars, sizeof(int))
    [all...]
bitscale.c 757 int nchars = 0; /* how many characters in the font */ local
846 nchars = (lastRow - firstRow + 1) * (lastCol - firstCol + 1);
853 bitmapFont->num_chars = nchars;
861 bitmapFont->metrics = mallocarray(nchars, sizeof(CharInfoRec));
864 nchars, (unsigned long)sizeof(CharInfoRec));
867 bitmapFont->encoding = calloc(NUM_SEGMENTS(nchars), sizeof(CharInfoPtr*));
870 nchars, (unsigned long)sizeof(CharInfoPtr));
909 for (i = 0; i < nchars; i++)
1011 for (i = 0; i < nchars; i++)
1093 for(i=0; i<NUM_SEGMENTS(nchars); i++
1451 int nchars = 0; local
    [all...]
  /xsrc/external/mit/libXrender/dist/src/
Glyph.c 431 int nchars; local
441 nchars = elts[i].nchars;
447 elen = SIZEOF(xGlyphElt) * ((nchars + MAX_8-1) / MAX_8) + nchars;
461 int nchars; local
475 nchars = elts[i].nchars;
479 while (nchars)
481 int this_chars = nchars > MAX_8 ? MAX_8 : nchars
546 int nchars; local
574 int nchars; local
661 int nchars; local
684 int nchars; local
    [all...]
  /xsrc/external/mit/xfs/dist/difs/
charinfo.c 94 int nchars; local
112 * compute nchars
116 nchars = n2dChars(pinfo);
118 nchars = lastCol - firstCol + 1;
126 nchars = 0;
131 nchars += (rp->max_char_high - rp->min_char_high + 1) *
136 xchars = (CharInfoPtr *) FScalloc (nchars, sizeof (CharInfoPtr));
184 *nump = nchars;
203 int nchars; local
210 &nchars, &xchars)
332 int nchars; local
    [all...]
  /xsrc/external/mit/xditview/dist/
DviP.h 94 int nchars; member in struct:_dviTextItem
  /xsrc/external/mit/xorg-server/dist/dix/
swaprep.c 386 unsigned nchars, nprops; local
391 nchars = pr->nCharInfos;
405 for (i = 0; i < nchars; i++, pxci++)
  /xsrc/external/mit/xorg-server.old/dist/dix/
swaprep.c 422 unsigned nchars, nprops; local
428 nchars = pr->nCharInfos;
444 for(i = 0; i< nchars; i++, pxci++)
  /xsrc/external/mit/libXrender/dist/include/X11/extensions/
Xrender.h 224 int nchars; member in struct:_XGlyphElt8
242 int nchars; member in struct:_XGlyphElt16
260 int nchars; member in struct:_XGlyphElt32
  /xsrc/external/mit/libX11/dist/include/X11/
Xlib.h 1055 int nchars; /* number of characters */ member in struct:__anon5615
1067 int nchars; /* number of characters */ member in struct:__anon5617
1094 int nchars; member in struct:__anon5620
1101 int nchars; member in struct:__anon5621
3009 int /* nchars */,
3020 int /* nchars */,
3427 int /* nchars */,
3437 int /* nchars */,

Completed in 41 milliseconds