Searched refs:uch (Results 1 - 23 of 23) sorted by relevance

/freebsd-10.0-release/lib/libz/
H A Dtrees.h73 const uch ZLIB_INTERNAL _dist_code[DIST_CODE_LEN] = {
102 const uch ZLIB_INTERNAL _length_code[MAX_MATCH-MIN_MATCH+1]= {
H A Ddeflate.h213 uch depth[2*L_CODES+1];
316 extern uch ZLIB_INTERNAL _length_code[];
317 extern uch ZLIB_INTERNAL _dist_code[];
319 extern const uch ZLIB_INTERNAL _length_code[];
320 extern const uch ZLIB_INTERNAL _dist_code[];
324 { uch cc = (c); \
331 { uch len = (length); \
H A Dtrees.c71 local const uch bl_order[BL_CODES]
98 uch _dist_code[DIST_CODE_LEN];
104 uch _length_code[MAX_MATCH-MIN_MATCH+1];
177 put_byte(s, (uch)((w) & 0xff)); \
178 put_byte(s, (uch)((ush)(w) >> 8)); \
262 _length_code[length++] = (uch)code;
270 _length_code[length-1] = (uch)code;
277 _dist_code[dist++] = (uch)code;
285 _dist_code[256 + dist++] = (uch)code;
349 fprintf(header, "const uch ZLIB_INTERNA
[all...]
H A Dzutil.h41 typedef unsigned char uch; typedef
42 typedef uch FAR uchf;
H A Dzutil.c238 *((ush*)&buf+1) += ((ush)((uch*)buf-0) + 15) >> 4;
/freebsd-10.0-release/contrib/llvm/lib/Support/
H A Dregutils.h40 typedef unsigned char uch; typedef
H A Dregex2.h106 uch *ptr; /* -> uch [csetsize] */
107 uch mask; /* bit within array */
108 uch hash; /* hash code */
113 #define CHadd(cs, c) ((cs)->ptr[(uch)(c)] |= (cs)->mask, (cs)->hash += (c))
114 #define CHsub(cs, c) ((cs)->ptr[(uch)(c)] &= ~(cs)->mask, (cs)->hash -= (c))
115 #define CHIN(cs, c) ((cs)->ptr[(uch)(c)] & (cs)->mask)
133 uch *setbits; /* -> uch[csetsize][ncsets/CHAR_BIT] */
H A Dregcomp.c404 REQUIRE(!MORE() || !isdigit((uch)PEEK()), REG_BADRPT);
416 (c == '{' && MORE2() && isdigit((uch)PEEK2())) ))
445 if (isdigit((uch)PEEK())) {
466 (c == '{' && MORE2() && isdigit((uch)PEEK2())) ) )
616 if (MORE() && isdigit((uch)PEEK())) {
645 while (MORE() && isdigit((uch)PEEK()) && count <= DUPMAX) {
811 while (MORE() && isalpha((uch)PEEK()))
895 ch = (uch)ch;
898 return ((uch)tolower(ch));
900 return ((uch)touppe
[all...]
/freebsd-10.0-release/contrib/nvi/regex/
H A Dregex2.h118 uch *ptr; /* -> uch [csetsize] */
119 uch mask; /* bit within array */
120 uch hash; /* hash code */
125 #define CHadd(cs, c) ((cs)->ptr[(uch)(c)] |= (cs)->mask, (cs)->hash += (c))
126 #define CHsub(cs, c) ((cs)->ptr[(uch)(c)] &= ~(cs)->mask, (cs)->hash -= (c))
127 #define CHIN(cs, c) ((cs)->ptr[(uch)(c)] & (cs)->mask)
146 uch *setbits; /* -> uch[csetsize][ncsets/CHAR_BIT] */
H A Dutils.h46 typedef unsigned char uch; typedef
H A Dregcomp.c1146 p->g->setbits = (uch *)malloc(nbytes);
1148 p->g->setbits = (uch *)realloc((char *)p->g->setbits,
1206 register uch h = cs->hash;
1378 register uch *col;
1396 register uch *col;
/freebsd-10.0-release/lib/libc/regex/
H A Dutils.h41 typedef unsigned char uch; typedef
H A Dregex2.h192 #define ISWORD(c) (iswalnum((uch)(c)) || (c) == '_')
H A Dregcomp.c418 (void)REQUIRE(!MORE() || !isdigit((uch)PEEK()), REG_BADRPT);
432 (c == '{' && MORE2() && isdigit((uch)PEEK2())) ))
461 if (isdigit((uch)PEEK())) {
482 (c == '{' && MORE2() && isdigit((uch)PEEK2())) ) )
637 if (MORE() && isdigit((uch)PEEK())) {
667 while (MORE() && isdigit((uch)PEEK()) && count <= DUPMAX) {
789 (void)REQUIRE((uch)start <= (uch)finish, REG_ERANGE);
817 while (MORE() && isalpha((uch)PEEK()))
H A Dengine.c805 c = (uch)*(start - 1);
910 c = (uch)*(start - 1);
1174 if (isprint((uch)ch) || ch == ' ')
/freebsd-10.0-release/sys/cddl/contrib/opensolaris/uts/common/zmod/
H A Ddeflate.h210 uch depth[2*L_CODES+1];
301 extern uch _length_code[];
302 extern uch _dist_code[];
304 extern const uch _length_code[];
305 extern const uch _dist_code[];
309 { uch cc = (c); \
316 { uch len = (length); \
H A Dtrees.c70 local const uch bl_order[BL_CODES]
102 uch _dist_code[DIST_CODE_LEN];
108 uch _length_code[MAX_MATCH-MIN_MATCH+1];
181 put_byte(s, (uch)((w) & 0xff)); \
182 put_byte(s, (uch)((ush)(w) >> 8)); \
264 _length_code[length++] = (uch)code;
272 _length_code[length-1] = (uch)code;
279 _dist_code[dist++] = (uch)code;
287 _dist_code[256 + dist++] = (uch)code;
351 fprintf(header, "const uch _dist_cod
[all...]
H A Dzutil.h52 typedef unsigned char uch; typedef
53 typedef uch FAR uchf;
H A Dzutil.c240 *((ush*)&buf+1) += ((ush)((uch*)buf-0) + 15) >> 4;
/freebsd-10.0-release/sys/kern/
H A Dinflate.c27 #define uch u_char macro
107 c10 17 Oct 92 G. Roelofs changed ULONG/UWORD/byte to ulg/ush/uch,
237 inflate.h must supply the uch slide[GZ_WSIZE] array and the NEXTBYTE,
246 typedef unsigned char uch;
265 uch e; /* number of extra bits or operation */
266 uch b; /* number of bits in this code or subcode */
290 to be usable as if it were declared "uch slide[32768];" or as just
291 "uch *slide;" and then malloc'ed in the latter case. The definition
569 r.b = (uch) l[h - 1]; /* bits to dump before
571 r.e = (uch) (1
[all...]
/freebsd-10.0-release/sys/net/
H A Dzutil.h65 typedef unsigned char uch; typedef
66 typedef uch FAR uchf;
H A Dzlib.c98 typedef unsigned char uch; typedef
99 typedef uch FAR uchf;
467 uch depth[2*L_CODES+1];
1913 local uch bl_order[BL_CODES]
1940 local uch dist_code[512];
1946 local uch length_code[MAX_MATCH-MIN_MATCH+1];
2018 put_byte(s, (uch)((w) & 0xff)); \
2019 put_byte(s, (uch)((ush)(w) >> 8)); \
2094 length_code[length++] = (uch)code;
2102 length_code[length-1] = (uch)cod
[all...]
/freebsd-10.0-release/contrib/binutils/gas/
H A Dapp.c413 #define UNGET(uch) (*--from = (uch))

Completed in 195 milliseconds