| /openbsd-src/gnu/usr.bin/binutils-2.17/gas/ |
| H A D | app.c | 347 register int ch, ch2 = 0; in do_scrub_chars() local 849 ch2 = GET (); in do_scrub_chars() 850 UNGET (ch2); in do_scrub_chars() 851 if (!IS_WHITESPACE (ch2)) in do_scrub_chars() 950 ch2 = GET (); in do_scrub_chars() 951 if (ch2 == '*') in do_scrub_chars() 957 ch2 = GET (); in do_scrub_chars() 958 if (ch2 != EOF && IS_NEWLINE (ch2)) in do_scrub_chars() 961 while (ch2 != EOF && ch2 != '*'); in do_scrub_chars() 963 while (ch2 == '*') in do_scrub_chars() [all …]
|
| /openbsd-src/gnu/usr.bin/binutils/gas/ |
| H A D | app.c | 347 register int ch, ch2 = 0; in do_scrub_chars() local 821 ch2 = GET (); in do_scrub_chars() 822 UNGET (ch2); in do_scrub_chars() 823 if (!IS_WHITESPACE (ch2)) in do_scrub_chars() 922 ch2 = GET (); in do_scrub_chars() 923 if (ch2 == '*') in do_scrub_chars() 929 ch2 = GET (); in do_scrub_chars() 930 if (ch2 != EOF && IS_NEWLINE (ch2)) in do_scrub_chars() 933 while (ch2 != EOF && ch2 != '*'); in do_scrub_chars() 935 while (ch2 == '*') in do_scrub_chars() [all …]
|
| /openbsd-src/lib/libcurses/tinfo/ |
| H A D | captoinfo.c | 543 char ch1, ch2; in bcd_expression() local 545 if (sscanf(str, fmt, &ch1, &ch2) == 2 in bcd_expression() 547 && isdigit(UChar(ch2)) in bcd_expression() 548 && (ch1 == ch2)) { in bcd_expression() 554 _nc_SPRINTF(buffer, _nc_SLIMIT(sizeof(buffer)) fmt, ch1, ch2); in bcd_expression() 627 char ch1 = 0, ch2 = 0; in _nc_infotocap() local 836 } else if (sscanf(str, "%%?%%{%d}%%>%%t%%'%c'%%+%%;", &c1, &ch2) == 2) { in _nc_infotocap() 838 bufptr = save_tc_inequality(bufptr, c1, ch2); in _nc_infotocap() 842 } else if (sscanf(str, "%%?%%'%c'%%>%%t%%'%c'%%+%%;", &ch1, &ch2) == 2) { in _nc_infotocap() 844 bufptr = save_tc_inequality(bufptr, ch1, ch2); in _nc_infotocap() [all …]
|
| /openbsd-src/usr.bin/cmp/ |
| H A D | special.c | 45 int ch1, ch2; in c_special() local 65 ch2 = getc(fp2); in c_special() 66 if (ch1 == EOF || ch2 == EOF) in c_special() 68 if (ch1 != ch2) { in c_special() 72 ch1, ch2); in c_special()
|
| /openbsd-src/gnu/usr.bin/binutils/gdb/gdbserver/ |
| H A D | gdbreplay.c | 183 int ch2; in logchar() local 220 ch2 = fgetc (fp); in logchar() 221 fputc (ch2, stdout); in logchar() 223 ch = tohex (ch2) << 4; in logchar() 224 ch2 = fgetc (fp); in logchar() 225 fputc (ch2, stdout); in logchar() 227 ch |= tohex (ch2); in logchar()
|
| /openbsd-src/gnu/usr.bin/binutils/gdb/testsuite/gdb.base/ |
| H A D | call-rt-st.c | 75 char ch2; member 98 char ch2; member 106 char ch2; member 280 char ch2, in init_bit_flags_combo() argument 284 void init_bit_flags_combo (bit_flags_combo, a, b, ch1, g, d, ch2, e, o) in init_bit_flags_combo() 291 char ch2; 302 bit_flags_combo->ch2 = ch2; 371 three_char->ch2 = init_val2; 404 five_char->ch2 = init_val2; 537 printf("ch1: %c\tch2: %c\n", bit_flags_combo.ch1, bit_flags_combo.ch2); [all …]
|
| H A D | call-ar-st.c | 89 char ch2; member 111 char ch2; member 118 char ch2; member 126 char ch2; member 401 …lags_combo, unsigned a, unsigned b, char ch1, unsigned g, unsigned d, char ch2, unsigned e, unsign… in init_bit_flags_combo() argument 403 void init_bit_flags_combo ( bit_flags_combo, a, b, ch1, g, d, ch2, e, o ) in init_bit_flags_combo() 410 char ch2; 421 bit_flags_combo->ch2 = ch2; 480 two_char->ch2 = init_val2; 502 three_char->ch2 = init_val2; [all …]
|
| /openbsd-src/gnu/lib/libreadline/ |
| H A D | util.c | 269 register char ch1, ch2; local 274 ch2 = *string2++; 275 if (_rl_to_upper(ch1) == _rl_to_upper(ch2)) 288 register char ch1, ch2; local 293 ch2 = *string2++; 294 if (_rl_to_upper(ch1) != _rl_to_upper(ch2))
|
| /openbsd-src/gnu/llvm/llvm/lib/Support/ |
| H A D | ConvertUTF.cpp | 215 UTF32 ch, ch2; in ConvertUTF16toUTF32() local 223 ch2 = *source; in ConvertUTF16toUTF32() 225 if (ch2 >= UNI_SUR_LOW_START && ch2 <= UNI_SUR_LOW_END) { in ConvertUTF16toUTF32() 227 + (ch2 - UNI_SUR_LOW_START) + halfBase; in ConvertUTF16toUTF32() 257 fprintf(stderr, "ConvertUTF16toUTF32 illegal seq 0x%04x,%04x\n", ch, ch2); in ConvertUTF16toUTF32() 280 UTF32 ch2 = *source; in ConvertUTF16toUTF8() local 282 if (ch2 >= UNI_SUR_LOW_START && ch2 <= UNI_SUR_LOW_END) { in ConvertUTF16toUTF8() 284 + (ch2 - UNI_SUR_LOW_START) + halfBase; in ConvertUTF16toUTF8()
|
| /openbsd-src/usr.bin/patch/ |
| H A D | patch.c | 821 int ch1, ch2; in abort_hunk() 848 ch2 = j <= pat_end ? pch_char(j) : -1; in abort_hunk() 852 } else if (ch1 == ' ' && ch2 == ' ') { in abort_hunk() 856 } else if (ch1 == '!' && ch2 == '!') { in abort_hunk() 862 while (j <= pat_end && ch2 == '!') { in abort_hunk() 865 ch2 = j <= pat_end ? pch_char(j) : -1; in abort_hunk() 869 } else if (ch2 == '+' || ch2 == ' ') { in abort_hunk() 870 rej_line(ch2, j); in abort_hunk() 876 rej_line(ch2, in apply_hunk() 811 int ch1, ch2; abort_hunk() local [all...] |
| /openbsd-src/gnu/usr.bin/binutils-2.17/cpu/ |
| H A D | iq2000.opc | 75 int ch1, ch2; 89 ch2 = (*strp)[2]; 90 if (('1' <= ch1 && ch1 <= '2') && ('0' <= ch2 && ch2 <= '9')) 92 if ('3' == ch1 && (ch2 == '0' || ch2 == '1'))
|
| /openbsd-src/gnu/usr.bin/binutils-2.17/opcodes/ |
| H A D | iq2000-asm.c | 71 int ch1, ch2; in iq2000_cgen_isa_register() local 85 ch2 = (*strp)[2]; in iq2000_cgen_isa_register() 86 if (('1' <= ch1 && ch1 <= '2') && ('0' <= ch2 && ch2 <= '9')) in iq2000_cgen_isa_register() 88 if ('3' == ch1 && (ch2 == '0' || ch2 == '1')) in iq2000_cgen_isa_register()
|
| /openbsd-src/gnu/usr.bin/binutils/opcodes/ |
| H A D | iq2000-asm.c | 71 int ch1, ch2; local 84 ch2 = (*strp)[2]; 85 if (('1' <= ch1 && ch1 <= '2') && ('0' <= ch2 && ch2 <= '9')) 87 if ('3' == ch1 && (ch2 == '0' || ch2 == '1'))
|
| /openbsd-src/gnu/usr.bin/binutils/cpu/ |
| H A D | iq2000.opc | 78 int ch1, ch2; 91 ch2 = (*strp)[2]; 92 if (('1' <= ch1 && ch1 <= '2') && ('0' <= ch2 && ch2 <= '9')) 94 if ('3' == ch1 && (ch2 == '0' || ch2 == '1'))
|
| /openbsd-src/sys/dev/pci/drm/i915/display/ |
| H A D | dvo_tfp410.c | 159 u8 ch1, ch2; in tfp410_getid() local 162 tfp410_readb(dvo, addr+1, &ch2)) in tfp410_getid() 163 return ((ch2 << 8) & 0xFF00) | (ch1 & 0x00FF); in tfp410_getid()
|
| /openbsd-src/gnu/lib/libiberty/src/ |
| H A D | getopt.c | 292 # define SWAP_FLAGS(ch1, ch2) \ argument 296 __getopt_nonoption_flags[ch1] = __getopt_nonoption_flags[ch2]; \ 297 __getopt_nonoption_flags[ch2] = __tmp; \ 300 # define SWAP_FLAGS(ch1, ch2) argument
|
| /openbsd-src/gnu/usr.bin/texinfo/lib/ |
| H A D | getopt.c | 148 # define SWAP_FLAGS(ch1, ch2) \ argument 152 __getopt_nonoption_flags[ch1] = __getopt_nonoption_flags[ch2]; \ 153 __getopt_nonoption_flags[ch2] = __tmp; \ 156 # define SWAP_FLAGS(ch1, ch2) argument 159 # define SWAP_FLAGS(ch1, ch2) argument
|
| /openbsd-src/gnu/gcc/gcc/ |
| H A D | collect2.c | 2083 int ch, ch2; in scan_prog_file() local 2099 for (end = p; (ch2 = *end) != '\0' && !ISSPACE (ch2) && ch2 != '|'; in scan_prog_file() 2238 int ch2; in scan_libraries() local 2252 (ch2 = *end) != '\0' && ch2 != '\n' && !ISSPACE (ch2) && ch2 != '|'; in scan_libraries()
|
| H A D | mips-tfile.c | 2844 int ch2; in parse_def() local 2846 if (arg_end_p1 != arg_start || ((ch2 = *arg_end_p1) != ';') || ch2 != ',') in parse_def() 2900 int ch2; in parse_def() local 2902 if (arg_end_p1 != arg_start || ((ch2 = *arg_end_p1) != ';') || ch2 != ',') in parse_def() 2974 int ch2; in parse_def() local 2976 if (arg_end_p1 != arg_start || ((ch2 = *arg_end_p1) != ';') || ch2 != ',') in parse_def()
|
| /openbsd-src/gnu/llvm/lldb/tools/debugserver/source/ |
| H A D | JSON.cpp | 445 const char ch2 = GetChar(); in GetEscapedChar() local 446 switch (ch2) { in GetEscapedChar() 471 return ch2; in GetEscapedChar()
|
| /openbsd-src/sys/arch/hppa/dev/ |
| H A D | mongoosereg.h | 78 u_int8_t ch2; member
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/ |
| H A D | collect2.c | 2189 int ch, ch2; local 2205 for (end = p; (ch2 = *end) != '\0' && !ISSPACE (ch2) && ch2 != '|'; 2630 int ch2; local 2644 (ch2 = *end) != '\0' && ch2 != '\n' && !ISSPACE (ch2) && ch2 != '|';
|
| H A D | mips-tfile.c | 2949 int ch2; local 2951 if (arg_end_p1 != arg_start || (ch2 = *arg_end_p1 != ';') || ch2 != ',') 3005 int ch2; local 3007 if (arg_end_p1 != arg_start || (ch2 = *arg_end_p1 != ';') || ch2 != ',') 3079 int ch2; local 3081 if (arg_end_p1 != arg_start || (ch2 = *arg_end_p1 != ';') || ch2 != ',')
|
| /openbsd-src/usr.bin/dc/ |
| H A D | bcode.c | 802 int idx, ch1, ch2; in readreg() local 807 ch2 = readch(); in readreg() 808 if (ch1 == EOF || ch2 == EOF) { in readreg() 812 idx = (ch1 << 8) + ch2 + UCHAR_MAX + 1; in readreg()
|
| /openbsd-src/gnu/llvm/lldb/source/Core/ |
| H A D | IOHandlerCursesGUI.cpp | 4341 int ch2 = m_window_sp->GetChar(); in Run() local 4342 if (ch2 == 'O') { in Run() 4358 escape_chars.push_back(ch2); in Run() 4363 } else if (ch2 != -1) in Run() 4364 escape_chars.push_back(ch2); in Run()
|