/illumos-gate/usr/src/contrib/zlib/ |
H A D | deflate.h | 214 uch depth[2*L_CODES+1]; 312 extern uch ZLIB_INTERNAL _length_code[]; 313 extern uch ZLIB_INTERNAL _dist_code[]; 315 extern const uch ZLIB_INTERNAL _length_code[]; 316 extern const uch ZLIB_INTERNAL _dist_code[]; 320 { uch cc = (c); \ 328 { uch len = (uch)(length); \
|
H A D | trees.h | 73 const uch ZLIB_INTERNAL _dist_code[DIST_CODE_LEN] = { 102 const uch ZLIB_INTERNAL _length_code[MAX_MATCH-MIN_MATCH+1]= {
|
H A D | trees.c | 71 local const uch bl_order[BL_CODES] 98 uch _dist_code[DIST_CODE_LEN]; 104 uch _length_code[MAX_MATCH-MIN_MATCH+1]; 175 put_byte(s, (uch)((w) & 0xff)); \ 176 put_byte(s, (uch)((ush)(w) >> 8)); \ 260 _length_code[length++] = (uch)code; in tr_static_init() 268 _length_code[length-1] = (uch)code; in tr_static_init() 275 _dist_code[dist++] = (uch)code; in tr_static_init() 283 _dist_code[256 + dist++] = (uch)code; in tr_static_init() 673 s->depth[node] = (uch)((s->depth[n] >= s->depth[m] ?
|
H A D | zutil.h | 37 typedef unsigned char uch; typedef 38 typedef uch FAR uchf;
|
H A D | zutil.c | 234 *((ush*)&buf+1) += ((ush)((uch*)buf-0) + 15) >> 4; in zcalloc()
|
/illumos-gate/usr/src/grub/grub-0.97/stage2/ |
H A D | gunzip.c | 259 typedef unsigned char uch; typedef 347 uch e; /* number of extra bits or operation */ 348 uch b; /* number of bits in this code or subcode */ 369 static uch slide[WSIZE]; 490 static uch inbuf[INBUFSIZ]; 492 static uch endbuf[8]; 509 uch *eb = endbuf; in get_byte() 679 r.b = (uch) l; /* bits to dump before this table */ in huft_build() 680 r.e = (uch) (16 + j); /* bits in this table */ in huft_build() 688 r.b = (uch) (k - w); in huft_build() [all …]
|
/illumos-gate/usr/src/lib/libc/port/stdio/ |
H A D | _flsbuf.c | 49 Uchar uch; in _flsbuf() local 72 uch = (unsigned char)ch; in _flsbuf() 73 if (_xwrite(iop, (char *)&uch, 1) != 1) { in _flsbuf()
|
/illumos-gate/usr/src/lib/libfru/libfruraw/ |
H A D | crcmodel.c | 109 uint32_t uch = (uint32_t)ch; local 113 uch = reflect(uch, 8); 115 p_cm->cm_reg ^= (uch << (p_cm->cm_width-8));
|
/illumos-gate/usr/src/cmd/picl/plugins/sun4u/lib/fruaccess/ |
H A D | crcmodel.c | 108 uint32_t uch = (uint32_t)ch; local 112 uch = reflect(uch, 8); 114 p_cm->cm_reg ^= (uch << (p_cm->cm_width-8));
|
/illumos-gate/usr/src/uts/common/inet/sctp/ |
H A D | sctp_error.c | 608 sctp_chunk_hdr_t *uch; in sctp_handle_error() local 635 if (ntohs(errh->sph_len) < (sizeof (*errh) + sizeof (*uch))) { in sctp_handle_error() 639 uch = (sctp_chunk_hdr_t *)(errh + 1); in sctp_handle_error() 640 if (uch->sch_id == CHUNK_ASCONF) { in sctp_handle_error() 647 if (ntohs(uch->sch_len) != in sctp_handle_error() 653 sctp_asconf_free_cxmit(sctp, uch); in sctp_handle_error()
|
/illumos-gate/usr/src/lib/libc/port/regex/ |
H A D | utils.h | 42 typedef unsigned char uch; typedef
|
H A D | regcomp.c | 458 (isdigit((uch)PEEK2()) || PEEK2() == ','), REG_BADRPT); in p_ere_exp() 486 if (isdigit((uch)PEEK())) { in p_ere_exp() 507 (c == '{' && MORE2() && isdigit((uch)PEEK2())))) in p_ere_exp() 805 if (MORE() && isdigit((uch)PEEK())) { in p_simp_re() 834 while (MORE() && isdigit((uch)PEEK()) && count <= DUPMAX) { in p_count() 952 (void) REQUIRE((uch)start <= (uch)finish, in p_b_term() 982 while (MORE() && isalpha((uch)PEEK())) in p_b_cclass()
|
H A D | regex2.h | 197 #define ISWORD(c) (iswalnum((uch)(c)) || (c) == '_')
|
H A D | engine.c | 820 c = (uch)*(start - 1); in walk() 1073 if (isprint((uch)ch) || ch == ' ') in pchar()
|
/illumos-gate/usr/src/uts/common/io/ppp/spppcomp/ |
H A D | zlib.c | 97 typedef unsigned char uch; typedef 98 typedef uch FAR uchf; 493 uch depth[2*L_CODES+1]; 602 local uch _length_code[]; 603 local uch _dist_code[]; 606 { uch cc = (c); \ 613 { uch len = (length); \ 2282 local const uch bl_order[BL_CODES] = { 2317 local uch _dist_code[512]; 2324 local uch _length_code[MAX_MATCH-MIN_MATCH+1]; [all …]
|
/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/pppdump/ |
H A D | zlib.c | 46 typedef unsigned char uch; typedef 47 typedef uch FAR uchf; 331 uch depth[2*L_CODES+1]; 1505 local uch bl_order[BL_CODES] 1533 local uch dist_code[512]; 1539 local uch length_code[MAX_MATCH-MIN_MATCH+1]; 1611 put_byte(s, (uch)((w) & 0xff)); \ 1612 put_byte(s, (uch)((ush)(w) >> 8)); \ 1685 length_code[length++] = (uch)code; in ct_static_init() 1693 length_code[length-1] = (uch)code; in ct_static_init() [all …]
|
/illumos-gate/usr/src/contrib/ast/src/cmd/INIT/ |
H A D | ratz.c | 596 typedef unsigned char uch; typedef 597 typedef uch FAR uchf; 904 *((ush*)&buf+1) += ((ush)((uch*)buf-0) + 15) >> 4; in zcalloc() 1420 uch depth[2*L_CODES+1]; 1511 extern uch _length_code[]; 1512 extern uch _dist_code[]; 1514 extern const uch _length_code[]; 1515 extern const uch _dist_code[]; 1519 { uch cc = (c); \ 1526 { uch len = (length); \
|
/illumos-gate/usr/src/uts/common/fs/doorfs/ |
H A D | door_sys.c | 1676 door_ucred(struct ucred_s *uch) in door_ucred() argument 1715 err = copyout(res, uch, res->uc_size); in door_ucred()
|
/illumos-gate/usr/src/stand/lib/tcp/ |
H A D | tcp.c | 6106 uchar_t uch; in tcp_xchg() local 6109 uch = a[len]; in tcp_xchg() 6111 b[len] = uch; in tcp_xchg()
|