Searched refs:ch (Results 76 - 100 of 2367) sorted by relevance

1234567891011>>

/netbsd-current/lib/libm/complex/
H A Dccosl.c41 long double ch, sh; local
43 _cchshl(cimagl(z), &ch, &sh); local
44 w = cosl(creall(z)) * ch - (sinl(creall(z)) * sh) * I;
H A Dcsin.c41 double ch, sh; local
43 _cchsh(cimag(z), &ch, &sh); local
44 w = sin(creal(z)) * ch + (cos(creal(z)) * sh) * I;
H A Dcsinf.c41 float ch, sh; local
43 _cchshf(cimagf(z), &ch, &sh); local
44 w = sinf(crealf(z)) * ch + (cosf(crealf(z)) * sh) * I;
H A Dcsinl.c41 long double ch, sh; local
43 _cchshl(cimagl(z), &ch, &sh); local
44 w = sinl(creall(z)) * ch + (cosl(creall(z)) * sh) * I;
/netbsd-current/external/ibm-public/postfix/dist/src/util/
H A Dallascii.c56 int ch; local
63 && (ch = *(unsigned char *) cp) != 0; cp++)
64 if (!ISASCII(ch))
H A Ddir_forest.c70 int ch; local
97 if ((ch = *cp) == 0) {
98 ch = '_';
100 if (!ISPRINT(ch) || ch == '.' || ch == '/')
104 VSTRING_ADDCH(buf, ch);
H A Dfullname.c58 int ch; local
85 for (cp = pwd->pw_gecos; (ch = *(unsigned char *) cp) != 0; cp++) {
86 if (ch == ',' || ch == ';' || ch == '%')
88 if (ch == '&') {
94 VSTRING_ADDCH(result, ch);
/netbsd-current/usr.sbin/sti/
H A Dsti.c57 char ch, out; local
60 while ((ch = *(*pp)++) != '\0') {
61 switch(unvis(&out, ch, state, 0)) {
78 switch ((ch = *(*pp)++)) {
82 ch = *(*pp)++;
83 return CTRL(ch);
85 switch (ch = *(*pp)++) {
99 if (ch >= '0' && ch < '8') {
100 out = out * 8 + ch
126 char ch = c; local
[all...]
/netbsd-current/external/bsd/libbind/dist/inet/
H A Dinet_net_pton.c67 int n, ch, tmp = 0, dirty, bits; local
70 ch = *src++;
71 if (ch == '0' && (src[0] == 'x' || src[0] == 'X')
79 while ((ch = *src++) != '\0' && isascii(ch) && isxdigit(ch)) {
80 if (isupper(ch))
81 ch = tolower(ch);
82 n = strchr(xdigits, ch)
196 char ch; local
227 char ch; local
270 int ch, saw_xdigit; local
[all...]
/netbsd-current/lib/libc/inet/
H A Dinet_net_pton.c71 int ch, dirty, bits; local
76 ch = *src++;
77 if (ch == '0' && (src[0] == 'x' || src[0] == 'X')
85 while ((ch = *src++) != '\0' && isascii((u_char)ch)
86 && isxdigit((u_char)ch)) {
87 if (isupper((u_char)ch))
88 ch = tolower((u_char)ch);
89 n = strchr(xdigits, ch)
199 char ch; local
231 char ch; local
275 int ch, saw_xdigit; local
[all...]
/netbsd-current/usr.bin/systat/
H A Dkeyboard.c57 int ch, rch, col; local
63 ch = 0; /* XXX gcc */
74 while (col == 0 || (ch != '\r' && ch != '\n')) {
77 ch = getch();
82 if (ch == ERR) {
86 if (ch == KEY_RESIZE) {
90 ch &= 0177;
91 rch = ch;
93 switch(ch) {
[all...]
/netbsd-current/sys/arch/arm/broadcom/
H A Dbcm2835_dmac.c64 #define DMAC_CHANNEL_TYPE(ch) \
65 (((ch)->ch_debug & DMAC_DEBUG_LITE) ? \
67 #define DMAC_CHANNEL_USED(ch) \
68 ((ch)->ch_callback != NULL)
118 struct bcm_dmac_channel *ch; local
152 ch = &sc->sc_channels[index];
153 ch->ch_sc = sc;
154 ch->ch_index = index;
155 ch->ch_callback = NULL;
156 ch
176 struct bcm_dmac_channel *ch = priv; local
200 struct bcm_dmac_channel *ch = NULL; local
256 bcm_dmac_free(struct bcm_dmac_channel *ch) argument
278 bcm_dmac_set_conblk_addr(struct bcm_dmac_channel *ch, bus_addr_t addr) argument
286 bcm_dmac_transfer(struct bcm_dmac_channel *ch) argument
302 bcm_dmac_halt(struct bcm_dmac_channel *ch) argument
[all...]
/netbsd-current/common/lib/libc/string/
H A Dstrspn.c81 unsigned char ch, next_ch; local
92 for (ch = *charset; ch != 0; ch = next_ch) {
94 bit = 1ul << (ch & 0x3f);
95 if (__predict_true(ch < 0x80)) {
96 if (ch < 0x40)
101 if (ch < 0xc0)
122 ch = *s++;
123 for (count = 0; ch !
[all...]
/netbsd-current/sys/arch/ia64/stand/common/
H A Dinterp_parse.c67 isdelim(int ch) argument
69 if (ch == '{')
71 else if (ch == '(')
77 isquote(int ch) argument
79 return (ch == '\'' || ch == '"');
/netbsd-current/lib/libc/citrus/modules/
H A Dcitrus_zw.c67 char ch[4]; member in struct:__anon23
141 int ch, len; local
165 ch = (unsigned char)*s0++; \
166 if (len++ > MB_LEN_MAX || ch > 0x7F)\
168 psenc->ch[psenc->chlen++] = ch; \
177 switch (psenc->ch[0]) {
187 ch = (unsigned char)psenc->ch[0];
188 if (ch >
291 int ch; local
[all...]
/netbsd-current/external/bsd/less/dist/lesstest/
H A Ddisplay.c23 static int hexval(unsigned char ch) { argument
24 if (ch >= '0' && ch <= '9') return ch - '0';
25 if (ch >= 'A' && ch <= 'F') return ch - 'A' + 10;
26 if (ch >= 'a' && ch <= 'f') return ch
48 wchar ch = load_wchar(&img); local
98 wchar ch = load_wchar(&img); local
[all...]
/netbsd-current/external/bsd/nvi/dist/catalog/
H A Ddump.c30 int ch, s1, s2, s3; local
39 if ((ch = getc(fp)) == EOF) \
41 if (ch != '|') \
46 if ((ch = getc(fp)) == EOF) \
48 } while (ch != (t)); \
62 if ((ch = getc(fp)) == EOF)
64 putchar(ch);
65 if (ch == '"')
67 if (ch == '\\') {
68 if ((ch
[all...]
/netbsd-current/external/bsd/nvi/dist/common/
H A Dconv.h7 #define WIDE_COL(sp, ch) \
8 (CHAR_WIDTH(sp, ch) > 0 ? CHAR_WIDTH(sp, ch) : 1)
10 #define KEY_COL(sp, ch) \
11 (INTISWIDE(ch) ? (size_t)WIDE_COL(sp, ch) : KEY_LEN(sp, ch))
/netbsd-current/usr.bin/printf/
H A Dprintf.c137 char ch; local
202 for (fmt = format; (ch = *fmt++) != '\0';) {
203 if (ch == '\\') {
209 if (ch != '%' || (*fmt == '%' && ++fmt)) {
210 (void)putchar(ch);
245 ch = *fmt;
246 if (!ch) {
258 switch (ch) {
330 char *f = mklong(start, ch);
342 char *f = mklong(start, ch);
397 b_count(int ch) argument
405 b_output(int ch) argument
431 int ch; local
498 char ch, *begin; local
573 char ch; local
632 mklong(const char *str, char ch) argument
744 intmax_t ch = (intmax_t)(unsigned char)p[1]; local
[all...]
/netbsd-current/games/hunt/hunt/
H A Dplayit.c89 int ch; local
108 while ((ch = GETCHR()) != EOF) {
110 fputc(ch, stderr);
112 switch (ch & 0377) {
119 ch = GETCHR();
121 switch (ch) {
127 otto_face = ch;
132 addch(ch);
149 if ((ch = GETCHR()) == LAST_PLAYER)
151 ch
286 int ch; local
[all...]
/netbsd-current/sys/arch/mips/
H A DMakefile.inc5 SMIPS= ${SYSDIR}/arch/mips/mips/*.[ch]
7 SMIPS+= ${SYSDIR}/arch/mips/adm5120/*.[ch]
8 SMIPS+= ${SYSDIR}/arch/mips/adm5120/dev/*.[ch]
10 SMIPS+= ${SYSDIR}/arch/mips/alchemy/*.[ch]
11 SMIPS+= ${SYSDIR}/arch/mips/alchemy/dev/*.[ch]
13 SMIPS+= ${SYSDIR}/arch/mips/atheros/*.[ch]
14 SMIPS+= ${SYSDIR}/arch/mips/atheros/dev/*.[ch]
16 SMIPS+= ${SYSDIR}/arch/mips/bonito/*.[ch]
17 SMIPS+= ${SYSDIR}/arch/mips/cfe/*.[ch]
18 SMIPS+= ${SYSDIR}/arch/mips/rmi/*.[ch]
[all...]
/netbsd-current/external/bsd/nsd/dist/compat/
H A Db64_pton.c173 int tarindex, state, ch; local
181 ch = *src++;
182 ofs = b64rmap[ch];
237 if (ch == Pad64) { /* We got a pad char. */
238 ch = *src++; /* Skip it, get next. */
246 for ((void)NULL; ch != '\0'; ch = *src++)
247 if (b64rmap[ch] != b64rmap_space)
250 if (ch != Pad64)
252 ch
290 int tarindex, state, ch; local
[all...]
/netbsd-current/sys/arch/i386/
H A DMakefile6 SI386= ${SYSDIR}/arch/i386/acpi/*.[ch] \
7 ${SYSDIR}/arch/i386/eisa/*.[ch] \
8 ${SYSDIR}/arch/i386/i386/*.[ch] \
10 ${SYSDIR}/arch/i386/isa/*.[ch] \
11 ${SYSDIR}/arch/i386/mca/*.[ch] \
12 ${SYSDIR}/arch/i386/pci/*.[ch] \
13 ${SYSDIR}/arch/i386/pnpbios/*.[ch] \
14 ${SYSDIR}/external/isc/atheros_hal/dist/*.[ch] \
15 ${SYSDIR}/external/isc/atheros_hal/dist/*/*.[ch] \
16 ${SYSDIR}/external/isc/atheros_hal/ic/*.[ch]
[all...]
/netbsd-current/external/ibm-public/postfix/dist/src/global/
H A Dxtext.c84 int ch; local
86 for (cp = unquoted; (ch = *(unsigned const char *) cp) != 0; cp++) {
87 if (ch != '+' && ch > 32 && ch < 127
88 && (*special == 0 || strchr(special, ch) == 0)) {
89 VSTRING_ADDCH(quoted, ch);
91 vstring_sprintf_append(quoted, "+%02X", ch);
112 int ch; local
114 for (cp = (const unsigned char *) quoted; (ch
[all...]
/netbsd-current/sys/arch/alpha/
H A DMakefile6 SALPHA= ${SYSDIR}/arch/alpha/alpha/*.[ch] ${SYSDIR}/arch/alpha/common/*.[ch] \
7 ${SYSDIR}/arch/alpha/eisa/*.[ch] ${SYSDIR}/arch/alpha/include/*.h \
8 ${SYSDIR}/arch/alpha/isa/*.[ch] \
9 ${SYSDIR}/arch/alpha/jensenio/*.[ch] ${SYSDIR}/arch/alpha/mcbus/*.[ch] \
10 ${SYSDIR}/arch/alpha/pci/*.[ch] ${SYSDIR}/arch/alpha/sableio/*.[ch] \
11 ${SYSDIR}/arch/alpha/tc/*.[ch] \
12 ${SYSDIR}/arch/alpha/tlsb/*.[ch]
[all...]

Completed in 214 milliseconds

1234567891011>>