Searched refs:ch (Results 151 - 175 of 1840) sorted by relevance

1234567891011>>

/macosx-10.10.1/basic_cmds-55/uudecode/
H A Dbase64.c203 int tarindex, state, ch; local
209 while ((ch = *src++) != '\0') {
210 if (isspace((unsigned char)ch)) /* Skip whitespace anywhere. */
213 if (ch == Pad64)
216 pos = strchr(Base64, ch);
270 if (ch == Pad64) { /* We got a pad char. */
271 ch = *src++; /* Skip it, get next. */
279 for ((void)NULL; ch != '\0'; ch = *src++)
280 if (!isspace((unsigned char)ch))
[all...]
/macosx-10.10.1/basic_cmds-55/uuencode/
H A Dbase64.c203 int tarindex, state, ch; local
209 while ((ch = *src++) != '\0') {
210 if (isspace((unsigned char)ch)) /* Skip whitespace anywhere. */
213 if (ch == Pad64)
216 pos = strchr(Base64, ch);
270 if (ch == Pad64) { /* We got a pad char. */
271 ch = *src++; /* Skip it, get next. */
279 for ((void)NULL; ch != '\0'; ch = *src++)
280 if (!isspace((unsigned char)ch))
[all...]
/macosx-10.10.1/less-25/less/
H A Dline.c142 is_ascii_char(ch)
143 LWCHAR ch;
145 return (ch <= 0x7F);
291 LWCHAR ch; local
296 ch = get_wchar(linebuf + from);
297 if (!is_composing_char(ch) && !is_combining_char(prev_ch, ch))
298 width = is_wide_char(ch) ? 2 : 1;
299 prev_ch = ch;
423 pwidth(ch,
491 LWCHAR ch = step_char(&p, -1, linebuf + lmargin); local
525 LWCHAR ch = step_char(&p, -1, linebuf); local
[all...]
/macosx-10.10.1/libresolv-57/
H A Dbase64.c212 int tarindex, state, ch; local
218 while ((ch = *src++) != '\0') {
219 if (isspace(ch)) /* Skip whitespace anywhere. */
222 if (ch == Pad64)
225 pos = strchr(Base64, ch);
279 if (ch == Pad64) { /* We got a pad char. */
280 ch = *src++; /* Skip it, get next. */
288 for ((void)NULL; ch != '\0'; ch = *src++)
289 if (!isspace(ch))
[all...]
/macosx-10.10.1/postfix-255/postfix/src/util/
H A Dvalid_hostname.c93 int ch; local
107 for (cp = name; (ch = *(unsigned char *) cp) != 0; cp++) {
108 if (ISALNUM(ch) || ch == '_') { /* grr.. */
117 if (!ISDIGIT(ch))
119 } else if (ch == '.') {
126 } else if (ch == '-') {
136 else if (ch == ':' && valid_ipv6_hostaddr(name, DONT_GRIPE)) {
144 myname, ch, name);
198 int ch; local
[all...]
H A Dattr_scan0.c170 int ch; local
172 if ((ch = vstring_get_null(plain_buf, fp)) == VSTREAM_EOF) {
178 if (ch != 0) {
185 return (ch);
194 int ch; local
198 if ((ch = attr_scan0_string(fp, base64_buf, context)) < 0)
205 return (ch);
214 int ch; local
216 if ((ch = attr_scan0_string(fp, str_buf, context)) < 0)
223 return (ch);
233 int ch; local
258 int ch; local
[all...]
/macosx-10.10.1/text_cmds-88/tr/
H A Dcmap.c121 cmap_lookup_hard(struct cmap *cm, wint_t ch) argument
125 cm->cm_root = cmap_splay(cm->cm_root, ch);
126 if (cm->cm_root->cmn_from == ch)
129 return (cm->cm_def == CM_DEF_SELF ? ch : cm->cm_def);
139 wint_t ch; local
141 for (ch = 0; ch < CM_CACHE_SIZE; ch++)
142 cm->cm_cache[ch] = cmap_lookup_hard(cm, ch);
165 cmap_splay(struct cmapnode *t, wint_t ch) argument
[all...]
H A Dcset.c69 cset_add(struct cset *cs, wchar_t ch) argument
84 csn->csn_min = csn->csn_max = ch;
93 csn = cs->cs_root = cset_splay(cs->cs_root, ch);
98 if (cset_rangecmp(csn, ch) == 0)
107 ncsn->csn_min = ncsn->csn_max = ch;
108 if (cset_rangecmp(csn, ch) < 0) {
151 cset_in_hard(struct cset *cs, wchar_t ch) argument
156 if (csc->csc_invert ^ iswctype(ch, csc->csc_type) != 0)
159 cs->cs_root = cset_splay(cs->cs_root, ch);
160 return (cs->cs_invert ^ cset_rangecmp(cs->cs_root, ch)
214 cset_rangecmp(struct csnode *t, wchar_t ch) argument
225 cset_splay(struct csnode *t, wchar_t ch) argument
275 cset_delete(struct csnode *t, wchar_t ch) argument
[all...]
/macosx-10.10.1/tcl-105/tcl_ext/snack/snack/generic/
H A DSphereFile.c25 if (ch) sp_close((SP_FILE *)ch); \
35 GetSphereHeader(Sound *s, Tcl_Interp *interp, Tcl_Channel ch, Tcl_Obj *obj,
63 OpenSphereFile(Sound *s, Tcl_Interp *interp, Tcl_Channel *ch, char *mode) argument
66 *ch = (Tcl_Channel) sp_open(Snack_GetSoundFilename(s), mode);
67 if (*ch == NULL) {
76 GetSphereHeader(s, interp, *ch, NULL, NULL);
99 CloseSphereFile(Sound *s, Tcl_Interp *interp, Tcl_Channel *ch) argument
102 if (sp_close((SP_FILE *)*ch))
104 *ch
110 ReadSphereSamples(Sound *s, Tcl_Interp *interp, Tcl_Channel ch, char *ibuf, float *obuf, int len) argument
196 SeekSphereFile(Sound *s, Tcl_Interp *interp, Tcl_Channel ch, int pos) argument
208 GetSphereHeader(Sound *s, Tcl_Interp *interp, Tcl_Channel ch, Tcl_Obj *obj, char *buf) argument
[all...]
/macosx-10.10.1/apr-32/apr/apr/network_io/unix/
H A Dinet_pton.c109 int saw_digit, octets, ch; local
115 while ((ch = *src++) != '\0') {
118 if ((pch = strchr(digits, ch)) != NULL) {
129 } else if (ch == '.' && saw_digit) {
165 int ch, saw_xdigit; local
178 while ((ch = *src++) != '\0') {
181 if ((pch = strchr((xdigits = xdigits_l), ch)) == NULL)
182 pch = strchr((xdigits = xdigits_u), ch);
191 if (ch == ':') {
207 if (ch
[all...]
/macosx-10.10.1/bind9-45.101/bind9/lib/isc/
H A Dinet_pton.c84 int saw_digit, octets, ch; local
90 while ((ch = *src++) != '\0') {
93 if ((pch = strchr(digits, ch)) != NULL) {
106 } else if (ch == '.' && saw_digit) {
139 int ch, seen_xdigits; local
152 while ((ch = *src++) != '\0') {
155 if ((pch = strchr((xdigits = xdigits_l), ch)) == NULL)
156 pch = strchr((xdigits = xdigits_u), ch);
164 if (ch == ':') {
180 if (ch
[all...]
/macosx-10.10.1/bind9-45.101/bind9/lib/lwres/
H A Dlwinetpton.c83 int saw_digit, octets, ch; local
89 while ((ch = *src++) != '\0') {
92 if ((pch = strchr(digits, ch)) != NULL) {
103 } else if (ch == '.' && saw_digit) {
141 int ch, seen_xdigits; local
154 while ((ch = *src++) != '\0') {
157 if ((pch = strchr((xdigits = xdigits_l), ch)) == NULL)
158 pch = strchr((xdigits = xdigits_u), ch);
166 if (ch == ':') {
182 if (ch
[all...]
/macosx-10.10.1/curl-83.1.2/curl/lib/
H A Dinet_pton.c96 int saw_digit, octets, ch; local
103 while((ch = *src++) != '\0') {
106 if((pch = strchr(digits, ch)) != NULL) {
120 else if(ch == '.' && saw_digit) {
156 int ch, saw_xdigit; local
169 while((ch = *src++) != '\0') {
172 if((pch = strchr((xdigits = xdigits_l), ch)) == NULL)
173 pch = strchr((xdigits = xdigits_u), ch);
181 if(ch == ':') {
197 if(ch
[all...]
/macosx-10.10.1/ntp-92/lib/isc/
H A Dinet_pton.c84 int saw_digit, octets, ch; local
90 while ((ch = *src++) != '\0') {
93 if ((pch = strchr(digits, ch)) != NULL) {
106 } else if (ch == '.' && saw_digit) {
139 int ch, seen_xdigits; local
152 while ((ch = *src++) != '\0') {
155 if ((pch = strchr((xdigits = xdigits_l), ch)) == NULL)
156 pch = strchr((xdigits = xdigits_u), ch);
164 if (ch == ':') {
180 if (ch
[all...]
/macosx-10.10.1/rsync-45/rsync/lib/
H A Dinet_pton.c80 int saw_digit, octets, ch; local
86 while ((ch = *src++) != '\0') {
89 if ((pch = strchr(digits, ch)) != NULL) {
100 } else if (ch == '.' && saw_digit) {
137 int ch, saw_xdigit; local
150 while ((ch = *src++) != '\0') {
153 if ((pch = strchr((xdigits = xdigits_l), ch)) == NULL)
154 pch = strchr((xdigits = xdigits_u), ch);
163 if (ch == ':') {
179 if (ch
[all...]
/macosx-10.10.1/tcsh-65/tcsh/
H A Ded.xmap.c14 * int GetXkey(ch,val);
15 * CStr *ch;
18 * Looks up *ch in map and then reads characters until a
22 * The last character read is returned in *ch.
106 Char ch; /* single character of Xkey */ member in struct:Xmapnode
165 GetXkey(CStr *ch, XmapVal *val) argument
167 return (TraverseMap(Xmap, ch, val));
175 TraverseMap(XmapNode *ptr, CStr *ch, XmapVal *val) argument
179 if (ptr->ch == *(ch
415 GetFreeNode(CStr *ch) argument
577 unparsech(struct Strbuf *buf, Char ch) argument
663 Char ch; local
[all...]
/macosx-10.10.1/xnu-2782.1.97/libkern/net/
H A Dinet_pton.c76 int saw_digit, octets, ch; local
83 while ((ch = *src++) != '\0') {
86 if ((pch = strchr(digits, ch)) != NULL) {
99 } else if (ch == '.' && saw_digit) {
135 int ch, seen_xdigits; local
148 while ((ch = *src++) != '\0') {
151 if ((pch = strchr((xdigits = xdigits_l), ch)) == NULL)
152 pch = strchr((xdigits = xdigits_u), ch);
160 if (ch == ':') {
178 if (ch
[all...]
/macosx-10.10.1/ncurses-44/ncurses/ncurses/trace/
H A Dlib_traceatr.c183 _nc_altcharset_name(attr_t attr, chtype ch) argument
234 if (ChCharOf(cp[1]) == ChCharOf(ch)) {
241 ch = ChCharOf(*found);
243 if (sp->val == ch) {
253 _tracechtype2(int bufnum, chtype ch) argument
260 if ((found = _nc_altcharset_name(ChAttrOf(ch), ch)) != 0) {
263 (void) _nc_trace_bufcat(bufnum, _nc_tracechar(SP, (int) ChCharOf(ch)));
265 if (ChAttrOf(ch) != A_NORMAL) {
268 _traceattr2(bufnum + 20, ChAttrOf(ch)));
277 _tracechtype(chtype ch) argument
292 _tracecchar_t2(int bufnum, const cchar_t *ch) argument
350 _tracecchar_t(const cchar_t *ch) argument
[all...]
/macosx-10.10.1/text_cmds-88/paste/
H A Dpaste.c78 int ch, rval, seq; local
86 while ((ch = getopt(argc, argv, "d:s")) != -1)
87 switch(ch) {
139 wchar_t ch; local
166 (ch = delim[(lp->cnt - 1) % delimcnt]))
167 putwchar(ch);
175 (ch = delim[(lp->cnt - 1) % delimcnt]))
176 putwchar(ch);
186 if ((ch = delim[cnt % delimcnt]))
187 putwchar(ch);
211 wint_t ch; local
250 wchar_t ch, *p; local
[all...]
/macosx-10.10.1/bless-103/
H A Dbless.c116 int ch, longindex; local
141 while ((ch = getopt_long_only(argc, argv, "", longopts, &longindex)) != -1) {
143 switch(ch) {
157 actargs[ch].present = 1;
175 if(actargs[ch].present) {
180 actargs[ch].present = 1;
185 actargs[ch].hasArg = 0;
188 actargs[ch].hasArg = 1;
189 strlcpy(actargs[ch].argument, optarg, sizeof(actargs[ch]
[all...]
/macosx-10.10.1/ncurses-44/ncurses/test/
H A Ddemo_termcap.c64 int ch = UChar(*str++); local
65 switch (ch) {
100 if (isgraph(ch))
101 fputc(ch, stdout);
102 else if (ch < 32)
103 printf("^%c", ch + '@');
105 printf("\\%03o", ch);
H A Dhashtest.c110 one_cycle(int ch) argument
113 genlines(ch);
114 } else if (ch != 'a') {
116 genlines(ch);
123 char ch; local
143 for (ch = hi; ch >= lo; ch--)
144 one_cycle(ch);
146 for (ch
[all...]
/macosx-10.10.1/Heimdal-398.1.2/lib/wind/
H A Dutf8.c221 uint32_t ch; local
225 ch = in[i];
227 if (ch < 0x80) {
229 } else if (ch < 0x800) {
231 } else if (ch < 0x10000) {
233 } else if (ch <= 0x10FFFF) {
246 out[3] = (ch | 0x80) & 0xbf;
247 ch = ch << 6;
249 out[2] = (ch |
542 uint16_t ch; local
[all...]
/macosx-10.10.1/Security-57031.1.35/Security/libsecurity_codesigning/antlr2/src/
H A DASTFactory.cpp308 char ch; variable
310 if( in.get(ch) )
312 if( ch == '<' )
320 in.putback(ch);
324 in.putback(ch);
328 in.putback(ch);
337 char ch; variable
343 infile.get(ch); // '<'
344 if( ch != '<' )
347 error += ch
412 char ch; variable
[all...]
/macosx-10.10.1/BerkeleyDB-21/db/examples_c/ex_apprec/
H A Dex_apprec_autop.c24 int ch; local
40 ch = ((u_int8_t *)argp->dirname.data)[i];
41 printf(isprint(ch) || ch == 0x0a ? "%c" : "%#x ", ch);

Completed in 247 milliseconds

1234567891011>>