Searched refs:ch (Results 226 - 250 of 1840) sorted by relevance

1234567891011>>

/macosx-10.10.1/Chess-310.6/sjeng/
H A Dbook.c51 int ch, i = 0, j = 0; local
90 while ((ch = getc(f_book)) != EOF) {
94 if (ch == '/') /* end comment */
101 if (ch == '\n') { /* end of book line */
112 else if (ch == '!')
124 else if (ch == '?')
136 else if (ch == '=')
141 else if ((ch == ' ') || (ch == '\t'))
146 else if (ch
[all...]
/macosx-10.10.1/Libc-1044.1.2/gen/FreeBSD/
H A Dreadpassphrase.c60 char ch, *p, *end; local
117 for (p = buf; (nr = _read(input, &ch, 1)) == 1 && ch != '\n' && ch != '\r';) {
120 ch &= 0x7f;
121 if (isalpha_l(ch, loc)) {
123 ch = tolower_l(ch, loc);
125 ch = toupper_l(ch, lo
[all...]
/macosx-10.10.1/OpenSSH-189/openssh/openbsd-compat/
H A Dreadpassphrase.c58 char ch, *p, *end; local
130 while ((nr = read(input, &ch, 1)) == 1 && ch != '\n' && ch != '\r') {
133 ch &= 0x7f;
134 if (isalpha(ch)) {
136 ch = (char)tolower(ch);
138 ch = (char)toupper(ch);
[all...]
/macosx-10.10.1/ncurses-44/ncurses/test/
H A Ddemo_defkey.c74 visichar(int ch) argument
78 ch = UChar(ch);
79 assert(ch >= 0 && ch < 256);
80 if (ch == '\\') {
82 } else if (ch == '\033') {
84 } else if (ch < ' ') {
85 sprintf(temp, "\\%03o", ch);
86 } else if (ch >
218 int ch; local
[all...]
H A Ddemo_altkeys.c86 int ch; local
125 while ((ch = getch()) != ERR) {
126 bool escaped = (ch >= MY_KEYS);
127 const char *name = keyname(escaped ? (ch - MY_KEYS) : ch);
145 ch,
150 if (ch == 'q')
H A Dtest_instr.c51 Quit(int ch) argument
53 return (ch == ERR || ch == 'q' || ch == QUIT || ch == ESCAPE);
76 int ch; local
112 while ((ch = fgetc(fp)) != EOF) {
113 if (waddch(txtwin, UChar(ch)) != OK) {
122 while (!Quit(ch = mvwgetch(txtwin, txt_y, txt_x))) {
123 switch (ch) {
[all...]
H A Dtest_inwstr.c53 Quit(int ch) argument
55 return (ch == ERR || ch == 'q' || ch == QUIT || ch == ESCAPE);
78 int ch; local
113 while ((ch = fgetc(fp)) != EOF) {
114 if (waddch(txtwin, UChar(ch)) != OK) {
123 while (!Quit(ch = mvwgetch(txtwin, txt_y, txt_x))) {
124 switch (ch) {
[all...]
/macosx-10.10.1/objc4-646/runtime/
H A Dobjc-layout.mm551 char ch;
559 while ((ch = *type) != '\"') {
561 if (!ch) return type;
585 char ch = *type;
587 if (ch == _C_UNDEF) {
590 } else if ((ch >= 'a' && ch <= 'z') || (ch >= 'A' && ch <= 'Z') || ch
[all...]
/macosx-10.10.1/tidy-15.15/tidy/src/
H A Dutf8.c175 uint ch = 0, n = 0; local
191 ch = firstByte; /* first byte is passed in separately */
193 if (ch <= 0x7F) /* 0XXX XXXX one byte */
195 n = ch;
198 else if ((ch & 0xE0) == 0xC0) /* 110X XXXX two bytes */
200 n = ch & 31;
203 else if ((ch & 0xF0) == 0xE0) /* 1110 XXXX three bytes */
205 n = ch & 15;
208 else if ((ch & 0xF8) == 0xF0) /* 1111 0XXX four bytes */
210 n = ch
[all...]
/macosx-10.10.1/groff-38/groff/src/preproc/html/
H A Dpushback.h45 char putPB (char ch);
/macosx-10.10.1/ncurses-44/ncurses/ncurses/tinfo/
H A Dadd_tries.c44 #define SET_TRY(dst,src) if ((dst->ch = *src++) == 128) dst->ch = '\0'
63 while (!CMP_TRY(ptr->ch, cmp)
67 if (CMP_TRY(ptr->ch, cmp)) {
/macosx-10.10.1/ntp-92/ntpd/
H A Dntp_scanner.h70 #define S_ST(ch, fb, match_n, other_n) ( \
71 (u_char)((ch) & 0xff) | \
128 int UNGETC(int ch, struct FILE_INFO *stream);
131 void push_back_char(int ch);
/macosx-10.10.1/shell_cmds-179/find/
H A Dmisc.c63 char ch, *p; local
66 for (p = *store; (ch = *orig) != '\0'; ++orig)
67 if (ch == '{' && orig[1] == '}') {
75 *p++ = ch;
/macosx-10.10.1/tcl-105/tcl_ext/tcllib/tcllib/modules/page/plugins/
H A Dreader_lemon.tcl152 set ch [page_read 1]
154 if {$ch eq ""} {return {}}
156 set tok [list $ch {} $cline $ccol]
158 if {$ch eq "\n"} {
/macosx-10.10.1/ICU-531.30/icuSources/samples/numfmt/
H A Dutil.cpp49 UChar ch = source[i]; local
50 if (ch < 0x09 || (ch > 0x0D && ch < 0x20) || ch > 0x7E) {
52 appendHex(ch, 4, target);
54 target += ch;
/macosx-10.10.1/JavaScriptCore-7600.1.17/tests/exceptionFuzz/
H A Ddate-format-xparb.js33 var ch = '';
35 ch = format.charAt(i);
36 if (!special && ch == "\\") {
41 code += "'" + String.escape(ch) + "' + ";
44 code += Date.getFormatCode(ch);
136 var ch = '';
138 ch = format.charAt(i);
139 if (!special && ch == "\\") {
144 regex += String.escape(ch);
147 obj = Date.formatCodeToRegex(ch, currentGrou
[all...]
/macosx-10.10.1/Libc-1044.1.2/net/
H A Dinet_pton.c158 int saw_digit, octets, ch; local
164 while ((ch = *src++) != '\0') {
167 if ((pch = strchr(digits, ch)) != NULL) {
178 } else if (ch == '.' && saw_digit) {
213 int ch, saw_xdigit; local
226 while ((ch = *src++) != '\0') {
229 if ((pch = strchr((xdigits = xdigits_l), ch)) == NULL)
230 pch = strchr((xdigits = xdigits_u), ch);
239 if (ch == ':') {
257 if (ch
[all...]
/macosx-10.10.1/OpenSSL098-52/src/crypto/bio/
H A Db_dump.c83 unsigned char ch; local
120 ch=((unsigned char)*(s+i*dump_width+j)) & 0xff;
121 BIO_snprintf(tmp,sizeof tmp,"%02x%c",ch,
131 ch=((unsigned char)*(s+i*dump_width+j)) & 0xff;
134 ((ch>=' ')&&(ch<='~'))?ch:'.');
137 ((ch>=os_toascii[' '])&&(ch<=os_toascii['~']))
138 ? os_toebcdic[ch]
[all...]
/macosx-10.10.1/emacs-93/emacs/lib-src/
H A Dsorted-doc.c155 register int ch = getchar ();
161 if (ch == MARKER)
181 dp->type = ch;
182 ch = getchar ();
204 if (ch != MARKER && ch != '\n' && ch != EOF)
206 *bp++ = ch;
219 state = (ch == MARKER) ? BEG_NAME : BEG_DESC;
222 if (ch
154 register int ch = getchar (); local
[all...]
/macosx-10.10.1/ncurses-44/ncurses/ncurses/base/
H A Dlib_box.c49 _my_render(WINDOW *win, chtype ch) argument
52 SetChar2(wch, ch);
56 #define RENDER_WITH_DEFAULT(ch,def) w ## ch = _my_render(win, (ch == 0) ? def : ch)
58 #define RENDER_WITH_DEFAULT(ch,def) w ## ch = _nc_render(win, (ch == 0) ? def : ch)
[all...]
/macosx-10.10.1/tcl-105/tcl_ext/tcllib/tcllib/modules/pt/rde_critcl/
H A Dtc.c69 char* ch;
74 len = strlen (ch);
101 ch = string;
102 while (ch < (string + len)) {
106 clen = Tcl_UtfToUniChar (ch, &uni);
109 ch += clen;
116 rde_tc_get (RDE_TC tc, int at, char** ch, long int* len)
137 *ch = tc->str + off;
142 rde_tc_get_s (RDE_TC tc, int at, int last, char** ch, long int* len)
164 *ch
68 char* ch; local
115 rde_tc_get(RDE_TC tc, int at, char** ch, long int* len) argument
141 rde_tc_get_s(RDE_TC tc, int at, int last, char** ch, long int* len) argument
[all...]
/macosx-10.10.1/Security-57031.1.35/SecurityTool/
H A Dreadline.c54 int ch; local
65 ch = getchar();
66 if (ch == EOF)
72 if (ch == '\n')
74 buffer[ix] = ch;
/macosx-10.10.1/remote_cmds-47/stdhosts.tproj/
H A Dstdhosts.c84 int ch; local
91 while ((ch = getc(fp)) != EOF &&
92 isascii(ch) && isspace(ch))
94 (void) ungetc(ch, fp);
/macosx-10.10.1/security_systemkeychain-55202/src/
H A Dreadline.c54 int ch; local
65 ch = getchar();
66 if (ch == EOF)
72 if (ch == '\n')
74 buffer[ix] = ch;
/macosx-10.10.1/WebInspectorUI-7600.1.17/UserInterface/Views/
H A DCodeMirrorAdditions.js134 var ch = null;
141 while ((ch = stream.next()) != null) {
142 if (ch == quote && !escaped) {
146 escaped = !escaped && ch === "\\";
147 if (!/[\s\u00a0]/.test(ch))
328 for (var i = startPosition.ch; i >= 0; --i) {
337 if (i === startPosition.ch) {
349 for (var i = startPosition.ch + 1; i < line.length; ++i) {
379 var from = {line: startPosition.line, ch: start};
380 var to = {line: startPosition.line, ch
[all...]

Completed in 172 milliseconds

1234567891011>>