Symbol: uch
common/dist/zlib/deflate.h
222
uch depth[2*L_CODES+1];
common/dist/zlib/deflate.h
333
extern uch ZLIB_INTERNAL _length_code[];
common/dist/zlib/deflate.h
334
extern uch ZLIB_INTERNAL _dist_code[];
common/dist/zlib/deflate.h
336
extern const uch ZLIB_INTERNAL _length_code[];
common/dist/zlib/deflate.h
337
extern const uch ZLIB_INTERNAL _dist_code[];
common/dist/zlib/deflate.h
342
{ uch cc = (c); \
common/dist/zlib/deflate.h
349
{ uch len = (uch)(length); \
common/dist/zlib/deflate.h
360
{ uch cc = (c); \
common/dist/zlib/deflate.h
368
{ uch len = (uch)(length); \
common/dist/zlib/deflate.h
370
s->sym_buf[s->sym_next++] = (uch)dist; \
common/dist/zlib/deflate.h
371
s->sym_buf[s->sym_next++] = (uch)(dist >> 8); \
common/dist/zlib/trees.c
100
uch _dist_code[DIST_CODE_LEN];
common/dist/zlib/trees.c
106
uch _length_code[MAX_MATCH-MIN_MATCH+1];
common/dist/zlib/trees.c
1100
s->l_buf[s->sym_next++] = (uch)lc;
common/dist/zlib/trees.c
1102
s->sym_buf[s->sym_next++] = (uch)dist;
common/dist/zlib/trees.c
1103
s->sym_buf[s->sym_next++] = (uch)(dist >> 8);
common/dist/zlib/trees.c
1104
s->sym_buf[s->sym_next++] = (uch)lc;
common/dist/zlib/trees.c
147
put_byte(s, (uch)((w) & 0xff)); \
common/dist/zlib/trees.c
148
put_byte(s, (uch)((ush)(w) >> 8)); \
common/dist/zlib/trees.c
324
_length_code[length++] = (uch)code;
common/dist/zlib/trees.c
332
_length_code[length - 1] = (uch)code;
common/dist/zlib/trees.c
339
_dist_code[dist++] = (uch)code;
common/dist/zlib/trees.c
347
_dist_code[256 + dist++] = (uch)code;
common/dist/zlib/trees.c
684
s->depth[node] = (uch)((s->depth[n] >= s->depth[m] ?
common/dist/zlib/trees.c
73
local const uch bl_order[BL_CODES]
common/dist/zlib/trees.h
102
const uch ZLIB_INTERNAL _length_code[MAX_MATCH-MIN_MATCH+1]= {
common/dist/zlib/trees.h
73
const uch ZLIB_INTERNAL _dist_code[DIST_CODE_LEN] = {
common/dist/zlib/zutil.c
237
*((ush*)&buf+1) += ((ush)((uch*)buf-0) + 15) >> 4;
common/dist/zlib/zutil.h
47
typedef uch FAR uchf;
lib/libc/regex/engine.c
1251
if (isprint((uch)ch) || ch == ' ')
lib/libc/regex/engine.c
914
c = (uch)*(start - 1);
lib/libc/regex/regcomp.c
1055
if (MORE() && isdigit((uch)PEEK())) {
lib/libc/regex/regcomp.c
1085
while (MORE() && isdigit((uch)PEEK()) && count <= DUPMAX) {
lib/libc/regex/regcomp.c
1086
count = count*10 + ((uch)GETNEXT() - '0');
lib/libc/regex/regcomp.c
1303
while (MORE() && isalpha((uch)PEEK()))
lib/libc/regex/regcomp.c
632
(isdigit((uch)PEEK2()) || PEEK2() == ','), REG_BADRPT);
lib/libc/regex/regcomp.c
660
if (isdigit((uch)PEEK())) {
lib/libc/regex/regcomp.c
681
(c == '{' && MORE2() && isdigit((uch)PEEK2())) ) )
lib/libc/regex/regcomp.c
901
c = (uch)GETNEXT();
lib/libc/regex/regcomp.c
904
cc = (uch)GETNEXT();
lib/libc/regex/regex2.h
204
#define ISWORD(c) (iswalnum((uch)(c)) || (c) == '_')
sys/dev/pci/qat/qat_ae.c
162
struct qat_uof_image *, struct uof_chunk_hdr *uch);
sys/dev/pci/qat/qat_ae.c
1843
struct uof_chunk_hdr *uch;
sys/dev/pci/qat/qat_ae.c
1846
uch = (struct uof_chunk_hdr *)(uoh + 1);
sys/dev/pci/qat/qat_ae.c
1847
for (i = 0; i < uoh->uoh_num_chunks; i++, uch++) {
sys/dev/pci/qat/qat_ae.c
1848
if (uch->uch_offset + uch->uch_size > sc->sc_aefw_uof.qafu_size)
sys/dev/pci/qat/qat_ae.c
1851
if (cur < uch && !strncmp(uch->uch_id, id, UOF_OBJ_ID_LEN))
sys/dev/pci/qat/qat_ae.c
1852
return uch;
sys/dev/pci/qat/qat_ae.c
2117
struct qat_uof_image *qui, struct uof_chunk_hdr *uch)
sys/dev/pci/qat/qat_ae.c
2122
size_t lim = uch->uch_offset + uch->uch_size, size;
sys/dev/pci/qat/qat_ae.c
2125
size = uch->uch_size;
sys/dev/pci/qat/qat_ae.c
2131
(struct uof_image *)(base + uch->uch_offset);
sys/dev/pci/qat/qat_ae.c
2228
struct uof_chunk_hdr *uch = NULL;
sys/dev/pci/qat/qat_ae.c
2233
uch = qat_aefw_uof_find_chunk(sc, UOF_IMAG, uch);
sys/dev/pci/qat/qat_ae.c
2234
if (uch == NULL)
sys/dev/pci/qat/qat_ae.c
2240
error = qat_aefw_uof_parse_image(sc, &sc->sc_aefw_uof.qafu_imgs[i], uch);
sys/dev/pci/qat/qat_ae.c
2261
struct uof_chunk_hdr *uch;
sys/dev/pci/qat/qat_ae.c
2341
uch = qat_aefw_uof_find_chunk(sc, UOF_STRT, NULL);
sys/dev/pci/qat/qat_ae.c
2342
if (uch != NULL) {
sys/dev/pci/qat/qat_ae.c
2345
(void *)(base + uch->uch_offset + hdr_size);
sys/dev/pci/qat/qat_ae.c
2346
sc->sc_aefw_uof.qafu_str_tab_size = uch->uch_size - hdr_size;
sys/dev/pci/qat/qat_ae.c
2350
uch = qat_aefw_uof_find_chunk(sc, UOF_IMEM, NULL);
sys/dev/pci/qat/qat_ae.c
2351
if (uch != NULL) {
sys/dev/pci/qat/qat_ae.c
2352
if (uch->uch_size < sizeof(struct uof_obj_table))
sys/dev/pci/qat/qat_ae.c
2355
uch->uch_offset))->uot_nentries;
sys/dev/pci/qat/qat_ae.c
2358
(struct uof_init_mem *)(base + uch->uch_offset +
sys/dev/pci/qat/qat_ae.c
2361
uch->uch_size - sizeof(struct uof_obj_table);
sys/dev/pci/qat/qat_ae.c
2365
uch = qat_aefw_uof_find_chunk(sc, UOF_MSEG, NULL);
sys/dev/pci/qat/qat_ae.c
2366
if (uch != NULL) {
sys/dev/pci/qat/qat_ae.c
2367
if (uch->uch_size < sizeof(struct uof_obj_table) +
sys/dev/pci/qat/qat_ae.c
2371
(struct uof_var_mem_seg *)(base + uch->uch_offset +
sys/net/zlib.c
2040
local const uch bl_order[BL_CODES]
sys/net/zlib.c
2072
uch _dist_code[DIST_CODE_LEN];
sys/net/zlib.c
2078
uch _length_code[MAX_MATCH-MIN_MATCH+1];
sys/net/zlib.c
2162
const uch _dist_code[DIST_CODE_LEN] = {
sys/net/zlib.c
2191
const uch _length_code[MAX_MATCH-MIN_MATCH+1]= {
sys/net/zlib.c
2281
put_byte(s, (uch)((w) & 0xff)); \
sys/net/zlib.c
2282
put_byte(s, (uch)((ush)(w) >> 8)); \
sys/net/zlib.c
2362
_length_code[length++] = (uch)code;
sys/net/zlib.c
2370
_length_code[length-1] = (uch)code;
sys/net/zlib.c
2377
_dist_code[dist++] = (uch)code;
sys/net/zlib.c
2385
_dist_code[256 + dist++] = (uch)code;
sys/net/zlib.c
2769
s->depth[node] = (uch) (MAX(s->depth[n], s->depth[m]) + 1);
sys/net/zlib.c
3122
s->l_buf[s->last_lit++] = (uch)lc;
sys/net/zlib.c
483
uch depth[2*L_CODES+1];
sys/net/zlib.c
5744
*((ush*)&buf+1) += ((ush)((uch*)buf-0) + 15) >> 4;
sys/net/zlib.c
575
extern uch _length_code[];
sys/net/zlib.c
576
extern uch _dist_code[];
sys/net/zlib.c
578
extern const uch _length_code[];
sys/net/zlib.c
579
extern const uch _dist_code[];
sys/net/zlib.c
583
{ uch cc = (c); \
sys/net/zlib.c
590
{ uch len = (length); \
sys/net/zlib.c
97
typedef uch FAR uchf;
tests/usr.bin/xlint/lint1/msg_164.c
12
unsigned char uch = -3;
tests/usr.bin/xlint/lint1/msg_164.c
15
uch = -5;
tests/usr.bin/xlint/lint1/msg_164.c
17
uch += -7;
tests/usr.bin/xlint/lint1/msg_164.c
19
uch *= -1;