Symbol: Bytef
common/dist/zlib/adler32.c
128
uLong ZEXPORT adler32(uLong adler, const Bytef *buf, uInt len) {
common/dist/zlib/adler32.c
61
uLong ZEXPORT adler32_z(uLong adler, const Bytef *buf, z_size_t len) {
common/dist/zlib/compress.c
26
int ZEXPORT compress2_z(Bytef *dest, z_size_t *destLen, const Bytef *source,
common/dist/zlib/compress.c
49
stream.next_in = (z_const Bytef *)source;
common/dist/zlib/compress.c
69
int ZEXPORT compress2(Bytef *dest, uLongf *destLen, const Bytef *source,
common/dist/zlib/compress.c
79
int ZEXPORT compress_z(Bytef *dest, z_size_t *destLen, const Bytef *source,
common/dist/zlib/compress.c
84
int ZEXPORT compress(Bytef *dest, uLongf *destLen, const Bytef *source,
common/dist/zlib/deflate.c
1344
ds->window = (Bytef *) ZALLOC(dest, ds->w_size, 2*sizeof(Byte));
common/dist/zlib/deflate.c
1393
Bytef *scan = s->window + s->strstart; /* current string */
common/dist/zlib/deflate.c
1394
Bytef *match; /* matched string */
common/dist/zlib/deflate.c
1410
Bytef *strend = s->window + s->strstart + MAX_MATCH - 1;
common/dist/zlib/deflate.c
1414
Bytef *strend = s->window + s->strstart + MAX_MATCH;
common/dist/zlib/deflate.c
1540
Bytef *scan = s->window + s->strstart; /* current string */
common/dist/zlib/deflate.c
1541
Bytef *match; /* matched string */
common/dist/zlib/deflate.c
1543
Bytef *strend = s->window + s->strstart + MAX_MATCH;
common/dist/zlib/deflate.c
1602
Bytef *back = s->window + (int)match, *here = s->window + start;
common/dist/zlib/deflate.c
1718
s->pending_buf[s->pending - 4] = (Bytef)len;
common/dist/zlib/deflate.c
1719
s->pending_buf[s->pending - 3] = (Bytef)(len >> 8);
common/dist/zlib/deflate.c
1720
s->pending_buf[s->pending - 2] = (Bytef)~len;
common/dist/zlib/deflate.c
1721
s->pending_buf[s->pending - 1] = (Bytef)(~len >> 8);
common/dist/zlib/deflate.c
2089
Bytef *scan, *strend; /* scan goes up to strend for length of run */
common/dist/zlib/deflate.c
221
local unsigned read_buf(z_streamp strm, Bytef *buf, unsigned size) {
common/dist/zlib/deflate.c
460
s->window = (Bytef *) ZALLOC(strm, s->w_size, 2*sizeof(Byte));
common/dist/zlib/deflate.c
561
int ZEXPORT deflateSetDictionary(z_streamp strm, const Bytef *dictionary,
common/dist/zlib/deflate.c
597
strm->next_in = (z_const Bytef *)dictionary;
common/dist/zlib/deflate.c
627
int ZEXPORT deflateGetDictionary(z_streamp strm, Bytef *dictionary,
common/dist/zlib/deflate.c
896
Bytef *str;
common/dist/zlib/deflate.h
109
Bytef *pending_buf; /* output still pending */
common/dist/zlib/deflate.h
111
Bytef *pending_out; /* next pending byte to output to the stream */
common/dist/zlib/deflate.h
125
Bytef *window;
common/dist/zlib/deflate.h
295
#define put_byte(s, c) {s->pending_buf[s->pending++] = (Bytef)(c);}
common/dist/zlib/gzwrite.c
236
state->strm.next_in = (z_const Bytef *)buf;
common/dist/zlib/inflate.c
1176
int ZEXPORT inflateGetDictionary(z_streamp strm, Bytef *dictionary,
common/dist/zlib/inflate.c
1196
int ZEXPORT inflateSetDictionary(z_streamp strm, const Bytef *dictionary,
common/dist/zlib/inflate.c
254
local int updatewindow(z_streamp strm, const Bytef *end, unsigned copy) {
common/dist/zlib/inflate.c
651
state->head->name[state->length++] = (Bytef)len;
common/dist/zlib/inflate.c
673
state->head->comment[state->length++] = (Bytef)len;
common/dist/zlib/test/example.c
426
(const Bytef*)dictionary, (int)sizeof(dictionary));
common/dist/zlib/test/example.c
476
err = inflateSetDictionary(&d_stream, (const Bytef*)dictionary,
common/dist/zlib/test/example.c
71
err = compress(compr, &comprLen, (const Bytef*)hello, len);
common/dist/zlib/trees.c
869
zmemcpy(s->pending_buf + s->pending, (Bytef *)buf, stored_len);
common/dist/zlib/uncompr.c
31
int ZEXPORT uncompress2_z(Bytef *dest, z_size_t *destLen, const Bytef *source,
common/dist/zlib/uncompr.c
45
dest = (Bytef *)&stream.reserved; /* next_out cannot be NULL */
common/dist/zlib/uncompr.c
47
stream.next_in = (z_const Bytef *)source;
common/dist/zlib/uncompr.c
85
int ZEXPORT uncompress2(Bytef *dest, uLongf *destLen, const Bytef *source,
common/dist/zlib/uncompr.c
94
int ZEXPORT uncompress_z(Bytef *dest, z_size_t *destLen, const Bytef *source,
common/dist/zlib/uncompr.c
99
int ZEXPORT uncompress(Bytef *dest, uLongf *destLen, const Bytef *source,
common/dist/zlib/zlib.h
125
Bytef *extra; /* pointer to extra field or Z_NULL if none */
common/dist/zlib/zlib.h
1273
ZEXTERN int ZEXPORT compress(Bytef *dest, uLongf *destLen,
common/dist/zlib/zlib.h
1274
const Bytef *source, uLong sourceLen);
common/dist/zlib/zlib.h
1275
ZEXTERN int ZEXPORT compress_z(Bytef *dest, z_size_t *destLen,
common/dist/zlib/zlib.h
1276
const Bytef *source, z_size_t sourceLen);
common/dist/zlib/zlib.h
128
Bytef *name; /* pointer to zero-terminated file name or Z_NULL */
common/dist/zlib/zlib.h
1290
ZEXTERN int ZEXPORT compress2(Bytef *dest, uLongf *destLen,
common/dist/zlib/zlib.h
1291
const Bytef *source, uLong sourceLen,
common/dist/zlib/zlib.h
1293
ZEXTERN int ZEXPORT compress2_z(Bytef *dest, z_size_t *destLen,
common/dist/zlib/zlib.h
1294
const Bytef *source, z_size_t sourceLen,
common/dist/zlib/zlib.h
130
Bytef *comment; /* pointer to zero-terminated comment or Z_NULL */
common/dist/zlib/zlib.h
1317
ZEXTERN int ZEXPORT uncompress(Bytef *dest, uLongf *destLen,
common/dist/zlib/zlib.h
1318
const Bytef *source, uLong sourceLen);
common/dist/zlib/zlib.h
1319
ZEXTERN int ZEXPORT uncompress_z(Bytef *dest, z_size_t *destLen,
common/dist/zlib/zlib.h
1320
const Bytef *source, z_size_t sourceLen);
common/dist/zlib/zlib.h
1337
ZEXTERN int ZEXPORT uncompress2(Bytef *dest, uLongf *destLen,
common/dist/zlib/zlib.h
1338
const Bytef *source, uLong *sourceLen);
common/dist/zlib/zlib.h
1339
ZEXTERN int ZEXPORT uncompress2_z(Bytef *dest, z_size_t *destLen,
common/dist/zlib/zlib.h
1340
const Bytef *source, z_size_t *sourceLen);
common/dist/zlib/zlib.h
1811
ZEXTERN uLong ZEXPORT adler32(uLong adler, const Bytef *buf, uInt len);
common/dist/zlib/zlib.h
1831
ZEXTERN uLong ZEXPORT adler32_z(uLong adler, const Bytef *buf,
common/dist/zlib/zlib.h
1851
ZEXTERN uLong ZEXPORT crc32(uLong crc, const Bytef *buf, uInt len);
common/dist/zlib/zlib.h
1870
ZEXTERN uLong ZEXPORT crc32_z(uLong crc, const Bytef *buf,
common/dist/zlib/zlib.h
621
const Bytef *dictionary,
common/dist/zlib/zlib.h
665
Bytef *dictionary,
common/dist/zlib/zlib.h
916
const Bytef *dictionary,
common/dist/zlib/zlib.h
93
z_const Bytef *next_in; /* next input byte */
common/dist/zlib/zlib.h
939
Bytef *dictionary,
common/dist/zlib/zlib.h
97
Bytef *next_out; /* next output byte will go here */
sys/arch/hpc/stand/hpcboot/file_manager.cpp
39
uLong crc32(uLong crc, const Bytef *buf, uInt len);
sys/arch/pmax/stand/smallnet/smallnet.c
98
ret = uncompress((Bytef *)kernel_loadaddr, &destlen, kernel_image,
sys/net/zlib.c
1237
ds->window = (Bytef *) ZALLOC(dest, ds->w_size, 2*sizeof(Byte));
sys/net/zlib.c
1289
Bytef *buf,
sys/net/zlib.c
1354
Bytef *scan = s->window + s->strstart; /* current string */
sys/net/zlib.c
1355
Bytef *match; /* matched string */
sys/net/zlib.c
1371
Bytef *strend = s->window + s->strstart + MAX_MATCH - 1;
sys/net/zlib.c
1375
Bytef *strend = s->window + s->strstart + MAX_MATCH;
sys/net/zlib.c
1495
register Bytef *scan = s->window + s->strstart; /* current string */
sys/net/zlib.c
1496
register Bytef *match; /* matched string */
sys/net/zlib.c
1498
register Bytef *strend = s->window + s->strstart + MAX_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
272
typedef uLong (ZEXPORT *check_func)(uLong check, const Bytef *buf,
sys/net/zlib.c
3352
const Bytef *d, /* dictionary */
sys/net/zlib.c
3648
const Bytef *dictionary,
sys/net/zlib.c
3691
Bytef *p; /* pointer to bytes */
sys/net/zlib.c
371
Bytef *pending_buf; /* output still pending */
sys/net/zlib.c
373
Bytef *pending_out; /* next pending byte to output to the stream */
sys/net/zlib.c
386
Bytef *window;
sys/net/zlib.c
3917
Bytef *window; /* sliding window */
sys/net/zlib.c
3918
Bytef *end; /* one byte after sliding window */
sys/net/zlib.c
3919
Bytef *read; /* window read pointer */
sys/net/zlib.c
3920
Bytef *write; /* window write pointer */
sys/net/zlib.c
4037
z->adler = s->check = (*s->checkfn)(0L, (const Bytef *)Z_NULL, 0);
sys/net/zlib.c
4055
if ((s->window = (Bytef *)ZALLOC(z, 1, w)) == Z_NULL)
sys/net/zlib.c
4075
Bytef *p; /* input data pointer */
sys/net/zlib.c
4077
Bytef *q; /* output window write pointer */
sys/net/zlib.c
4334
void inflate_set_dictionary(inflate_blocks_statef *s, const Bytef *d, uInt n)
sys/net/zlib.c
4354
Bytef *p; /* input data pointer */
sys/net/zlib.c
4356
Bytef *q; /* output window write pointer */
sys/net/zlib.c
5141
Bytef *p; /* input data pointer */
sys/net/zlib.c
5143
Bytef *q; /* output window write pointer */
sys/net/zlib.c
5145
Bytef *f; /* pointer to copy strings from */
sys/net/zlib.c
5335
Bytef *p;
sys/net/zlib.c
5336
Bytef *q;
sys/net/zlib.c
5441
Bytef *p; /* input data pointer */
sys/net/zlib.c
5443
Bytef *q; /* output window write pointer */
sys/net/zlib.c
5449
Bytef *r; /* copy source pointer */
sys/net/zlib.c
5661
Bytef* dest;
sys/net/zlib.c
5662
const Bytef* source;
sys/net/zlib.c
5672
const Bytef* s1;
sys/net/zlib.c
5673
const Bytef* s2;
sys/net/zlib.c
5685
Bytef* dest;
sys/net/zlib.c
5848
uLong ZEXPORT adler32(uLong adler, const Bytef *buf, uInt len)
sys/net/zlib.c
692
local int read_buf(z_streamp strm, Bytef *buf, unsigned size);
sys/net/zlib.c
798
zmemzero((Bytef *)s->head, (unsigned)(s->hash_size-1)*sizeof(*s->head));
sys/net/zlib.c
869
s->window = (Bytef *) ZALLOC(strm, s->w_size, 2*sizeof(Byte));
sys/net/zlib.c
899
const Bytef *dictionary,
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
363
Bytef *next_in; /* next input byte */
sys/net/zlib.h
367
Bytef *next_out; /* next output byte should be put there */
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);
sys/net/zlib.h
916
ZEXTERN int ZEXPORT compress(Bytef *, uLongf *, const Bytef *, uLong);
sys/net/zlib.h
930
ZEXTERN int ZEXPORT compress2(Bytef *, uLongf *, const Bytef *,
sys/net/zlib.h
944
ZEXTERN int ZEXPORT uncompress(Bytef *, uLongf *, const Bytef *, uLong);
usr.bin/gzip/gzip.c
1004
crc = crc32(crc, (const Bytef *)outbufp, (unsigned)wr);
usr.bin/gzip/gzip.c
680
crc = crc32(crc, (const Bytef *)inbufp, (unsigned)in_size);