Symbol: uInt
common/dist/zlib/adler32.c
128
uLong ZEXPORT adler32(uLong adler, const Bytef *buf, uInt len) {
common/dist/zlib/compress.c
30
const uInt max = (uInt)-1;
common/dist/zlib/compress.c
54
stream.avail_out = left > (z_size_t)max ? max : (uInt)left;
common/dist/zlib/compress.c
59
(uInt)sourceLen;
common/dist/zlib/crc32.c
948
uLong ZEXPORT crc32(uLong crc, const unsigned char FAR *buf, uInt len) {
common/dist/zlib/deflate.c
1035
uInt header = (Z_DEFLATED + ((s->w_bits - 8) << 4)) << 8;
common/dist/zlib/deflate.c
1036
uInt level_flags;
common/dist/zlib/deflate.c
1054
putShortMSB(s, (uInt)(strm->adler >> 16));
common/dist/zlib/deflate.c
1055
putShortMSB(s, (uInt)(strm->adler & 0xffff));
common/dist/zlib/deflate.c
1283
putShortMSB(s, (uInt)(strm->adler >> 16));
common/dist/zlib/deflate.c
1284
putShortMSB(s, (uInt)(strm->adler & 0xffff));
common/dist/zlib/deflate.c
1391
local uInt longest_match(deflate_state *s, IPos cur_match) {
common/dist/zlib/deflate.c
1404
uInt wmask = s->w_mask;
common/dist/zlib/deflate.c
1431
if ((uInt)nice_match > s->lookahead) nice_match = (int)s->lookahead;
common/dist/zlib/deflate.c
1530
if ((uInt)best_len <= s->lookahead) return (uInt)best_len;
common/dist/zlib/deflate.c
1539
local uInt longest_match(deflate_state *s, IPos cur_match) {
common/dist/zlib/deflate.c
1587
return (uInt)len <= s->lookahead ? (uInt)len : s->lookahead;
common/dist/zlib/deflate.c
192
uInt wsize = s->w_size;
common/dist/zlib/deflate.c
2016
uInt max_insert = s->strstart + s->lookahead - MIN_MATCH;
common/dist/zlib/deflate.c
2088
uInt prev; /* byte at distance one to match */
common/dist/zlib/deflate.c
2117
s->match_length = MAX_MATCH - (uInt)(strend - scan);
common/dist/zlib/deflate.c
2121
Assert(scan <= s->window + (uInt)(s->window_size - 1),
common/dist/zlib/deflate.c
257
uInt wsize = s->w_size;
common/dist/zlib/deflate.c
318
uInt str = s->strstart - s->insert;
common/dist/zlib/deflate.c
451
s->w_bits = (uInt)windowBits;
common/dist/zlib/deflate.c
455
s->hash_bits = (uInt)memLevel + 7;
common/dist/zlib/deflate.c
562
uInt dictLength) {
common/dist/zlib/deflate.c
564
uInt str, n;
common/dist/zlib/deflate.c
628
uInt *dictLength) {
common/dist/zlib/deflate.c
630
uInt len;
common/dist/zlib/deflate.c
827
s->good_match = (uInt)good_length;
common/dist/zlib/deflate.c
828
s->max_lazy_match = (uInt)max_lazy;
common/dist/zlib/deflate.c
830
s->max_chain_length = (uInt)max_chain;
common/dist/zlib/deflate.c
941
local void putShortMSB(deflate_state *s, uInt b) {
common/dist/zlib/deflate.h
121
uInt w_size; /* LZ77 window size (32K by default) */
common/dist/zlib/deflate.h
122
uInt w_bits; /* log2(w_size) (8..16) */
common/dist/zlib/deflate.h
123
uInt w_mask; /* w_size - 1 */
common/dist/zlib/deflate.h
148
uInt ins_h; /* hash index of string to be inserted */
common/dist/zlib/deflate.h
149
uInt hash_size; /* number of elements in hash table */
common/dist/zlib/deflate.h
150
uInt hash_bits; /* log2(hash_size) */
common/dist/zlib/deflate.h
151
uInt hash_mask; /* hash_size-1 */
common/dist/zlib/deflate.h
153
uInt hash_shift;
common/dist/zlib/deflate.h
165
uInt match_length; /* length of best match */
common/dist/zlib/deflate.h
168
uInt strstart; /* start of string to insert */
common/dist/zlib/deflate.h
169
uInt match_start; /* start of matching string */
common/dist/zlib/deflate.h
170
uInt lookahead; /* number of valid bytes ahead in window */
common/dist/zlib/deflate.h
172
uInt prev_length;
common/dist/zlib/deflate.h
177
uInt max_chain_length;
common/dist/zlib/deflate.h
183
uInt max_lazy_match;
common/dist/zlib/deflate.h
197
uInt good_match;
common/dist/zlib/deflate.h
235
uInt lit_bufsize;
common/dist/zlib/deflate.h
255
uInt sym_next; /* running index in symbol buffer */
common/dist/zlib/deflate.h
256
uInt sym_end; /* symbol table full when sym_next reaches this */
common/dist/zlib/deflate.h
260
uInt matches; /* number of string matches in current block */
common/dist/zlib/deflate.h
261
uInt insert; /* bytes at end of window left to insert */
common/dist/zlib/gzguts.h
123
extern voidp malloc(uInt size);
common/dist/zlib/infback.c
59
state->wbits = (uInt)windowBits;
common/dist/zlib/inflate.c
1177
uInt *dictLength) {
common/dist/zlib/inflate.c
1197
uInt dictLength) {
common/dist/zlib/inflate.c
233
if (bits > 16 || state->bits + (uInt)bits > 32) return Z_STREAM_ERROR;
common/dist/zlib/inflate.c
236
state->bits += (uInt)bits;
common/dist/zlib/test/example.c
259
c_stream.avail_out = (uInt)comprLen;
common/dist/zlib/test/example.c
265
c_stream.avail_in = (uInt)uncomprLen;
common/dist/zlib/test/example.c
276
c_stream.avail_in = (uInt)uncomprLen/2;
common/dist/zlib/test/example.c
283
c_stream.avail_in = (uInt)uncomprLen;
common/dist/zlib/test/example.c
311
d_stream.avail_in = (uInt)comprLen;
common/dist/zlib/test/example.c
318
d_stream.avail_out = (uInt)uncomprLen;
common/dist/zlib/test/example.c
341
uInt len = (uInt)strlen(hello)+1;
common/dist/zlib/test/example.c
353
c_stream.avail_out = (uInt)*comprLen;
common/dist/zlib/test/example.c
391
d_stream.avail_out = (uInt)uncomprLen;
common/dist/zlib/test/example.c
396
d_stream.avail_in = (uInt)comprLen-2; /* read all compressed data */
common/dist/zlib/test/example.c
431
c_stream.avail_out = (uInt)comprLen;
common/dist/zlib/test/example.c
434
c_stream.avail_in = (uInt)strlen(hello)+1;
common/dist/zlib/test/example.c
460
d_stream.avail_in = (uInt)comprLen;
common/dist/zlib/test/example.c
466
d_stream.avail_out = (uInt)uncomprLen;
common/dist/zlib/test/example.c
515
compr = (Byte*)calloc((uInt)comprLen, 1);
common/dist/zlib/test/example.c
516
uncompr = (Byte*)calloc((uInt)uncomprLen, 1);
common/dist/zlib/uncompr.c
35
const uInt max = (uInt)-1;
common/dist/zlib/uncompr.c
61
stream.avail_out = left > (z_size_t)max ? max : (uInt)left;
common/dist/zlib/uncompr.c
65
stream.avail_in = len > (z_size_t)max ? max : (uInt)len;
common/dist/zlib/zconf.h
424
typedef uInt FAR uIntf;
common/dist/zlib/zlib.h
126
uInt extra_len; /* extra field length (valid if extra != Z_NULL) */
common/dist/zlib/zlib.h
127
uInt extra_max; /* space at extra (only when reading header) */
common/dist/zlib/zlib.h
129
uInt name_max; /* space at name (only when reading header) */
common/dist/zlib/zlib.h
131
uInt comm_max; /* space at comment (only when reading header) */
common/dist/zlib/zlib.h
1811
ZEXTERN uLong ZEXPORT adler32(uLong adler, const Bytef *buf, uInt len);
common/dist/zlib/zlib.h
1851
ZEXTERN uLong ZEXPORT crc32(uLong crc, const Bytef *buf, uInt len);
common/dist/zlib/zlib.h
622
uInt dictLength);
common/dist/zlib/zlib.h
666
uInt *dictLength);
common/dist/zlib/zlib.h
87
typedef voidpf (*alloc_func)(voidpf opaque, uInt items, uInt size);
common/dist/zlib/zlib.h
917
uInt dictLength);
common/dist/zlib/zlib.h
94
uInt avail_in; /* number of bytes available at next_in */
common/dist/zlib/zlib.h
940
uInt *dictLength);
common/dist/zlib/zlib.h
98
uInt avail_out; /* remaining free space at next_out */
common/dist/zlib/zutil.c
279
voidpf ZLIB_INTERNAL zcalloc(voidpf opaque, uInt items, uInt size) {
common/dist/zlib/zutil.c
297
extern voidp malloc(uInt size);
common/dist/zlib/zutil.c
298
extern voidp calloc(uInt items, uInt size);
common/dist/zlib/zutil.c
304
return sizeof(uInt) > 2 ? (voidpf)malloc(items * size) :
common/dist/zlib/zutil.c
37
switch ((int)(sizeof(uInt))) {
sys/arch/hpc/stand/hpcboot/file_manager.cpp
39
uLong crc32(uLong crc, const Bytef *buf, uInt len);
sys/net/zlib.c
1012
local void putShortMSB (deflate_state *s, uInt b)
sys/net/zlib.c
1070
uInt header = (Z_DEFLATED + ((s->w_bits-8)<<4)) << 8;
sys/net/zlib.c
1071
uInt level_flags = (s->level-1) >> 1;
sys/net/zlib.c
1083
putShortMSB(s, (uInt)(strm->adler >> 16));
sys/net/zlib.c
1084
putShortMSB(s, (uInt)(strm->adler & 0xffff));
sys/net/zlib.c
1170
putShortMSB(s, (uInt)(strm->adler >> 16));
sys/net/zlib.c
1171
putShortMSB(s, (uInt)(strm->adler & 0xffff));
sys/net/zlib.c
1253
zmemcpy(ds->pending_buf, ss->pending_buf, (uInt)ds->pending_buf_size);
sys/net/zlib.c
1350
local uInt longest_match(deflate_state *s,
sys/net/zlib.c
1365
uInt wmask = s->w_mask;
sys/net/zlib.c
1392
if ((uInt)nice_match > s->lookahead) nice_match = s->lookahead;
sys/net/zlib.c
1483
if ((uInt)best_len <= s->lookahead) return (uInt)best_len;
sys/net/zlib.c
1491
local uInt longest_match(s, cur_match)
sys/net/zlib.c
1589
uInt wsize = s->w_size;
sys/net/zlib.c
1737
s->lookahead = (uInt)(s->strstart - max_start);
sys/net/zlib.c
1738
s->strstart = (uInt)max_start;
sys/net/zlib.c
1744
if (s->strstart - (uInt)s->block_start >= MAX_DIST(s)) {
sys/net/zlib.c
1910
uInt max_insert = s->strstart + s->lookahead - MIN_MATCH;
sys/net/zlib.c
246
extern void zmemcpy(Bytef* dest, const Bytef* source, uInt len);
sys/net/zlib.c
247
extern int zmemcmp(const Bytef* s1, const Bytef* s2, uInt len);
sys/net/zlib.c
248
extern void zmemzero(Bytef* dest, uInt len);
sys/net/zlib.c
273
uInt len);
sys/net/zlib.c
3334
uInt w); /* window size */
sys/net/zlib.c
3353
uInt n); /* dictionary length */
sys/net/zlib.c
3395
uInt method; /* if FLAGS, method byte */
sys/net/zlib.c
3400
uInt marker; /* if BAD, inflateSync's marker bytes count */
sys/net/zlib.c
3405
uInt wbits; /* log2(window size) (8..15, defaults to 15) */
sys/net/zlib.c
3475
z->state->wbits = (uInt)w;
sys/net/zlib.c
3479
inflate_blocks_new(z, z->state->nowrap ? Z_NULL : adler32, (uInt)1 << w))
sys/net/zlib.c
3507
uInt b;
sys/net/zlib.c
3649
uInt dictLength)
sys/net/zlib.c
3651
uInt length = dictLength;
sys/net/zlib.c
3659
if (length >= ((uInt)1<<z->state->wbits))
sys/net/zlib.c
3690
uInt n; /* number of bytes to look at */
sys/net/zlib.c
3692
uInt m; /* number of marker bytes found in a row */
sys/net/zlib.c
3792
uInt pad; /* pad structure to a power of 2 (4 bytes for */
sys/net/zlib.c
3794
uInt base; /* literal, length base, distance base,
sys/net/zlib.c
3813
uInt, /* number of literal/length codes */
sys/net/zlib.c
3814
uInt, /* number of distance codes */
sys/net/zlib.c
382
uInt w_size; /* LZ77 window size (32K by default) */
sys/net/zlib.c
383
uInt w_bits; /* log2(w_size) (8..16) */
sys/net/zlib.c
384
uInt w_mask; /* w_size - 1 */
sys/net/zlib.c
3847
uInt, uInt,
sys/net/zlib.c
3898
uInt left; /* if STORED, bytes left to copy */
sys/net/zlib.c
3900
uInt table; /* table lengths (14 bits) */
sys/net/zlib.c
3901
uInt index; /* index into blens (or border) */
sys/net/zlib.c
3903
uInt bb; /* bit length tree depth */
sys/net/zlib.c
3911
uInt last; /* true if this block is the last block */
sys/net/zlib.c
3914
uInt bitk; /* bits in bit buffer */
sys/net/zlib.c
3941
#define WAVAIL (uInt)(q<s->read?s->read-q-1:s->end-q)
sys/net/zlib.c
3942
#define LOADOUT {q=s->write;m=(uInt)WAVAIL;}
sys/net/zlib.c
3943
#define WRAP {if(q==s->end&&s->read!=s->window){q=s->window;m=(uInt)WAVAIL;}}
sys/net/zlib.c
3951
extern uInt inflate_mask[17];
sys/net/zlib.c
3975
local const uInt border[] = { /* Order of the bit length code lengths */
sys/net/zlib.c
4042
inflate_blocks_statef *inflate_blocks_new(z_streamp z, check_func c, uInt w)
sys/net/zlib.c
4072
uInt t; /* temporary storage */
sys/net/zlib.c
4074
uInt k; /* bits in bit buffer */
sys/net/zlib.c
4076
uInt n; /* bytes available there */
sys/net/zlib.c
4078
uInt m; /* bytes to end of window or read pointer */
sys/net/zlib.c
4088
t = (uInt)b & 7;
sys/net/zlib.c
409
uInt ins_h; /* hash index of string to be inserted */
sys/net/zlib.c
410
uInt hash_size; /* number of elements in hash table */
sys/net/zlib.c
4104
uInt bl, bd;
sys/net/zlib.c
411
uInt hash_bits; /* log2(hash_size) */
sys/net/zlib.c
412
uInt hash_mask; /* hash_size-1 */
sys/net/zlib.c
414
uInt hash_shift;
sys/net/zlib.c
4141
s->sub.left = (uInt)b & 0xffff;
sys/net/zlib.c
4165
s->sub.trees.table = t = (uInt)b & 0x3fff;
sys/net/zlib.c
4176
if ((s->sub.trees.blens = (uIntf*)ZALLOC(z, t, sizeof(uInt))) == Z_NULL)
sys/net/zlib.c
4189
s->sub.trees.blens[border[s->sub.trees.index++]] = (uInt)b & 7;
sys/net/zlib.c
4215
uInt i, j, c;
sys/net/zlib.c
4219
h = s->sub.trees.tb + ((uInt)b & inflate_mask[t]);
sys/net/zlib.c
4233
j += (uInt)b & inflate_mask[i];
sys/net/zlib.c
4255
uInt bl, bd;
sys/net/zlib.c
426
uInt match_length; /* length of best match */
sys/net/zlib.c
4267
if (t == (uInt)Z_DATA_ERROR)
sys/net/zlib.c
429
uInt strstart; /* start of string to insert */
sys/net/zlib.c
430
uInt match_start; /* start of matching string */
sys/net/zlib.c
431
uInt lookahead; /* number of valid bytes ahead in window */
sys/net/zlib.c
433
uInt prev_length;
sys/net/zlib.c
4334
void inflate_set_dictionary(inflate_blocks_statef *s, const Bytef *d, uInt n)
sys/net/zlib.c
4352
uInt k; /* bits in bit buffer */ /* NOT USED HERE */
sys/net/zlib.c
4353
uInt t; /* temporary storage */
sys/net/zlib.c
4355
uInt n; /* bytes available there */
sys/net/zlib.c
4357
uInt m; /* bytes to end of window or read pointer */
sys/net/zlib.c
438
uInt max_chain_length;
sys/net/zlib.c
444
uInt max_lazy_match;
sys/net/zlib.c
4453
uInt, /* number of codes */
sys/net/zlib.c
4454
uInt, /* number of "simple" codes */
sys/net/zlib.c
4460
uInt *, /* hufts used in space */
sys/net/zlib.c
4464
local const uInt cplens[31] = { /* Copy lengths for literal codes 257..285 */
sys/net/zlib.c
4468
local const uInt cplext[31] = { /* Extra bits for literal codes 257..285 */
sys/net/zlib.c
4471
local const uInt cpdist[30] = { /* Copy offsets for distance codes 0..29 */
sys/net/zlib.c
4475
local const uInt cpdext[30] = { /* Extra bits for distance codes */
sys/net/zlib.c
4517
uInt n, /* number of codes (assumed <= 288) */
sys/net/zlib.c
4518
uInt s, /* number of simple-valued codes (0..s-1) */
sys/net/zlib.c
4524
uInt *hn, /* hufts used in space */
sys/net/zlib.c
4533
uInt a; /* counter for codes of length k */
sys/net/zlib.c
4534
uInt c[BMAX+1]; /* bit length count table */
sys/net/zlib.c
4535
uInt f; /* i repeats in table every f entries */
sys/net/zlib.c
4538
uInt i; /* counter, current code */
sys/net/zlib.c
4539
uInt j; /* counter */
sys/net/zlib.c
4542
uInt mask; /* (1 << w) - 1, to avoid cc -O bug on HP */
sys/net/zlib.c
4548
uInt x[BMAX+1]; /* bit offsets, then code stack */
sys/net/zlib.c
4551
uInt z; /* number of entries in current table */
sys/net/zlib.c
4579
if ((uInt)l < j)
sys/net/zlib.c
458
uInt good_match;
sys/net/zlib.c
4585
if ((uInt)l > i)
sys/net/zlib.c
4640
z = z > (uInt)l ? l : z; /* table size upper limit */
sys/net/zlib.c
4668
r.base = (uInt)(q - u[h-1] - j); /* offset to this table */
sys/net/zlib.c
4726
uInt hn = 0; /* hufts used in space */
sys/net/zlib.c
4729
if ((v = (uIntf*)ZALLOC(z, 19, sizeof(uInt))) == Z_NULL)
sys/net/zlib.c
4745
int inflate_trees_dynamic(uInt nl,
sys/net/zlib.c
4746
uInt nd, /* number of literal/length codes */
sys/net/zlib.c
4756
uInt hn = 0; /* hufts used in space */
sys/net/zlib.c
4760
if ((v = (uIntf*)ZALLOC(z, 288, sizeof(uInt))) == Z_NULL)
sys/net/zlib.c
4813
local uInt fixed_bl;
sys/net/zlib.c
4814
local uInt fixed_bd;
sys/net/zlib.c
4829
local uInt fixed_bl = 9;
sys/net/zlib.c
4830
local uInt fixed_bd = 5;
sys/net/zlib.c
489
uInt lit_bufsize;
sys/net/zlib.c
4988
uInt f = 0; /* number of hufts used in fixed_mem */
sys/net/zlib.c
4993
if ((c = (uIntf*)ZALLOC(z, 288, sizeof(uInt))) == Z_NULL)
sys/net/zlib.c
4995
if ((v = (uIntf*)ZALLOC(z, 288, sizeof(uInt))) == Z_NULL)
sys/net/zlib.c
5061
uInt,
sys/net/zlib.c
5062
uInt,
sys/net/zlib.c
509
uInt last_lit; /* running index in l_buf */
sys/net/zlib.c
5093
uInt len;
sys/net/zlib.c
5097
uInt need; /* bits needed */
sys/net/zlib.c
5099
uInt lit; /* if LIT, literal */
sys/net/zlib.c
5101
uInt get; /* bits to get for extra */
sys/net/zlib.c
5102
uInt dist; /* distance back to copy from */
sys/net/zlib.c
5115
inflate_codes_statef *inflate_codes_new(uInt bl, uInt bd,
sys/net/zlib.c
5136
uInt j; /* temporary storage */
sys/net/zlib.c
5138
uInt e; /* extra bits or operation */
sys/net/zlib.c
5140
uInt k; /* bits in bit buffer */
sys/net/zlib.c
5142
uInt n; /* bytes available there */
sys/net/zlib.c
5144
uInt m; /* bytes to end of window or read pointer */
sys/net/zlib.c
5175
t = c->sub.code.tree + ((uInt)b & inflate_mask[j]);
sys/net/zlib.c
5177
e = (uInt)(t->exop);
sys/net/zlib.c
519
uInt matches; /* number of string matches in current block */
sys/net/zlib.c
5213
c->len += (uInt)b & inflate_mask[j];
sys/net/zlib.c
5223
t = c->sub.code.tree + ((uInt)b & inflate_mask[j]);
sys/net/zlib.c
5225
e = (uInt)(t->exop);
sys/net/zlib.c
5246
c->sub.copy.dist += (uInt)b & inflate_mask[j];
sys/net/zlib.c
5324
uInt inflate_mask[17] = {
sys/net/zlib.c
5334
uInt n;
sys/net/zlib.c
5343
n = (uInt)((q <= s->write ? s->write : s->end) - q);
sys/net/zlib.c
5371
n = (uInt)(s->write - q);
sys/net/zlib.c
5431
int inflate_fast(uInt bl, uInt bd,
sys/net/zlib.c
5438
uInt e; /* extra bits or operation */
sys/net/zlib.c
5440
uInt k; /* bits in bit buffer */
sys/net/zlib.c
5442
uInt n; /* bytes available there */
sys/net/zlib.c
5444
uInt m; /* bytes to end of window or read pointer */
sys/net/zlib.c
5445
uInt ml; /* mask for literal/length tree */
sys/net/zlib.c
5446
uInt md; /* mask for distance tree */
sys/net/zlib.c
5447
uInt c; /* bytes to copy */
sys/net/zlib.c
5448
uInt d; /* distance back to copy from */
sys/net/zlib.c
5462
if ((e = (t = tl + ((uInt)b & ml))->exop) == 0)
sys/net/zlib.c
5478
c = t->base + ((uInt)b & inflate_mask[e]);
sys/net/zlib.c
5484
e = (t = td + ((uInt)b & md))->exop;
sys/net/zlib.c
5492
d = t->base + ((uInt)b & inflate_mask[e]);
sys/net/zlib.c
5538
e = (t += ((uInt)b & inflate_mask[e]))->exop;
sys/net/zlib.c
5553
if ((e = (t += ((uInt)b & inflate_mask[e]))->exop) == 0)
sys/net/zlib.c
5663
uInt len;
sys/net/zlib.c
5674
uInt len;
sys/net/zlib.c
5676
uInt j;
sys/net/zlib.c
5686
uInt len;
sys/net/zlib.c
5803
extern voidp calloc(uInt items, uInt size);
sys/net/zlib.c
5848
uLong ZEXPORT adler32(uLong adler, const Bytef *buf, uInt len)
sys/net/zlib.c
690
local void putShortMSB(deflate_state *s, uInt b);
sys/net/zlib.c
695
uInt longest_match(deflate_state *s, IPos cur_match);
sys/net/zlib.c
697
local uInt longest_match(deflate_state *s, IPos cur_match);
sys/net/zlib.c
900
uInt dictLength)
sys/net/zlib.c
903
uInt length = dictLength;
sys/net/zlib.c
904
uInt n;
sys/net/zlib.h
1134
ZEXTERN uLong ZEXPORT adler32(uLong, const Bytef *, uInt);
sys/net/zlib.h
1152
ZEXTERN uLong ZEXPORT crc32(uLong, const Bytef *, uInt);
sys/net/zlib.h
273
typedef uInt FAR uIntf;
sys/net/zlib.h
357
typedef voidpf (*alloc_func)(voidpf, uInt, uInt);
sys/net/zlib.h
364
uInt avail_in; /* number of bytes available at next_in */
sys/net/zlib.h
368
uInt avail_out; /* remaining free space at next_out */
sys/net/zlib.h
744
ZEXTERN int ZEXPORT deflateSetDictionary(z_streamp, const Bytef *, uInt);
sys/net/zlib.h
863
ZEXTERN int ZEXPORT inflateSetDictionary(z_streamp, const Bytef *, uInt);