| /xsrc/external/mit/xkbevd/dist/ |
| H A D | cfgscan.c | 186 int ch; local in function:yyGetString 189 while (((ch = getc(yyin)) != EOF) && (ch != '"')) { 190 if (ch == '\\') { 191 if ((ch = getc(yyin)) != EOF) { 192 if (ch == 'n') 193 ch = '\n'; 194 else if (ch == 't') 195 ch = '\t'; 196 else if (ch 257 int ch; local in function:yyGetKeyName 344 int ch, found; local in function:yyGetIdent 379 yyGetNumber(int ch) argument 417 int ch; local in function:yylex [all...] |
| /xsrc/external/mit/xkbcomp/dist/ |
| H A D | xkbscan.c | 322 int ch, i; local in function:yyGetString 325 while (((ch = scanchar()) != EOF) && (ch != '"')) 327 if (ch == '\\') 329 if ((ch = scanchar()) != EOF) 331 if (ch == 'n') 332 ch = '\n'; 333 else if (ch == 't') 334 ch = '\t'; 335 else if (ch 405 int ch, i; local in function:yyGetKeyName 581 int ch, j, found; local in function:yyGetIdent 617 yyGetNumber(int ch) argument 664 int ch; local in function:yylex [all...] |
| /xsrc/external/mit/MesaGLUT/dist/src/glut/beos/ |
| H A D | glut_bwidth.c | 16 const BitmapCharRec *ch; local in function:glutBitmapWidth 26 ch = fontinfo->ch[c - fontinfo->first]; 27 if (ch) 28 return ch->advance; 38 const BitmapCharRec *ch; local in function:glutBitmapLength 50 ch = fontinfo->ch[c - fontinfo->first]; 51 if (ch) 52 length += ch [all...] |
| H A D | glut_swidth.c | 16 const StrokeCharRec *ch; local in function:glutStrokeWidth 26 ch = &(fontinfo->ch[c]); 27 if (ch) 28 return ch->right; 38 const StrokeCharRec *ch; local in function:glutStrokeLength 50 ch = &(fontinfo->ch[c]); 51 if (ch) 52 length += ch [all...] |
| H A D | glut_stroke.c | 14 const StrokeCharRec *ch; local in function:glutStrokeCharacter 29 ch = &(fontinfo->ch[c]); 30 if (ch) { 31 for (i = ch->num_strokes, stroke = ch->stroke; 40 glTranslatef(ch->right, 0.0, 0.0);
|
| H A D | glut_bitmap.c | 14 const BitmapCharRec *ch; local in function:glutBitmapCharacter 28 ch = fontinfo->ch[c - fontinfo->first]; 29 if (ch) { 47 glBitmap(ch->width, ch->height, ch->xorig, ch->yorig, 48 ch->advance, 0, ch [all...] |
| /xsrc/external/mit/MesaGLUT/dist/src/glut/glx/ |
| H A D | glut_bwidth.c | 16 const BitmapCharRec *ch; local in function:glutBitmapWidth 26 ch = fontinfo->ch[c - fontinfo->first]; 27 if (ch) 28 return ch->advance; 38 const BitmapCharRec *ch; local in function:glutBitmapLength 50 ch = fontinfo->ch[c - fontinfo->first]; 51 if (ch) 52 length += ch [all...] |
| H A D | glut_swidth.c | 16 const StrokeCharRec *ch; local in function:glutStrokeWidth 26 ch = &(fontinfo->ch[c]); 27 if (ch) 28 return ch->right; 38 const StrokeCharRec *ch; local in function:glutStrokeLength 50 ch = &(fontinfo->ch[c]); 51 if (ch) 52 length += ch [all...] |
| H A D | glut_stroke.c | 14 const StrokeCharRec *ch; local in function:glutStrokeCharacter 29 ch = &(fontinfo->ch[c]); 30 if (ch) { 31 for (i = ch->num_strokes, stroke = ch->stroke; 40 glTranslatef(ch->right, 0.0, 0.0);
|
| H A D | glut_bitmap.c | 14 const BitmapCharRec *ch; local in function:glutBitmapCharacter 28 ch = fontinfo->ch[c - fontinfo->first]; 29 if (ch) { 47 glBitmap(ch->width, ch->height, ch->xorig, ch->yorig, 48 ch->advance, 0, ch [all...] |
| /xsrc/external/mit/libX11/dist/src/ |
| H A D | GetFPath.c | 41 char *ch = NULL; local in function:XGetFontPath 56 ch = Xmalloc (nbytes + 1); 60 if ((! flist) || (! ch)) { 62 Xfree(ch); 69 _XReadPad (dpy, ch, nbytes); 73 chend = ch + nbytes; 74 length = *(unsigned char *)ch; 76 if (ch + length < chend) { 77 flist[i] = ch+1; /* skip over length */ 78 ch [all...] |
| H A D | ListExt.c | 40 char *ch = NULL; local in function:XListExtensions 61 ch = Xmalloc (rlen + 1); 65 if ((!list) || (!ch)) { 67 Xfree(ch); 74 _XReadPad (dpy, ch, rlen); 78 chend = ch + rlen; 79 length = *(unsigned char *)ch; 81 if (ch + length < chend) { 82 list[i] = ch+1; /* skip over length */ 83 ch [all...] |
| H A D | FontNames.c | 46 char *ch = NULL; local in function:XListFonts 76 ch = Xmalloc(rlen + 1); 80 if ((! flist) || (! ch)) { 82 Xfree(ch); 90 _XReadPad (dpy, ch, rlen); 94 chstart = ch; 95 chend = ch + rlen; 96 length = *(unsigned char *)ch; 97 *ch = 1; /* make sure it is non-zero for XFreeFontNames */ 99 if (ch [all...] |
| /xsrc/external/mit/xterm/dist/vttests/ |
| H A D | acs.pl | 66 my $ch = 32 + $row + $col * 16; 67 last if ( $ch >= 127 ); 69 my $xx = chr($ch); 70 printf '%2x:%s{%s%s%s}', $ch, $xx, $smacs, $xx . $xx . $xx . $xx,
|
| H A D | cursor.pl | 116 my $ch; 128 $ch = get_char(); 129 if ( $ch eq "q") { 131 } elsif ( $ch eq "h" ) { 133 } elsif ( $ch eq "j" ) { 135 } elsif ( $ch eq "k" ) { 137 } elsif ( $ch eq "l" ) { 139 } elsif ( $ch eq "n" ) { 146 } elsif ( $ch eq "p" ) { 155 # printf "got:%s\r\n", $ch; [all...] |
| /xsrc/external/mit/ctwm/dist/cmake_files/ |
| H A D | ctags.cmake | 7 COMMAND ${CTAGS} *.[ch] ext/*.[ch] build/*.[ch]
|
| /xsrc/external/mit/libXaw/dist/src/ |
| H A D | XawI18n.c | 80 _Xaw_iswalnum(wchar_t ch) argument 83 return iswalnum((wint_t)ch); 87 wctomb((char*)mb, ch);
|
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/state_trackers/nine/ |
| H A D | nine_dump.h | 35 nine_dump_D3DADAPTER_IDENTIFIER9(unsigned ch, const D3DADAPTER_IDENTIFIER9 *id) argument 38 nine_dump_D3DCAPS9(unsigned ch, const D3DCAPS9 *caps) argument 41 nine_dump_D3DLIGHT9(unsigned ch, const D3DLIGHT9 *light) argument 44 nine_dump_D3DMATERIAL9(unsigned ch, const D3DMATERIAL9 *mat) argument 47 nine_dump_D3DTSS_value(unsigned ch, D3DTEXTURESTAGESTATETYPE tss, DWORD value) argument
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/frontends/nine/ |
| H A D | nine_dump.h | 35 nine_dump_D3DADAPTER_IDENTIFIER9(unsigned ch, const D3DADAPTER_IDENTIFIER9 *id) argument 38 nine_dump_D3DCAPS9(unsigned ch, const D3DCAPS9 *caps) argument 41 nine_dump_D3DLIGHT9(unsigned ch, const D3DLIGHT9 *light) argument 44 nine_dump_D3DMATERIAL9(unsigned ch, const D3DMATERIAL9 *mat) argument 47 nine_dump_D3DTSS_value(unsigned ch, D3DTEXTURESTAGESTATETYPE tss, DWORD value) argument
|
| /xsrc/external/mit/libX11/dist/src/xlibi18n/ |
| H A D | lcUtil.c | 35 #define set_toupper(ch) do { \ 36 if (ch >= 'a' && ch <= 'z') \ 37 ch = (unsigned char) (ch - 'a' + 'A'); \
|
| /xsrc/external/mit/xterm/dist/ |
| H A D | charclass.c | 313 wint_t ch = (wint_t) wch; local in function:expected_class 314 if (wch < 0 || ch == '\0' || ch == '\t') { 316 } else if (iswcntrl(ch)) { 318 } else if (iswspace(ch)) { 320 } else if (ch < 127) { 321 if (isalnum(ch) || ch == '_') { 324 } else if (ch == 170 || ch 339 int ch; local in function:show_cclass_range 374 int ch; local in function:report_resource 461 int ch; local in function:main [all...] |
| H A D | fontutils.h | 103 #define ForceBoxChars(screen,ch) \ 104 (xtermIsDecGraphic(ch) \ 114 #define CheckedKnownMissing(font, ch) \ 115 (((ch) < MaxUChar) && ((font)->known_missing[(Char)(ch)] > 0)) 117 #define CheckedKnownMissing(font, ch) \ 118 ((font)->known_missing[(Char)(ch)] > 0) 121 #define IsXtermMissingChar(screen, ch, font) \ 122 (CheckedKnownMissing(font, ch) \ 123 ? ( (font)->known_missing[(Char)(ch)] > [all...] |
| /xsrc/external/mit/xkeyboard-config/dist/symbols/macintosh_vndr/ |
| H A D | Makefile.am | 4 apple ch de dk \ data in directory:symbols
|
| /xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/nouveau/ |
| H A D | nouveau_debug.h | 21 #define NOUVEAU_DBG(ch, args...) \ 22 if ((NOUVEAU_DEBUG) & (NOUVEAU_DEBUG_##ch)) \
|
| /xsrc/external/mit/MesaLib/dist/src/gallium/drivers/nouveau/ |
| H A D | nouveau_debug.h | 21 #define NOUVEAU_DBG(ch, args...) \ 22 if ((NOUVEAU_DEBUG) & (NOUVEAU_DEBUG_##ch)) \
|