Searched refs:ch (Results 201 - 225 of 1921) sorted by relevance

1234567891011>>

/macosx-10.9.5/libpcap-42/libpcap/msdos/
H A Dbin2c.c20 int ch, i; local
34 while ((ch = fgetc(inFile)) != EOF)
38 fprintf (outFile, "0x%02X,", ch);
/macosx-10.9.5/ncurses-42/ncurses/test/
H A Drailroad.c71 PutChar(int ch) argument
73 putchar(ch);
112 int ch, first, last; local
120 ch = *string;
121 if (ch != ' ') {
129 PutChar(ch);
132 last = ch;
133 if (isalpha(ch)) {
134 first = isupper(ch) ? 'A' : 'a';
135 } else if (isdigit(ch)) {
[all...]
/macosx-10.9.5/postfix-252/postfix/src/global/
H A Ddomain_list.c101 int ch; local
105 while ((ch = GETOPT(argc, argv, "v")) > 0) {
106 switch (ch) {
H A Dnamadr_list.c109 int ch; local
113 while ((ch = GETOPT(argc, argv, "v")) > 0) {
114 switch (ch) {
H A Dstring_list.c94 int ch; local
98 while ((ch = GETOPT(argc, argv, "v")) > 0) {
99 switch (ch) {
/macosx-10.9.5/remote_cmds-41.90.1/domainname.tproj/
H A Ddomainname.c57 int ch; local
60 while ((ch = getopt(argc, argv, "")) != -1)
61 switch (ch) {
/macosx-10.9.5/shell_cmds-175/env/
H A Denv.c65 int ch; local
67 while ((ch = getopt(argc, argv, "-i")) != -1)
68 switch(ch) {
/macosx-10.9.5/shell_cmds-175/hostname/
H A Dhostname.c57 int ch, sflag; local
61 while ((ch = getopt(argc, argv, "fs")) != -1)
62 switch (ch) {
/macosx-10.9.5/shell_cmds-175/printenv/
H A Dprintenv.c71 int ch; local
73 while ((ch = getopt(argc, argv, "")) != -1)
74 switch(ch) {
/macosx-10.9.5/tcl-102/tcl/tcl/generic/
H A DtclUniData.c903 #define GetUniCharInfo(ch) (groups[groupMap[(pageMap[(((int)(ch)) & 0xffff) >> OFFSET_BITS] << OFFSET_BITS) | ((ch) & ((1 << OFFSET_BITS)-1))]])
/macosx-10.9.5/tcl-102/tcl/tcl/libtommath/
H A Dbn_mp_read_radix.c22 char ch; local
51 ch = (char) ((radix < 36) ? toupper ((unsigned char) *str) : *str);
53 if (ch == mp_s_rmap[y]) {
/macosx-10.9.5/tcl-102/tcl84/tcl/generic/
H A DtclUniData.c903 #define GetUniCharInfo(ch) (groups[groupMap[(pageMap[(((int)(ch)) & 0xffff) >> OFFSET_BITS] << OFFSET_BITS) | ((ch) & ((1 << OFFSET_BITS)-1))]])
/macosx-10.9.5/SecurityTool-55115/
H A Dkeychain_delete.c99 int ch, result = 0; local
101 while ((ch = getopt(argc, argv, "hc:Z:t")) != -1)
103 switch (ch)
138 int ch, result = 0; local
140 while ((ch = getopt(argc, argv, "h")) != -1)
142 switch (ch)
/macosx-10.9.5/postfix-252/postfix/src/util/
H A Dvbuf.c12 /* int VBUF_PUT(bp, ch)
14 /* int ch;
20 /* int vbuf_unget(bp, ch)
22 /* int ch;
156 int vbuf_unget(VBUF *bp, int ch) argument
158 if ((ch & 0xff) != ch || -bp->cnt >= bp->len) {
164 return (*--bp->ptr = ch);
177 int vbuf_put(VBUF *bp, int ch) argument
179 return (bp->put_ready(bp) ? VBUF_EOF : VBUF_PUT(bp, ch));
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/tclxml/tclxslt/
H A Dtclxsltproc202 if {[catch {open [lindex $argv 0]} ch]} {
203 puts stderr "Unable to read stylesheet due to \"$ch\""
206 set xsl [read $ch]
207 close $ch
221 if {[catch {open $sourcefile} ch]} {
222 puts stderr "Unable to read source document \"sourcefile\" due to \"$ch\""
225 set xml [read $ch]
226 close $ch
242 if {[catch {open $Config(output) w} ch]} {
243 puts stderr "Unable to write result to \"$Config(output)\" due to \"$ch\""
[all...]
/macosx-10.9.5/ICU-511.35/icuSources/common/
H A Dutil_props.cpp148 UChar32 ch = str.char32At(p); local
150 if (u_isIDStart(ch)) {
151 buf.append(ch);
157 if (u_isIDPart(ch)) {
158 buf.append(ch);
163 p += U16_LENGTH(ch);
193 UChar32 ch = text.char32At(p); local
194 int32_t d = u_digit(ch, radix);
/macosx-10.9.5/ICU-511.35/icuSources/tools/toolutil/
H A Ddbgutil.cpp117 char ch[256]; local
120 u_UCharsToChars(u, ch, len);
121 ch[len] = 0; /* include terminating \0 */
122 return atoi(ch);
129 char ch[256]; local
132 u_UCharsToChars(u, ch, len);
133 ch[len] = 0; /* include terminating \0 */
134 return atof(ch);
/macosx-10.9.5/Libc-997.90.3/locale/FreeBSD/
H A Dbig5.c61 wchar_t ch; member in struct:__anon2902
80 return (ps == NULL || ((const _BIG5State *)ps)->ch == 0);
101 if ((bs->ch & ~0xFF) != 0) {
117 if (bs->ch != 0) {
122 wc = (bs->ch << 8) | (*s & 0xFF);
125 bs->ch = 0;
134 bs->ch = wc;
159 if (bs->ch != 0) {
H A Dgbk.c54 wchar_t ch; member in struct:__anon2907
73 return (ps == NULL || ((const _GBKState *)ps)->ch == 0);
94 if ((gs->ch & ~0xFF) != 0) {
110 if (gs->ch != 0) {
115 wc = (gs->ch << 8) | (*s & 0xFF);
118 gs->ch = 0;
127 gs->ch = wc;
152 if (gs->ch != 0) {
H A Dmskanji.c59 wchar_t ch; member in struct:__anon2908
78 return (ps == NULL || ((const _MSKanjiState *)ps)->ch == 0);
90 if ((ms->ch & ~0xFF) != 0) {
106 if (ms->ch != 0) {
111 wc = (ms->ch << 8) | (*s & 0xFF);
114 ms->ch = 0;
121 ms->ch = wc;
147 if (ms->ch != 0) {
/macosx-10.9.5/WebCore-7537.78.1/html/
H A DHTMLTableColElement.idl23 [Reflect=char] attribute DOMString ch;
/macosx-10.9.5/cups-372.4/cups/vcnet/regex/
H A Ddebug.ih9 static char *regchar(int ch);
/macosx-10.9.5/dtrace-118.1/test/tst/common/sizeof/
H A Dtst.SizeofDataTypes.d62 char ch;
67 char ch;
72 char ch;
77 char ch;
/macosx-10.9.5/dtrace-118.1/test/tst/common/struct/
H A Dtst.StructDataTypes.d69 char ch;
75 char ch;
122 var.new_struct.ch = 'c';
126 var.new_union.ch = 'd';
/macosx-10.9.5/dtrace-118.1/test/tst/common/union/
H A Dtst.UnionDataTypes.d69 char ch;
75 char ch;
122 var.new_struct.ch = 'c';
126 var.new_union.ch = 'd';

Completed in 265 milliseconds

1234567891011>>