Searched refs:ch (Results 176 - 200 of 1760) sorted by relevance

1234567891011>>

/netbsd-6-1-5-RELEASE/external/bsd/ntp/dist/sntp/libopts/
H A Dtokenize.c52 ch_t ch = *(pSrc++); local
53 switch (ch) {
57 pSrc += ao_string_cook_escape_char((char*)(intptr_t)pSrc, (char*)(intptr_t)&ch, 0x7F);
58 if (ch == 0x7F)
63 *(pDest++) = ch;
80 ch_t ch = *(pSrc++); local
81 switch (ch) {
101 ch = '\'';
111 *(pDest++) = ch;
251 int ch local
[all...]
/netbsd-6-1-5-RELEASE/external/lgpl3/mpfr/dist/tests/
H A Dtsinh_cosh.c72 mpfr_t x, sh, ch; local
76 mpfr_init2 (ch, 123);
80 mpfr_sinh_cosh (sh, ch, x, MPFR_RNDN);
82 MPFR_ASSERTN (mpfr_nan_p (ch));
86 mpfr_sinh_cosh (sh, ch, x, MPFR_RNDN);
89 MPFR_ASSERTN (mpfr_inf_p (ch));
90 MPFR_ASSERTN (mpfr_sgn (ch) > 0);
94 mpfr_sinh_cosh (sh, ch, x, MPFR_RNDN);
97 MPFR_ASSERTN (mpfr_inf_p (ch));
98 MPFR_ASSERTN (mpfr_sgn (ch) >
[all...]
/netbsd-6-1-5-RELEASE/common/lib/libc/string/
H A Dstrchr.c51 strchr(const char *p, int ch)
53 const char cmp = ch;
H A Dstrrchr.c50 strrchr(const char *p, int ch)
53 const char c = ch;
/netbsd-6-1-5-RELEASE/external/bsd/ntp/dist/libopts/
H A Dputshell.c175 int ch = *(pz++); local
176 if (IS_LOWER_CASE_CHAR(ch)) fputc(toupper(ch), stdout);
177 else if (IS_UPPER_CASE_CHAR(ch)) fputc(ch, stdout);
178 else if (IS_PLUS_N_SPACE_CHAR(ch)) goto name_done;
179 else if (ch == NUL) { pz--; goto name_done; }
302 char ch = *(pzArg++); local
303 switch (ch) {
306 default: fputc( ch, stdou
[all...]
/netbsd-6-1-5-RELEASE/lib/csu/common_elf/
H A Dcommon.c42 _strrchr(char *p, int ch) argument
47 if (*p == ch)
/netbsd-6-1-5-RELEASE/sys/arch/m68k/
H A DMakefile.inc3 SM68K= ${SYSDIR}/arch/m68k/m68k/*.[ch] ${SYSDIR}/arch/m68k/include/*.h
/netbsd-6-1-5-RELEASE/external/ibm-public/postfix/dist/src/util/
H A Dattr_scan_plain.c177 int ch; local
180 while ((ch = VSTREAM_GETC(fp)) != '\n'
181 && (terminator == 0 || ch != terminator)) {
182 if (ch == VSTREAM_EOF) {
188 VSTRING_ADDCH(plain_buf, ch);
201 return (ch);
211 int ch; local
215 if ((ch = attr_scan_plain_string(fp, base64_buf, terminator, context)) < 0)
222 return (ch);
231 int ch; local
251 int ch; local
276 int ch; local
[all...]
H A Dreadlline.c75 int ch; local
89 while ((ch = VSTREAM_GETC(fp)) != VSTREAM_EOF && ch != '\n')
90 VSTRING_ADDCH(buf, ch);
91 if (ch == '\n' && lineno != 0)
99 if (ch == VSTREAM_EOF)
H A Dvalid_hostname.c87 int ch; local
101 for (cp = name; (ch = *(unsigned char *) cp) != 0; cp++) {
102 if (ISALNUM(ch) || ch == '_') { /* grr.. */
111 if (!ISDIGIT(ch))
113 } else if (ch == '.') {
120 } else if (ch == '-') {
130 else if (ch == ':' && valid_ipv6_hostaddr(name, DONT_GRIPE)) {
138 myname, ch, name);
192 int ch; local
[all...]
/netbsd-6-1-5-RELEASE/sys/lib/libkern/
H A Dlibkern.h115 isspace(int ch) argument
117 return (ch == ' ' || (ch >= '\t' && ch <= '\r'));
121 isascii(int ch) argument
123 return ((ch & ~0x7f) == 0);
127 isupper(int ch) argument
129 return (ch >= 'A' && ch <= 'Z');
133 islower(int ch) argument
139 isalpha(int ch) argument
145 isdigit(int ch) argument
151 isxdigit(int ch) argument
159 toupper(int ch) argument
167 tolower(int ch) argument
[all...]
/netbsd-6-1-5-RELEASE/sys/external/bsd/drm/dist/scripts/
H A Dcreate_lk_drm.sh23 cp shared-core/*.[ch] $OUTDIR/.tmp
24 cp linux-core/*.[ch] $OUTDIR/.tmp
34 rm via_ds.[ch]
35 rm sis_ds.[ch]
/netbsd-6-1-5-RELEASE/sys/arch/amd64/
H A DMakefile6 SAMD64= ${SYSDIR}/arch/amd64/amd64/*.[ch] \
8 ${SYSDIR}/external/isc/atheros_hal/dist/*.[ch] \
9 ${SYSDIR}/external/isc/atheros_hal/dist/*/*.[ch] \
10 ${SYSDIR}/external/isc/atheros_hal/ic/*.[ch]
11 SAMD64+= ${SYSDIR}/arch/x86/x86/*.[ch] \
12 ${SYSDIR}/arch/x86/acpi/*.[ch] \
14 ${SYSDIR}/arch/x86/isa/*.[ch] \
15 ${SYSDIR}/arch/x86/pci/*.[ch]
26 -find -H ${SYSDIR}/external/intel-public/acpica/dist/ -name '*.[ch]' | \
/netbsd-6-1-5-RELEASE/etc/etc.vax/
H A DMAKEDEV.conf124 0) ch=w ;;
131 0) ch=a ;;
132 1) ch=b ;;
133 2) ch=c ;;
134 3) ch=e ;;
135 4) ch=f ;;
142 0) ch=A ;;
143 1) ch=B ;;
144 2) ch=C ;;
145 3) ch
[all...]
/netbsd-6-1-5-RELEASE/bin/pax/
H A Dcpio.h108 #define SHRT_EXT(ch) ((((unsigned)(ch)[0])<<8) | (((unsigned)(ch)[1])&0xff))
109 #define RSHRT_EXT(ch) ((((unsigned)(ch)[1])<<8) | (((unsigned)(ch)[0])&0xff))
/netbsd-6-1-5-RELEASE/lib/libcurses/
H A Dline.c47 hline(chtype ch, int count) argument
49 return whline(stdscr, ch, count);
58 mvhline(int y, int x, chtype ch, int count) argument
60 return mvwhline(stdscr, y, x, ch, count);
69 mvwhline(WINDOW *win, int y, int x, chtype ch, int count) argument
74 return whline(win, ch, count);
84 whline(WINDOW *win, chtype ch, int count) argument
92 if (!(ch & __CHARTEXT))
93 ch |= ACS_HLINE;
95 mvwaddch(win, win->cury, ocurx + i, ch);
117 vline(chtype ch, int count) argument
127 mvvline(int y, int x, chtype ch, int count) argument
138 mvwvline(WINDOW *win, int y, int x, chtype ch, int count) argument
153 wvline(WINDOW *win, chtype ch, int count) argument
[all...]
/netbsd-6-1-5-RELEASE/games/random/
H A Drandom.c67 int ch, random_exit, selected, unbuffer_output; local
72 while ((ch = getopt(argc, argv, "er")) != -1)
73 switch (ch) {
127 while ((ch = getchar()) != EOF) {
129 (void)putchar(ch);
130 if (ch == '\n') {
/netbsd-6-1-5-RELEASE/external/gpl3/gdb/dist/gdb/tui/
H A Dtui-command.c48 tui_dispatch_ctrl_char (unsigned int ch) argument
53 if (ch == '\f')
60 return ch;
63 unsigned int c = 0, ch_copy = ch;
76 && key_is_start_sequence (ch))
88 return ch;
/netbsd-6-1-5-RELEASE/sys/arch/arc/
H A DMakefile11 SARC= ${SYSDIR}/arch/arc/arc/*.[ch] ${SYSDIR}/arch/arc/dev/*.[ch] \
12 ${SYSDIR}/arch/arc/dti/*.[ch] ${SYSDIR}/arch/arc/include/*.h \
13 ${SYSDIR}/arch/arc/isa/*.[ch] \
14 ${SYSDIR}/arch/arc/pci/*.[ch] ${SYSDIR}/arch/arc/jazz/*.[ch]
/netbsd-6-1-5-RELEASE/dist/dhcp/dst/
H A Dbase64.c211 int tarindex, state, ch; local
217 while ((ch = *src++) != '\0') {
218 if (isspace(ch)) /* Skip whitespace anywhere. */
221 if (ch == Pad64)
224 pos = strchr(Base64, ch);
278 if (ch == Pad64) { /* We got a pad char. */
279 ch = *src++; /* Skip it, get next. */
287 for ((void)NULL; ch != '\0'; ch = *src++)
288 if (!isspace(ch))
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/flex/dist/
H A Dccl.c40 ccl_contains (const int cclp, const int ch) argument
48 if (ccltbl[ind + i] == ch)
57 void ccladd (cclp, ch)
59 int ch;
63 check_char (ch);
71 if (ccltbl[ind + i] == ch)
75 if (ch == nlch)
90 ccltbl[newpos] = ch;
129 int d, ch; local
138 for ( ch
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/less/dist/
H A Dline.c141 is_ascii_char(ch)
142 LWCHAR ch;
144 return (ch <= 0x7F);
287 LWCHAR ch; local
292 ch = get_wchar(linebuf + from);
293 if (!is_composing_char(ch) && !is_combining_char(prev_ch, ch))
294 width = is_wide_char(ch) ? 2 : 1;
295 prev_ch = ch;
419 pwidth(ch,
487 LWCHAR ch = step_char(&p, -1, linebuf + lmargin); local
521 LWCHAR ch = step_char(&p, -1, linebuf); local
[all...]
/netbsd-6-1-5-RELEASE/external/bsd/libbind/dist/isc/
H A Dbase64.c208 int tarindex, state, ch; local
214 while ((ch = *src++) != '\0') {
215 if (isspace(ch)) /*%< Skip whitespace anywhere. */
218 if (ch == Pad64)
221 pos = strchr(Base64, ch);
275 if (ch == Pad64) { /*%< We got a pad char. */
276 ch = *src++; /*%< Skip it, get next. */
284 for ((void)NULL; ch != '\0'; ch = *src++)
285 if (!isspace(ch))
[all...]
/netbsd-6-1-5-RELEASE/lib/libc/net/
H A Dbase64.c222 int state, ch; local
231 while ((ch = (u_char) *src++) != '\0') {
232 if (isspace(ch)) /*%< Skip whitespace anywhere. */
235 if (ch == Pad64)
238 pos = strchr(Base64, ch);
294 if (ch == Pad64) { /*%< We got a pad char. */
295 ch = *src++; /*%< Skip it, get next. */
303 for (; ch != '\0'; ch = (u_char) *src++)
304 if (!isspace(ch))
[all...]
/netbsd-6-1-5-RELEASE/usr.bin/make/
H A Dstr.c143 int argc, ch; local
165 switch(ch = *p) {
169 if (inquote == ch)
175 inquote = (char) ch;
180 *t++ = ch;
191 *t++ = ch;
218 if (ch == '\n' || ch == '\0') {
235 ch = *++p;
239 switch (ch
[all...]

Completed in 219 milliseconds

1234567891011>>