Symbol: Bytef
lib/libz/adler32.c
126
uLong ZEXPORT adler32(uLong adler, const Bytef *buf, uInt len) {
lib/libz/adler32.c
59
uLong ZEXPORT adler32_z(uLong adler, const Bytef *buf, z_size_t len) {
lib/libz/compress.c
22
int ZEXPORT compress2_z(Bytef *dest, z_size_t *destLen, const Bytef *source,
lib/libz/compress.c
45
stream.next_in = (z_const Bytef *)source;
lib/libz/compress.c
65
int ZEXPORT compress2(Bytef *dest, uLongf *destLen, const Bytef *source,
lib/libz/compress.c
75
int ZEXPORT compress_z(Bytef *dest, z_size_t *destLen, const Bytef *source,
lib/libz/compress.c
80
int ZEXPORT compress(Bytef *dest, uLongf *destLen, const Bytef *source,
lib/libz/deflate.c
1338
ds->window = (Bytef *) ZALLOC(dest, ds->w_size, 2*sizeof(Byte));
lib/libz/deflate.c
1387
Bytef *scan = s->window + s->strstart; /* current string */
lib/libz/deflate.c
1388
Bytef *match; /* matched string */
lib/libz/deflate.c
1404
Bytef *strend = s->window + s->strstart + MAX_MATCH - 1;
lib/libz/deflate.c
1408
Bytef *strend = s->window + s->strstart + MAX_MATCH;
lib/libz/deflate.c
1534
Bytef *scan = s->window + s->strstart; /* current string */
lib/libz/deflate.c
1535
Bytef *match; /* matched string */
lib/libz/deflate.c
1537
Bytef *strend = s->window + s->strstart + MAX_MATCH;
lib/libz/deflate.c
1596
Bytef *back = s->window + (int)match, *here = s->window + start;
lib/libz/deflate.c
1712
s->pending_buf[s->pending - 4] = (Bytef)len;
lib/libz/deflate.c
1713
s->pending_buf[s->pending - 3] = (Bytef)(len >> 8);
lib/libz/deflate.c
1714
s->pending_buf[s->pending - 2] = (Bytef)~len;
lib/libz/deflate.c
1715
s->pending_buf[s->pending - 1] = (Bytef)(~len >> 8);
lib/libz/deflate.c
2083
Bytef *scan, *strend; /* scan goes up to strend for length of run */
lib/libz/deflate.c
215
local unsigned read_buf(z_streamp strm, Bytef *buf, unsigned size) {
lib/libz/deflate.c
454
s->window = (Bytef *) ZALLOC(strm, s->w_size, 2*sizeof(Byte));
lib/libz/deflate.c
555
int ZEXPORT deflateSetDictionary(z_streamp strm, const Bytef *dictionary,
lib/libz/deflate.c
591
strm->next_in = (z_const Bytef *)dictionary;
lib/libz/deflate.c
621
int ZEXPORT deflateGetDictionary(z_streamp strm, Bytef *dictionary,
lib/libz/deflate.c
890
Bytef *str;
lib/libz/deflate.h
105
Bytef *pending_buf; /* output still pending */
lib/libz/deflate.h
107
Bytef *pending_out; /* next pending byte to output to the stream */
lib/libz/deflate.h
121
Bytef *window;
lib/libz/deflate.h
291
#define put_byte(s, c) {s->pending_buf[s->pending++] = (Bytef)(c);}
lib/libz/gzwrite.c
234
state->strm.next_in = (z_const Bytef *)buf;
lib/libz/inflate.c
1253
int ZEXPORT inflateGetDictionary(z_streamp strm, Bytef *dictionary,
lib/libz/inflate.c
1273
int ZEXPORT inflateSetDictionary(z_streamp strm, const Bytef *dictionary,
lib/libz/inflate.c
252
local int updatewindow(z_streamp strm, const Bytef *end, unsigned copy) {
lib/libz/inflate.c
662
state->head->name[state->length++] = (Bytef)len;
lib/libz/inflate.c
684
state->head->comment[state->length++] = (Bytef)len;
lib/libz/trees.c
865
zmemcpy(s->pending_buf + s->pending, (Bytef *)buf, stored_len);
lib/libz/uncompr.c
27
int ZEXPORT uncompress2_z(Bytef *dest, z_size_t *destLen, const Bytef *source,
lib/libz/uncompr.c
41
dest = (Bytef *)&stream.reserved; /* next_out cannot be NULL */
lib/libz/uncompr.c
43
stream.next_in = (z_const Bytef *)source;
lib/libz/uncompr.c
81
int ZEXPORT uncompress2(Bytef *dest, uLongf *destLen, const Bytef *source,
lib/libz/uncompr.c
90
int ZEXPORT uncompress_z(Bytef *dest, z_size_t *destLen, const Bytef *source,
lib/libz/uncompr.c
95
int ZEXPORT uncompress(Bytef *dest, uLongf *destLen, const Bytef *source,
lib/libz/zlib.h
123
Bytef *extra; /* pointer to extra field or Z_NULL if none */
lib/libz/zlib.h
126
Bytef *name; /* pointer to zero-terminated file name or Z_NULL */
lib/libz/zlib.h
1271
ZEXTERN int ZEXPORT compress(Bytef *dest, uLongf *destLen,
lib/libz/zlib.h
1272
const Bytef *source, uLong sourceLen);
lib/libz/zlib.h
1273
ZEXTERN int ZEXPORT compress_z(Bytef *dest, z_size_t *destLen,
lib/libz/zlib.h
1274
const Bytef *source, z_size_t sourceLen);
lib/libz/zlib.h
128
Bytef *comment; /* pointer to zero-terminated comment or Z_NULL */
lib/libz/zlib.h
1288
ZEXTERN int ZEXPORT compress2(Bytef *dest, uLongf *destLen,
lib/libz/zlib.h
1289
const Bytef *source, uLong sourceLen,
lib/libz/zlib.h
1291
ZEXTERN int ZEXPORT compress2_z(Bytef *dest, z_size_t *destLen,
lib/libz/zlib.h
1292
const Bytef *source, z_size_t sourceLen,
lib/libz/zlib.h
1315
ZEXTERN int ZEXPORT uncompress(Bytef *dest, uLongf *destLen,
lib/libz/zlib.h
1316
const Bytef *source, uLong sourceLen);
lib/libz/zlib.h
1317
ZEXTERN int ZEXPORT uncompress_z(Bytef *dest, z_size_t *destLen,
lib/libz/zlib.h
1318
const Bytef *source, z_size_t sourceLen);
lib/libz/zlib.h
1335
ZEXTERN int ZEXPORT uncompress2(Bytef *dest, uLongf *destLen,
lib/libz/zlib.h
1336
const Bytef *source, uLong *sourceLen);
lib/libz/zlib.h
1337
ZEXTERN int ZEXPORT uncompress2_z(Bytef *dest, z_size_t *destLen,
lib/libz/zlib.h
1338
const Bytef *source, z_size_t *sourceLen);
lib/libz/zlib.h
1809
ZEXTERN uLong ZEXPORT adler32(uLong adler, const Bytef *buf, uInt len);
lib/libz/zlib.h
1829
ZEXTERN uLong ZEXPORT adler32_z(uLong adler, const Bytef *buf,
lib/libz/zlib.h
1848
ZEXTERN uLong ZEXPORT crc32(uLong crc, const Bytef *buf, uInt len);
lib/libz/zlib.h
1866
ZEXTERN uLong ZEXPORT crc32_z(uLong crc, const Bytef *buf,
lib/libz/zlib.h
619
const Bytef *dictionary,
lib/libz/zlib.h
663
Bytef *dictionary,
lib/libz/zlib.h
91
z_const Bytef *next_in; /* next input byte */
lib/libz/zlib.h
914
const Bytef *dictionary,
lib/libz/zlib.h
937
Bytef *dictionary,
lib/libz/zlib.h
95
Bytef *next_out; /* next output byte will go here */
regress/lib/libz/example.c
420
(const Bytef*)dictionary, (int)sizeof(dictionary));
regress/lib/libz/example.c
470
err = inflateSetDictionary(&d_stream, (const Bytef*)dictionary,
regress/lib/libz/example.c
65
err = compress(compr, &comprLen, (const Bytef*)hello, len);
sys/lib/libz/adler32.c
126
uLong ZEXPORT adler32(uLong adler, const Bytef *buf, uInt len) {
sys/lib/libz/adler32.c
59
uLong ZEXPORT adler32_z(uLong adler, const Bytef *buf, z_size_t len) {
sys/lib/libz/compress.c
22
int ZEXPORT compress2_z(Bytef *dest, z_size_t *destLen, const Bytef *source,
sys/lib/libz/compress.c
45
stream.next_in = (z_const Bytef *)source;
sys/lib/libz/compress.c
65
int ZEXPORT compress2(Bytef *dest, uLongf *destLen, const Bytef *source,
sys/lib/libz/compress.c
75
int ZEXPORT compress_z(Bytef *dest, z_size_t *destLen, const Bytef *source,
sys/lib/libz/compress.c
80
int ZEXPORT compress(Bytef *dest, uLongf *destLen, const Bytef *source,
sys/lib/libz/deflate.c
1338
ds->window = (Bytef *) ZALLOC(dest, ds->w_size, 2*sizeof(Byte));
sys/lib/libz/deflate.c
1387
Bytef *scan = s->window + s->strstart; /* current string */
sys/lib/libz/deflate.c
1388
Bytef *match; /* matched string */
sys/lib/libz/deflate.c
1404
Bytef *strend = s->window + s->strstart + MAX_MATCH - 1;
sys/lib/libz/deflate.c
1408
Bytef *strend = s->window + s->strstart + MAX_MATCH;
sys/lib/libz/deflate.c
1534
Bytef *scan = s->window + s->strstart; /* current string */
sys/lib/libz/deflate.c
1535
Bytef *match; /* matched string */
sys/lib/libz/deflate.c
1537
Bytef *strend = s->window + s->strstart + MAX_MATCH;
sys/lib/libz/deflate.c
1596
Bytef *back = s->window + (int)match, *here = s->window + start;
sys/lib/libz/deflate.c
1714
s->pending_buf[s->pending - 4] = (Bytef)len;
sys/lib/libz/deflate.c
1715
s->pending_buf[s->pending - 3] = (Bytef)(len >> 8);
sys/lib/libz/deflate.c
1716
s->pending_buf[s->pending - 2] = (Bytef)~len;
sys/lib/libz/deflate.c
1717
s->pending_buf[s->pending - 1] = (Bytef)(~len >> 8);
sys/lib/libz/deflate.c
2085
Bytef *scan, *strend; /* scan goes up to strend for length of run */
sys/lib/libz/deflate.c
215
local unsigned read_buf(z_streamp strm, Bytef *buf, unsigned size) {
sys/lib/libz/deflate.c
454
s->window = (Bytef *) ZALLOC(strm, s->w_size, 2*sizeof(Byte));
sys/lib/libz/deflate.c
555
int ZEXPORT deflateSetDictionary(z_streamp strm, const Bytef *dictionary,
sys/lib/libz/deflate.c
591
strm->next_in = (z_const Bytef *)dictionary;
sys/lib/libz/deflate.c
621
int ZEXPORT deflateGetDictionary(z_streamp strm, Bytef *dictionary,
sys/lib/libz/deflate.c
890
Bytef *str;
sys/lib/libz/deflate.h
105
Bytef *pending_buf; /* output still pending */
sys/lib/libz/deflate.h
107
Bytef *pending_out; /* next pending byte to output to the stream */
sys/lib/libz/deflate.h
121
Bytef *window;
sys/lib/libz/deflate.h
291
#define put_byte(s, c) {s->pending_buf[s->pending++] = (Bytef)(c);}
sys/lib/libz/inflate.c
1253
int ZEXPORT inflateGetDictionary(z_streamp strm, Bytef *dictionary,
sys/lib/libz/inflate.c
1273
int ZEXPORT inflateSetDictionary(z_streamp strm, const Bytef *dictionary,
sys/lib/libz/inflate.c
252
local int updatewindow(z_streamp strm, const Bytef *end, unsigned copy) {
sys/lib/libz/inflate.c
662
state->head->name[state->length++] = (Bytef)len;
sys/lib/libz/inflate.c
684
state->head->comment[state->length++] = (Bytef)len;
sys/lib/libz/trees.c
865
zmemcpy(s->pending_buf + s->pending, (Bytef *)buf, stored_len);
sys/lib/libz/zlib.h
123
Bytef *extra; /* pointer to extra field or Z_NULL if none */
sys/lib/libz/zlib.h
126
Bytef *name; /* pointer to zero-terminated file name or Z_NULL */
sys/lib/libz/zlib.h
1271
ZEXTERN int ZEXPORT compress(Bytef *dest, uLongf *destLen,
sys/lib/libz/zlib.h
1272
const Bytef *source, uLong sourceLen);
sys/lib/libz/zlib.h
1273
ZEXTERN int ZEXPORT compress_z(Bytef *dest, z_size_t *destLen,
sys/lib/libz/zlib.h
1274
const Bytef *source, z_size_t sourceLen);
sys/lib/libz/zlib.h
128
Bytef *comment; /* pointer to zero-terminated comment or Z_NULL */
sys/lib/libz/zlib.h
1288
ZEXTERN int ZEXPORT compress2(Bytef *dest, uLongf *destLen,
sys/lib/libz/zlib.h
1289
const Bytef *source, uLong sourceLen,
sys/lib/libz/zlib.h
1291
ZEXTERN int ZEXPORT compress2_z(Bytef *dest, z_size_t *destLen,
sys/lib/libz/zlib.h
1292
const Bytef *source, z_size_t sourceLen,
sys/lib/libz/zlib.h
1315
ZEXTERN int ZEXPORT uncompress(Bytef *dest, uLongf *destLen,
sys/lib/libz/zlib.h
1316
const Bytef *source, uLong sourceLen);
sys/lib/libz/zlib.h
1317
ZEXTERN int ZEXPORT uncompress_z(Bytef *dest, z_size_t *destLen,
sys/lib/libz/zlib.h
1318
const Bytef *source, z_size_t sourceLen);
sys/lib/libz/zlib.h
1335
ZEXTERN int ZEXPORT uncompress2(Bytef *dest, uLongf *destLen,
sys/lib/libz/zlib.h
1336
const Bytef *source, uLong *sourceLen);
sys/lib/libz/zlib.h
1337
ZEXTERN int ZEXPORT uncompress2_z(Bytef *dest, z_size_t *destLen,
sys/lib/libz/zlib.h
1338
const Bytef *source, z_size_t *sourceLen);
sys/lib/libz/zlib.h
1809
ZEXTERN uLong ZEXPORT adler32(uLong adler, const Bytef *buf, uInt len);
sys/lib/libz/zlib.h
1829
ZEXTERN uLong ZEXPORT adler32_z(uLong adler, const Bytef *buf,
sys/lib/libz/zlib.h
1848
ZEXTERN uLong ZEXPORT crc32(uLong crc, const Bytef *buf, uInt len);
sys/lib/libz/zlib.h
1866
ZEXTERN uLong ZEXPORT crc32_z(uLong crc, const Bytef *buf,
sys/lib/libz/zlib.h
619
const Bytef *dictionary,
sys/lib/libz/zlib.h
663
Bytef *dictionary,
sys/lib/libz/zlib.h
91
z_const Bytef *next_in; /* next input byte */
sys/lib/libz/zlib.h
914
const Bytef *dictionary,
sys/lib/libz/zlib.h
937
Bytef *dictionary,
sys/lib/libz/zlib.h
95
Bytef *next_out; /* next output byte will go here */
usr.bin/compress/zipopen.c
318
Bytef *ubuf = buf;
usr.sbin/ldapd/util.c
110
Bytef *dest;
usr.sbin/ldapd/util.c
163
Bytef *src;
usr.sbin/mkuboot/mkuboot.c
249
crc = crc32(crc, (Bytef *)&fsize, sizeof(fsize));
usr.sbin/mkuboot/mkuboot.c
253
crc = crc32(crc, (Bytef *)&fsize, sizeof(fsize));
usr.sbin/mkuboot/mkuboot.c
271
crc = crc32(0, (Bytef *)&ih, sizeof ih);
usr.sbin/mkuboot/mkuboot.c
321
crc = crc32(crc, (Bytef *)buf, nbytes);
usr.sbin/mkuboot/mkuboot.c
340
crc = crc32(crc, (Bytef *)memp, nbytes);
usr.sbin/mkuboot/mkuboot.c
362
crc = crc32(crc, (Bytef *)buf, nbytes);
usr.sbin/mkuboot/mkuboot.c
382
crc = crc32(crc, (Bytef *)buf, nbytes);