Searched refs:ch2 (Results 1 - 23 of 23) sorted by relevance

/openbsd-current/usr.bin/cmp/
H A Dspecial.c45 int ch1, ch2; local
65 ch2 = getc(fp2);
66 if (ch1 == EOF || ch2 == EOF)
68 if (ch1 != ch2) {
72 ch1, ch2);
/openbsd-current/gnu/usr.bin/binutils/gas/
H A Dapp.c347 register int ch, ch2 = 0; local
821 ch2 = GET ();
822 UNGET (ch2);
823 if (!IS_WHITESPACE (ch2))
922 ch2 = GET ();
923 if (ch2 == '*')
929 ch2 = GET ();
930 if (ch2 != EOF && IS_NEWLINE (ch2))
933 while (ch2 !
[all...]
/openbsd-current/lib/libcurses/tinfo/
H A Dcaptoinfo.c543 char ch1, ch2; local
545 if (sscanf(str, fmt, &ch1, &ch2) == 2
547 && isdigit(UChar(ch2))
548 && (ch1 == ch2)) {
554 _nc_SPRINTF(buffer, _nc_SLIMIT(sizeof(buffer)) fmt, ch1, ch2);
627 char ch1 = 0, ch2 = 0; local
836 } else if (sscanf(str, "%%?%%{%d}%%>%%t%%'%c'%%+%%;", &c1, &ch2) == 2) {
838 bufptr = save_tc_inequality(bufptr, c1, ch2);
842 } else if (sscanf(str, "%%?%%'%c'%%>%%t%%'%c'%%+%%;", &ch1, &ch2) == 2) {
844 bufptr = save_tc_inequality(bufptr, ch1, ch2);
[all...]
/openbsd-current/gnu/usr.bin/binutils/gdb/testsuite/gdb.base/
H A Dcall-rt-st.c75 char ch2; member in struct:bit_flags_combo_t
98 char ch2; member in struct:three_char_t
106 char ch2; member in struct:five_char_t
268 * IN char ch2
280 char ch2,
284 void init_bit_flags_combo (bit_flags_combo, a, b, ch1, g, d, ch2, e, o)
291 char ch2;
302 bit_flags_combo->ch2 = ch2;
371 three_char->ch2
273 init_bit_flags_combo( struct bit_flags_combo_t *bit_flags_combo, unsigned a, unsigned b, char ch1, unsigned g, unsigned d, char ch2, unsigned e, unsigned o) argument
[all...]
H A Dcall-ar-st.c89 char ch2; member in struct:bit_flags_combo_t
111 char ch2; member in struct:two_char_t
118 char ch2; member in struct:three_char_t
126 char ch2; member in struct:five_char_t
396 * IN char ch2
401 void init_bit_flags_combo (struct bit_flags_combo_t *bit_flags_combo, unsigned a, unsigned b, char ch1, unsigned g, unsigned d, char ch2, unsigned e, unsigned o) argument
403 void init_bit_flags_combo ( bit_flags_combo, a, b, ch1, g, d, ch2, e, o )
410 char ch2;
421 bit_flags_combo->ch2 = ch2;
[all...]
/openbsd-current/gnu/usr.bin/binutils/gdb/gdbserver/
H A Dgdbreplay.c183 int ch2; local
220 ch2 = fgetc (fp);
221 fputc (ch2, stdout);
223 ch = tohex (ch2) << 4;
224 ch2 = fgetc (fp);
225 fputc (ch2, stdout);
227 ch |= tohex (ch2);
/openbsd-current/gnu/lib/libreadline/
H A Dutil.c269 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-current/gnu/llvm/llvm/lib/Support/
H A DConvertUTF.cpp215 UTF32 ch, ch2; local
223 ch2 = *source;
225 if (ch2 >= UNI_SUR_LOW_START && ch2 <= UNI_SUR_LOW_END) {
227 + (ch2 - UNI_SUR_LOW_START) + halfBase;
257 fprintf(stderr, "ConvertUTF16toUTF32 illegal seq 0x%04x,%04x\n", ch, ch2);
280 UTF32 ch2 = *source; local
282 if (ch2 >= UNI_SUR_LOW_START && ch2 <= UNI_SUR_LOW_END) {
284 + (ch2
[all...]
/openbsd-current/sys/arch/hppa/dev/
H A Dmongoosereg.h78 u_int8_t ch2; member in struct:mongoose_ctrl::__anon8354
/openbsd-current/sys/dev/pci/drm/i915/display/
H A Ddvo_tfp410.c159 u8 ch1, ch2; local
162 tfp410_readb(dvo, addr+1, &ch2))
163 return ((ch2 << 8) & 0xFF00) | (ch1 & 0x00FF);
/openbsd-current/usr.bin/patch/
H A Dpatch.c811 int ch1, ch2; local
838 ch2 = j <= pat_end ? pch_char(j) : -1;
842 } else if (ch1 == ' ' && ch2 == ' ') {
846 } else if (ch1 == '!' && ch2 == '!') {
852 while (j <= pat_end && ch2 == '!') {
855 ch2 = j <= pat_end ? pch_char(j) : -1;
859 } else if (ch2 == '+' || ch2 == ' ') {
860 rej_line(ch2, j);
866 rej_line(ch2,
[all...]
/openbsd-current/gnu/usr.bin/binutils/opcodes/
H A Diq2000-asm.c72 int ch1, ch2;
85 ch2 = (*strp)[2];
86 if (('1' <= ch1 && ch1 <= '2') && ('0' <= ch2 && ch2 <= '9'))
88 if ('3' == ch1 && (ch2 == '0' || ch2 == '1'))
71 int ch1, ch2; local
/openbsd-current/gnu/usr.bin/binutils-2.17/opcodes/
H A Diq2000-asm.c72 int ch1, ch2;
86 ch2 = (*strp)[2];
87 if (('1' <= ch1 && ch1 <= '2') && ('0' <= ch2 && ch2 <= '9'))
89 if ('3' == ch1 && (ch2 == '0' || ch2 == '1'))
71 int ch1, ch2; local
/openbsd-current/gnu/lib/libiberty/src/
H A Dgetopt.c295 # define SWAP_FLAGS(ch1, ch2) \
299 __getopt_nonoption_flags[ch1] = __getopt_nonoption_flags[ch2]; \
300 __getopt_nonoption_flags[ch2] = __tmp; \
303 # define SWAP_FLAGS(ch1, ch2)
/openbsd-current/gnu/gcc/gcc/
H A Dcollect2.c2099 int ch, ch2;
2115 for (end = p; (ch2 = *end) != '\0' && !ISSPACE (ch2) && ch2 != '|';
2254 int ch2;
2268 (ch2 = *end) != '\0' && ch2 != '\n' && !ISSPACE (ch2) && ch2 != '|';
2083 int ch, ch2; local
2238 int ch2; local
H A Dmips-tfile.c2873 int ch2;
2875 if (arg_end_p1 != arg_start || ((ch2 = *arg_end_p1) != ';') || ch2 != ',')
2929 int ch2;
2931 if (arg_end_p1 != arg_start || ((ch2 = *arg_end_p1) != ';') || ch2 != ',')
3003 int ch2;
3005 if (arg_end_p1 != arg_start || ((ch2 = *arg_end_p1) != ';') || ch2 != ',')
2844 int ch2; local
2900 int ch2; local
2974 int ch2; local
/openbsd-current/gnu/usr.bin/binutils-2.17/gas/
H A Dapp.c347 register int ch, ch2 = 0; local
849 ch2 = GET ();
850 UNGET (ch2);
851 if (!IS_WHITESPACE (ch2))
950 ch2 = GET ();
951 if (ch2 == '*')
957 ch2 = GET ();
958 if (ch2 != EOF && IS_NEWLINE (ch2))
961 while (ch2 !
[all...]
/openbsd-current/gnu/llvm/lldb/tools/debugserver/source/
H A DJSON.cpp445 const char ch2 = GetChar(); local
446 switch (ch2) {
471 return ch2;
/openbsd-current/gnu/usr.bin/texinfo/lib/
H A Dgetopt.c151 # define SWAP_FLAGS(ch1, ch2) \
155 __getopt_nonoption_flags[ch1] = __getopt_nonoption_flags[ch2]; \
156 __getopt_nonoption_flags[ch2] = __tmp; \
159 # define SWAP_FLAGS(ch1, ch2)
162 # define SWAP_FLAGS(ch1, ch2)
/openbsd-current/gnu/usr.bin/gcc/gcc/
H A Dcollect2.c2206 int ch, ch2;
2222 for (end = p; (ch2 = *end) != '\0' && !ISSPACE (ch2) && ch2 != '|';
2647 int ch2;
2661 (ch2 = *end) != '\0' && ch2 != '\n' && !ISSPACE (ch2) && ch2 != '|';
2189 int ch, ch2; local
2630 int ch2; local
H A Dmips-tfile.c2977 int ch2;
2979 if (arg_end_p1 != arg_start || (ch2 = *arg_end_p1 != ';') || ch2 != ',')
3033 int ch2;
3035 if (arg_end_p1 != arg_start || (ch2 = *arg_end_p1 != ';') || ch2 != ',')
3107 int ch2;
3109 if (arg_end_p1 != arg_start || (ch2 = *arg_end_p1 != ';') || ch2 != ',')
2949 int ch2; local
3005 int ch2; local
3079 int ch2; local
/openbsd-current/usr.bin/dc/
H A Dbcode.c802 int idx, ch1, ch2; local
807 ch2 = readch();
808 if (ch1 == EOF || ch2 == EOF) {
812 idx = (ch1 << 8) + ch2 + UCHAR_MAX + 1;
/openbsd-current/gnu/llvm/lldb/source/Core/
H A DIOHandlerCursesGUI.cpp4341 int ch2 = m_window_sp->GetChar(); local
4342 if (ch2 == 'O') {
4358 escape_chars.push_back(ch2);
4363 } else if (ch2 != -1)
4364 escape_chars.push_back(ch2);

Completed in 500 milliseconds