Searched refs:curoff (Results 1 - 7 of 7) sorted by relevance
| /xsrc/external/mit/libXfont/dist/src/fontfile/ |
| H A D | bufio.c | 85 int curoff; local in function:BufFileRawSkip 89 curoff = f->bufp - f->buffer; 90 fileoff = curoff + f->left; 91 if (curoff + count <= fileoff) { 95 todo = count - (fileoff - curoff); 100 curoff = BUFFILESIZE; 101 if (curoff > todo) 102 curoff = todo; 103 fileoff = read (FileDes(f), (char *)f->buffer, curoff);
|
| /xsrc/external/mit/libXfont2/dist/src/fontfile/ |
| H A D | bufio.c | 86 off_t curoff; local in function:BufFileRawSkip 90 curoff = f->bufp - f->buffer; 91 fileoff = curoff + f->left; 92 if (curoff + count <= fileoff) { 96 todo = count - (fileoff - curoff); 101 curoff = BUFFILESIZE; 102 if (curoff > todo) 103 curoff = todo; 104 fileoff = read (FileDes(f), (char *)f->buffer, curoff);
|
| /xsrc/external/mit/bdftopcf/dist/ |
| H A D | bufio.c | 85 int curoff = f->bufp - f->buffer; local in function:BufFileRawSkip 86 int fileoff = curoff + f->left; 88 if (curoff + count <= fileoff) { 93 int todo = count - (fileoff - curoff); 99 curoff = BUFFILESIZE; 100 if (curoff > todo) 101 curoff = todo; 102 fileoff = read(FileDes(f), (char *) f->buffer, curoff);
|
| /xsrc/external/mit/libXfont/dist/src/builtins/ |
| H A D | file.c | 61 int curoff; local in function:BuiltinSkip 65 curoff = f->bufp - f->buffer; 66 fileoff = curoff + f->left; 67 if (curoff + count <= fileoff) { 71 todo = count - (fileoff - curoff);
|
| /xsrc/external/mit/libXfont2/dist/src/builtins/ |
| H A D | file.c | 62 int curoff; local in function:BuiltinSkip 66 curoff = f->bufp - f->buffer; 67 fileoff = curoff + f->left; 68 if (curoff + count <= fileoff) { 72 todo = count - (fileoff - curoff);
|
| /xsrc/external/mit/xorg-server.old/dist/os/ |
| H A D | connection.c | 975 int curclient, curoff; local in function:CheckConnections 992 curoff = mffs (mask) - 1; 993 curclient = curoff + (i * (sizeof(fd_mask)*8)); 1002 mask &= ~((fd_mask)1 << curoff);
|
| /xsrc/external/mit/xdm/dist/greeter/ |
| H A D | Login.c | 364 int x, y, height, width, curoff, offset, textlen; local in function:realizeValue 398 curoff = TEXT_WIDTH (text, text + offset, cursor - offset); 400 curoff = 0; 403 if (curoff < width) { 405 x + curoff, y - Y_ASCENT(w), 406 width - curoff, height); 414 if (TEXT_WIDTH (text, text + offset, textlen) > (width - curoff)) { 437 DRAW_STRING(text, x + curoff, y, text + offset, textlen);
|
Completed in 10 milliseconds