Searched refs:ch (Results 451 - 475 of 1496) sorted by relevance

<<11121314151617181920>>

/freebsd-11-stable/usr.sbin/cron/cron/
H A Dcron.h120 #define MkLower(ch) (isupper(ch) ? tolower(ch) : ch)
121 #define MkUpper(ch) (islower(ch) ? toupper(ch) : ch)
/freebsd-11-stable/usr.bin/locate/locate/
H A Dlocate.c140 register int ch; local
148 while ((ch = getopt(argc, argv, "0Scd:il:ms")) != -1)
149 switch(ch) {
200 for (ch = 0; ch < UCHAR_MAX + 1; ch++)
201 myctype[ch] = tolower(ch);
/freebsd-11-stable/contrib/llvm-project/libcxx/include/
H A D__bsd_locale_defaults.h22 #define __libcpp_btowc_l(ch, loc) btowc_l(ch, loc)
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/
H A DDataBufferHeap.cpp17 // Initialize this class with "n" characters and fill the buffer with "ch".
18 DataBufferHeap::DataBufferHeap(lldb::offset_t n, uint8_t ch) : m_data() { argument
20 m_data.assign(n, ch);
/freebsd-11-stable/contrib/ntp/libparse/
H A Dclk_meinberg.c431 char ch,
437 parseprintf(DD_PARSE, ("mbg_input(0x%p, 0x%x, ...)\n", (void*)parseio, ch));
439 switch (ch)
445 parseio->parse_data[0] = ch;
451 if ((rtc = parse_addchar(parseio, ch)) == PARSE_INP_SKIP)
457 return parse_addchar(parseio, ch);
595 char ch,
605 parseprintf(DD_PARSE, ("gps_input(0x%p, 0x%x, ...)\n", (void*)parseio, ch));
612 switch (ch)
627 parseio->parse_data[0] = ch;
429 mbg_input( parse_t *parseio, char ch, timestamp_t *tstamp ) argument
593 gps_input( parse_t *parseio, char ch, timestamp_t *tstamp ) argument
[all...]
/freebsd-11-stable/bin/rm/
H A Drm.c87 int ch; local
113 while ((ch = getopt(argc, argv, "dfiIPRrvWx")) != -1)
114 switch(ch) {
492 int ch, first; local
527 first = ch = getchar();
528 while (ch != '\n' && ch != EOF)
529 ch = getchar();
559 int ch; local
595 first = ch
[all...]
/freebsd-11-stable/bin/ls/
H A Dutil.c186 unsigned char ch; local
216 ch = (unsigned char)s[i];
218 *bp++ = '0' + (ch >> 6);
219 *bp++ = '0' + ((ch >> 3) & 7);
220 *bp++ = '0' + (ch & 7);
/freebsd-11-stable/contrib/gcc/config/i386/
H A Di386-interix.h152 unsigned ch; \
154 for (; (ch = *_limited_str); _limited_str++) \
156 int escape = ESCAPES[ch]; \
160 putc (ch, (FILE)); \
163 fprintf ((FILE), "\\%03o", ch); \
/freebsd-11-stable/sys/dev/ata/chipsets/
H A Data-amd.c112 struct ata_channel *ch = device_get_softc(dev); local
113 int devno = (ch->unit << 1) + target;
146 struct ata_channel *ch; local
150 ch = device_get_softc(dev);
153 ch->flags |= ATA_CHECKS_CABLE;
/freebsd-11-stable/contrib/ntp/sntp/libopts/
H A Dversion.c140 char ch; local
154 ch = od->optArg.argString[0];
158 ch = (opts->fOptSet & OPTPROC_GNUUSAGE) ? 'c' : 'v';
161 switch (ch) {
168 fprintf(stderr, zBadVerArg, ch);
/freebsd-11-stable/tools/regression/security/cap_test/
H A Dcap_test_capmode.c74 char ch; local
123 CHECK_SYSCALL_SUCCEEDS(read, fd_file, &ch, sizeof(ch));
126 CHECK_SYSCALL_SUCCEEDS(write, fd_file, &ch, sizeof(ch));
/freebsd-11-stable/usr.bin/cmp/
H A Dregular.c62 u_char ch, *p1, *p2, *m1, *m2, *e1, *e2; local
110 if ((ch = *p1) != *p2) {
114 (long long)byte - 1, ch, *p2);
118 (long long)byte, ch, *p2);
123 if (ch == '\n')
/freebsd-11-stable/usr.bin/lastcomm/
H A Dlastcomm.c85 int ch, rv; local
92 while ((ch = getopt(argc, argv, "f:usecSE")) != -1)
93 switch((char)ch) {
224 #define BIT(flag, ch) if (f & flag) *p++ = ch
/freebsd-11-stable/lib/libedit/
H A Dkeymacro.c78 Char ch; /* single character of key */ member in struct:keymacro_node_t
172 * Looks up *ch in map and then reads characters until a
176 * The last character read is returned in *ch.
179 keymacro_get(EditLine *el, Char *ch, keymacro_value_t *val) argument
182 return node_trav(el, el->el_keymacro.map, ch, val);
283 node_trav(EditLine *el, keymacro_node_t *ptr, Char *ch, keymacro_value_t *val) argument
287 if (ptr->ch == *ch) {
296 *ch = (Char)wc;
297 return node_trav(el, ptr->next, ch, va
465 node__get(wint_t ch) argument
[all...]
H A Dparse.c212 int cnt, ch; local
215 ch = *p++;
216 if (ch < '0' || ch > '7') {
220 c = (c << 3) | (ch - '0');
H A Dsearch.c217 Char *ocursor = el->el_line.cursor, oldpchar = pchar, ch; local
261 ch = (Char)wch;
263 switch (el->el_map.current[(unsigned char) ch]) {
270 ch;
271 *el->el_line.lastchar++ = ch;
296 switch (ch) {
335 endcmd[0] = ch;
356 ch = L']';
360 ch = *cp;
363 if (el->el_search.patlen > LEN && ch !
464 Char ch; local
604 cv_csearch(EditLine *el, int direction, wint_t ch, int count, int tflag) argument
[all...]
/freebsd-11-stable/contrib/byacc/
H A Dmstring.c97 mputchar(struct mstring *s, int ch) argument
100 return ch;
112 return ch;
115 *s->ptr++ = (char)ch;
116 return ch;
/freebsd-11-stable/contrib/amd/amd/
H A Dinfo_file.c69 int ch; local
77 while ((ch = getc(fp)) != EOF &&
78 isascii((unsigned char)ch) && isspace((unsigned char)ch)) ;
79 (void) ungetc(ch, fp);
/freebsd-11-stable/contrib/top/
H A Ddisplay.c1119 register char ch; local
1130 if ((ch = *ptr) == '\n' || ch == '\r')
1136 if (ch == ch_kill)
1149 else if (ch == ch_erase)
1165 else if (cnt == size || (numeric && !isdigit(ch)) ||
1166 !isprint(ch))
1174 putchar(ch);
1283 register int ch; local
1302 if ((ch
1408 register char ch; local
[all...]
/freebsd-11-stable/share/vt/keymaps/
H A DMakefile16 ch-fr.acc.kbd \
17 ch-fr.kbd \
18 ch.acc.kbd \
19 ch.kbd \
20 ch.macbook.acc.kbd \
/freebsd-11-stable/contrib/llvm-project/compiler-rt/lib/profile/
H A DInstrProfilingPort.h98 #define IS_DIR_SEPARATOR(ch) ((ch) == DIR_SEPARATOR)
100 #define IS_DIR_SEPARATOR(ch) \
101 (((ch) == DIR_SEPARATOR) || ((ch) == DIR_SEPARATOR_2))
/freebsd-11-stable/lib/libfetch/
H A Dfetch.c296 fetch_hexval(char ch) argument
299 if (ch >= '0' && ch <= '9')
300 return (ch - '0');
301 else if (ch >= 'a' && ch <= 'f')
302 return (ch - 'a' + 10);
303 else if (ch >= 'A' && ch <= 'F')
304 return (ch
[all...]
/freebsd-11-stable/contrib/gdb/gdb/
H A Dserial.c54 static void serial_logchar (struct ui_file *stream, int ch_type, int ch, int timeout);
73 serial_logchar (struct ui_file *stream, int ch_type, int ch, int timeout)
84 switch (ch)
100 fprintf_unfiltered (stream, "%02x", ch & 0xff);
102 fprintf_unfiltered (stream, "%03o", ch & 0xff);
104 switch (ch)
128 fprintf_unfiltered (stream, isprint (ch) ? "%c" : "\\x%02x", ch & 0xFF);
346 int ch;
354 ch
72 serial_logchar(struct ui_file *stream, int ch_type, int ch, int timeout) argument
344 int ch; local
[all...]
/freebsd-11-stable/libexec/rtld-elf/
H A Drtld_printf.c72 snprintf_func(int ch, struct snprintf_arg *const info) argument
78 *info->str++ = ch;
84 *info->str++ = ch;
128 int ch, n; local
147 while ((ch = (u_char)*fmt++) != '%' || stop) {
148 if (ch == '\0')
150 PCHAR(ch);
156 reswitch: switch (ch = (u_char)*fmt++) {
170 PCHAR(ch);
191 n = n * 10 + ch
[all...]
/freebsd-11-stable/sys/dev/sound/pcm/
H A Dvchan.c255 struct pcm_channel **ch, *wch, *rch, *c; local
267 ch = (c->direction == PCMDIR_PLAY) ? &wch : &rch;
270 if (*ch != NULL && *ch != c->parentchannel) {
272 *ch = NULL;
277 if (*ch != NULL) {
279 *ch = NULL;
282 *ch = c;
446 struct pcm_channel *c, *ch; local
531 CHN_FOREACH(ch,
554 struct pcm_channel *c, *ch; local
668 struct pcm_channel *ch; local
[all...]

Completed in 187 milliseconds

<<11121314151617181920>>