Searched refs:ch1 (Results 1 - 25 of 32) sorted by relevance

12

/netbsd-6-1-5-RELEASE/usr.bin/cmp/
H A Dspecial.c52 int ch1, ch2; local
64 ch1 = getc(fp1);
65 if (ch1 == EOF)
67 if (ch1 == '\n')
79 ch1 = getc(fp1);
81 if (ch1 == EOF || ch2 == EOF)
83 if (ch1 != ch2) {
87 ch1, ch2);
92 if (ch1 == '\n')
/netbsd-6-1-5-RELEASE/external/gpl3/binutils/dist/cpu/
H A Diq2000.opc76 int ch1, ch2;
83 ch1 = (*strp)[1];
84 if ('0' <= ch1 && ch1 <= '9')
89 ch1 = (*strp)[1];
91 if (('1' <= ch1 && ch1 <= '2') && ('0' <= ch2 && ch2 <= '9'))
93 if ('3' == ch1 && (ch2 == '0' || ch2 == '1'))
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/gdb/testsuite/gdb.base/
H A Dcall-rt-st.c72 char ch1; member in struct:bit_flags_combo_t
97 char ch1; member in struct:three_char_t
105 char ch1; member in struct:five_char_t
116 char ch1; member in struct:int_char_combo_t
265 * IN char ch1
277 char ch1,
284 void init_bit_flags_combo (bit_flags_combo, a, b, ch1, g, d, ch2, e, o)
288 char ch1;
299 bit_flags_combo->ch1 = ch1;
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.c86 char ch1; member in struct:bit_flags_combo_t
110 char ch1; member in struct:two_char_t
117 char ch1; member in struct:three_char_t
125 char ch1; member in struct:five_char_t
136 char ch1; member in struct:int_char_combo_t
393 * IN char ch1
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 )
407 char ch1;
418 bit_flags_combo->ch1
[all...]
/netbsd-6-1-5-RELEASE/sys/arch/amiga/dev/
H A Daucc.c1042 u_char *ch1; local
1045 ch1 = dmap[1];
1048 *ch1++ = *p++;
1056 u_char *ch1; local
1060 ch1 = dmap[1];
1064 *ch1++ = *p++;
1073 u_char *ch1; local
1078 ch1 = dmap[1];
1083 *ch1++ = *p++;
1103 u_char *ch1; local
1117 u_char *ch1; local
1134 u_char *ch1; local
1165 u_char *ch1; local
1179 u_char *ch1; local
1196 u_char *ch1; local
1233 u_char *ch1; local
1253 u_char *ch1; local
1270 u_char *ch1; local
1305 u_char *ch1; local
1325 u_char *ch1; local
1342 u_char *ch1; local
[all...]
/netbsd-6-1-5-RELEASE/external/ibm-public/postfix/dist/src/util/
H A Dbase64_code.c108 unsigned int ch1; local
137 || (ch1 = un_b64[*cp++]) == INVALID)
139 VSTRING_ADDCH(result, ch0 << 2 | ch1 >> 4);
144 VSTRING_ADDCH(result, ch1 << 4 | ch2 >> 2);
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/readline/
H A Dutil.c286 register char ch1, ch2; local
290 ch1 = *string1++;
292 if (_rl_to_upper(ch1) == _rl_to_upper(ch2))
305 register char ch1, ch2; local
309 ch1 = *string1++;
311 if (_rl_to_upper(ch1) != _rl_to_upper(ch2))
/netbsd-6-1-5-RELEASE/usr.bin/patch/
H A Dpatch.c749 int ch1, ch2; local
775 ch1 = i < split ? pch_char(i) : -1;
777 if (ch1 == '-') {
780 } else if (ch1 == ' ' && ch2 == ' ') {
784 } else if (ch1 == '!' && ch2 == '!') {
785 while (i < split && ch1 == '!') {
788 ch1 = i < split ? pch_char(i) : -1;
795 } else if (ch1 == '*') {
803 rej_line(ch1, i);
/netbsd-6-1-5-RELEASE/external/gpl3/binutils/dist/opcodes/
H A Diq2000-asm.c73 int ch1, ch2;
80 ch1 = (*strp)[1];
81 if ('0' <= ch1 && ch1 <= '9')
86 ch1 = (*strp)[1];
88 if (('1' <= ch1 && ch1 <= '2') && ('0' <= ch2 && ch2 <= '9'))
90 if ('3' == ch1 && (ch2 == '0' || ch2 == '1'))
72 int ch1, ch2; local
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/opcodes/
H A Diq2000-asm.c73 int ch1, ch2;
80 ch1 = (*strp)[1];
81 if ('0' <= ch1 && ch1 <= '9')
86 ch1 = (*strp)[1];
88 if (('1' <= ch1 && ch1 <= '2') && ('0' <= ch2 && ch2 <= '9'))
90 if ('3' == ch1 && (ch2 == '0' || ch2 == '1'))
72 int ch1, ch2; local
/netbsd-6-1-5-RELEASE/gnu/dist/diffutils/lib/
H A Dgetopt.c288 # define SWAP_FLAGS(ch1, ch2) \
291 char __tmp = __getopt_nonoption_flags[ch1]; \
292 __getopt_nonoption_flags[ch1] = __getopt_nonoption_flags[ch2]; \
296 # define SWAP_FLAGS(ch1, ch2)
299 # define SWAP_FLAGS(ch1, ch2)
/netbsd-6-1-5-RELEASE/external/gpl3/binutils/dist/libiberty/
H A Dgetopt.c295 # define SWAP_FLAGS(ch1, ch2) \
298 char __tmp = __getopt_nonoption_flags[ch1]; \
299 __getopt_nonoption_flags[ch1] = __getopt_nonoption_flags[ch2]; \
303 # define SWAP_FLAGS(ch1, ch2)
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/libiberty/
H A Dgetopt.c295 # define SWAP_FLAGS(ch1, ch2) \
298 char __tmp = __getopt_nonoption_flags[ch1]; \
299 __getopt_nonoption_flags[ch1] = __getopt_nonoption_flags[ch2]; \
303 # define SWAP_FLAGS(ch1, ch2)
/netbsd-6-1-5-RELEASE/gnu/dist/gcc4/libiberty/
H A Dgetopt.c295 # define SWAP_FLAGS(ch1, ch2) \
298 char __tmp = __getopt_nonoption_flags[ch1]; \
299 __getopt_nonoption_flags[ch1] = __getopt_nonoption_flags[ch2]; \
303 # define SWAP_FLAGS(ch1, ch2)
/netbsd-6-1-5-RELEASE/gnu/dist/gmake/
H A Dgetopt.c281 # define SWAP_FLAGS(ch1, ch2) \
284 char __tmp = __getopt_nonoption_flags[ch1]; \
285 __getopt_nonoption_flags[ch1] = __getopt_nonoption_flags[ch2]; \
289 # define SWAP_FLAGS(ch1, ch2)
/netbsd-6-1-5-RELEASE/gnu/dist/grep/lib/
H A Dgetopt.c283 # define SWAP_FLAGS(ch1, ch2) \
286 char __tmp = __getopt_nonoption_flags[ch1]; \
287 __getopt_nonoption_flags[ch1] = __getopt_nonoption_flags[ch2]; \
291 # define SWAP_FLAGS(ch1, ch2)
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/libiberty/
H A Dgetopt.c295 # define SWAP_FLAGS(ch1, ch2) \
298 char __tmp = __getopt_nonoption_flags[ch1]; \
299 __getopt_nonoption_flags[ch1] = __getopt_nonoption_flags[ch2]; \
303 # define SWAP_FLAGS(ch1, ch2)
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/gcc/
H A Dtree-predcom.c273 struct chain *ch1, *ch2; member in struct:chain
413 (void *) chain->ch1, op_symbol_code (chain->op),
1423 tree e1 = get_init_expr (chain->ch1, index);
2270 combine_chains (chain_p ch1, chain_p ch2) argument
2280 if (ch1 == ch2)
2282 if (ch1->length != ch2->length)
2285 if (VEC_length (dref, ch1->refs) != VEC_length (dref, ch2->refs))
2288 for (i = 0; (VEC_iterate (dref, ch1->refs, i, r1)
2300 chain_p tmp = ch1;
2301 ch1
2346 chain_p ch1, ch2, cch; local
[all...]
/netbsd-6-1-5-RELEASE/external/gpl2/xcvs/dist/lib/
H A Dgetopt.c151 # define SWAP_FLAGS(ch1, ch2) \
154 char __tmp = __getopt_nonoption_flags[ch1]; \
155 __getopt_nonoption_flags[ch1] = __getopt_nonoption_flags[ch2]; \
159 # define SWAP_FLAGS(ch1, ch2)
162 # define SWAP_FLAGS(ch1, ch2)
/netbsd-6-1-5-RELEASE/gnu/dist/texinfo/lib/
H A Dgetopt.c153 # define SWAP_FLAGS(ch1, ch2) \
156 char __tmp = __getopt_nonoption_flags[ch1]; \
157 __getopt_nonoption_flags[ch1] = __getopt_nonoption_flags[ch2]; \
161 # define SWAP_FLAGS(ch1, ch2)
164 # define SWAP_FLAGS(ch1, ch2)
/netbsd-6-1-5-RELEASE/gnu/dist/groff/src/libs/libgroff/
H A Dgetopt.c153 # define SWAP_FLAGS(ch1, ch2) \
156 char __tmp = __getopt_nonoption_flags[ch1]; \
157 __getopt_nonoption_flags[ch1] = __getopt_nonoption_flags[ch2]; \
161 # define SWAP_FLAGS(ch1, ch2)
164 # define SWAP_FLAGS(ch1, ch2)
/netbsd-6-1-5-RELEASE/gnu/dist/gettext/gettext-tools/lib/
H A Dgetopt.c151 # define SWAP_FLAGS(ch1, ch2) \
154 char __tmp = __getopt_nonoption_flags[ch1]; \
155 __getopt_nonoption_flags[ch1] = __getopt_nonoption_flags[ch2]; \
159 # define SWAP_FLAGS(ch1, ch2)
162 # define SWAP_FLAGS(ch1, ch2)
/netbsd-6-1-5-RELEASE/bin/sh/
H A Deval.c237 evaltree(n->nbinary.ch1, flags & EV_TESTED);
243 evaltree(n->nbinary.ch1, EV_TESTED);
249 evaltree(n->nbinary.ch1, EV_TESTED);
326 evaltree(n->nbinary.ch1, EV_TESTED);
H A Djobs.c1251 cmdtxt(n->nbinary.ch1);
1256 cmdtxt(n->nbinary.ch1);
1261 cmdtxt(n->nbinary.ch1);
1298 cmdtxt(n->nbinary.ch1);
/netbsd-6-1-5-RELEASE/external/bsd/openldap/dist/libraries/liblunicode/ucdata/
H A Dapi.txt135 int uccomp(unsigned long ch1, unsigned long ch2, unsigned long *comp)

Completed in 461 milliseconds

12