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

  /xsrc/external/mit/bdftopcf/dist/
bitmap.c 47 unsigned int firstRow;
65 if (pFont->info.firstRow > 0) {
114 firstRow = pFont->info.firstRow;
115 numRows = pFont->info.lastRow - firstRow + 1;
119 r = (*chars++) - firstRow;
  /xsrc/external/mit/libXfont/dist/src/bitmap/
bitmap.c 47 unsigned int firstRow;
66 if (pFont->info.firstRow > 0) {
113 firstRow = pFont->info.firstRow;
114 numRows = pFont->info.lastRow - firstRow + 1;
116 r = (*chars++) - firstRow;
snfstr.h 113 #define n2dChars(pfi) (((pfi)->lastRow - (pfi)->firstRow + 1) * \
146 unsigned int linear:1; /* true if firstRow == lastRow */
162 unsigned int firstRow;
bitscale.c 762 int firstCol, lastCol, firstRow, lastRow;
767 firstRow - opf->info.firstRow) * \
803 firstRow = 255;
817 if (firstRow > vals->ranges[i].min_char_high)
818 firstRow = vals->ranges[i].min_char_high;
823 if (firstCol > lastCol || firstRow > lastRow)
830 if (firstRow < opfi->firstRow)
831 firstRow = opfi->firstRow
    [all...]
  /xsrc/external/mit/libXfont2/dist/src/bitmap/
bitmap.c 48 unsigned int firstRow;
67 if (pFont->info.firstRow > 0) {
114 firstRow = pFont->info.firstRow;
115 numRows = pFont->info.lastRow - firstRow + 1;
117 r = (*chars++) - firstRow;
snfstr.h 113 #define n2dChars(pfi) (((pfi)->lastRow - (pfi)->firstRow + 1) * \
146 unsigned int linear:1; /* true if firstRow == lastRow */
162 unsigned int firstRow;
bitscale.c 760 int firstCol, lastCol, firstRow, lastRow;
765 firstRow - opf->info.firstRow) * \
801 firstRow = 255;
815 if (firstRow > vals->ranges[i].min_char_high)
816 firstRow = vals->ranges[i].min_char_high;
821 if (firstCol > lastCol || firstRow > lastRow)
828 if (firstRow < opfi->firstRow)
829 firstRow = opfi->firstRow
    [all...]
  /xsrc/external/mit/MesaLib.old/dist/src/mesa/program/
prog_statevars.c 300 const GLuint firstRow = (GLuint) state[2];
305 assert(firstRow < 4);
340 for (i = 0, row = firstRow; row <= lastRow; row++) {
348 for (i = 0, row = firstRow; row <= lastRow; row++) {
1009 const GLuint firstRow = (GLuint) state[2];
1018 if (firstRow == lastRow)
1019 sprintf(tmp, ".row[%d]", firstRow);
1021 sprintf(tmp, ".row[%d..%d]", firstRow, lastRow);
  /xsrc/external/mit/MesaLib/dist/src/mesa/program/
prog_statevars.c 50 copy_matrix(float *value, const float *m, unsigned firstRow, unsigned lastRow)
54 assert(firstRow < 4);
57 for (i = 0, row = firstRow; row <= lastRow; row++) {
66 copy_matrix_transposed(float *value, const float *m, unsigned firstRow, unsigned lastRow)
68 assert(firstRow < 4);
71 memcpy(value, &m[firstRow * 4],
72 (lastRow - firstRow + 1) * 4 * sizeof(GLfloat));
1282 const GLuint firstRow = (GLuint) state[2];
1288 if (firstRow == lastRow)
1289 sprintf(tmp, "row[%d]", firstRow);
    [all...]
  /xsrc/external/mit/libXfont/dist/src/fc/
fsconvert.c 66 pfi->firstCol = pfi->firstRow;
67 pfi->firstRow = n;
211 register unsigned long firstrow, lastrow, firstcol, lastcol; local
219 firstrow = pfi->firstRow;
228 row = loc / (lastcol - firstcol + 1) + firstrow;
242 if (firstrow != 0) return AccessDone;
278 fullrange[0].min_char_high = firstrow;
302 if (row1 < firstrow) row1 = firstrow;
    [all...]
  /xsrc/external/mit/libXfont2/dist/src/fc/
fsconvert.c 68 pfi->firstCol = pfi->firstRow;
69 pfi->firstRow = n;
213 register unsigned long firstrow, lastrow, firstcol, lastcol; local
221 firstrow = pfi->firstRow;
230 row = loc / (lastcol - firstcol + 1) + firstrow;
244 if (firstrow != 0) return AccessDone;
280 fullrange[0].min_char_high = firstrow;
304 if (row1 < firstrow) row1 = firstrow;
    [all...]
  /xsrc/external/mit/xorg-server/dist/glamor/
glamor_text.c 106 int firstRow = font->info.firstRow;
157 ty = ((row - firstRow) / 2) * glyph_spacing_y;
158 second_row = (row - firstRow) & 1;
  /xsrc/external/mit/xfs/dist/difs/
charinfo.c 74 #define n2dChars(pfi) (((pfi)->lastRow - (pfi)->firstRow + 1) * \
99 int firstRow = pinfo->firstRow;
120 local_range.min_char_high = firstRow;
  /xsrc/external/mit/freetype/dist/src/pcf/
pcf.h 111 FT_UShort firstRow;
  /xsrc/external/mit/xorgproto/dist/include/X11/fonts/
fontstruct.h 76 unsigned short firstRow;
  /xsrc/external/mit/xterm/dist/
button.c 3036 int firstrow,
3048 boundsCheck(firstrow);
3050 screen->firstValidRow = firstrow;
3831 lengthOfLines(TScreen *screen, int firstRow, int lastRow)
3836 for (n = firstRow; n <= lastRow; ++n) {
3998 int firstRow = firstRowOfLine(screen, startc->row, True);
3999 int lastRow = lastRowOfLine(screen, firstRow);
4000 unsigned size = lengthOfLines(screen, firstRow, lastRow);
4005 firstRow, lastRow, size));
4010 firstRow,
    [all...]

Completed in 16 milliseconds