Symbol: Bytef
sbin/hammer2/zlib/hammer2_zlib.h
502
uLong adler32(uLong adler, const Bytef *buf, uInt len);
sbin/hammer2/zlib/hammer2_zlib.h
85
z_const Bytef *next_in; /* next input byte */
sbin/hammer2/zlib/hammer2_zlib.h
89
Bytef *next_out; /* next output byte should be put there */
sbin/hammer2/zlib/hammer2_zlib_adler32.c
69
adler32(uLong adler, const Bytef *buf, uInt len)
sbin/hammer2/zlib/hammer2_zlib_deflate.c
1105
Bytef *scan, *strend; /* scan goes up to strend for length of run */
sbin/hammer2/zlib/hammer2_zlib_deflate.c
189
zmemzero((Bytef *)s->head, (unsigned)(s->hash_size-1)*sizeof(*s->head));
sbin/hammer2/zlib/hammer2_zlib_deflate.c
249
s->window = (Bytef *) malloc((s->w_size)*2*sizeof(Byte));
sbin/hammer2/zlib/hammer2_zlib_deflate.c
547
read_buf(z_streamp strm, Bytef *buf, unsigned size)
sbin/hammer2/zlib/hammer2_zlib_deflate.c
618
register Bytef *scan = s->window + s->strstart; /* current string */
sbin/hammer2/zlib/hammer2_zlib_deflate.c
619
register Bytef *match; /* matched string */
sbin/hammer2/zlib/hammer2_zlib_deflate.c
635
register Bytef *strend = s->window + s->strstart + MAX_MATCH - 1;
sbin/hammer2/zlib/hammer2_zlib_deflate.c
639
register Bytef *strend = s->window + s->strstart + MAX_MATCH;
sbin/hammer2/zlib/hammer2_zlib_deflate.c
86
local int read_buf(z_streamp strm, Bytef *buf, unsigned size);
sbin/hammer2/zlib/hammer2_zlib_deflate.h
107
Bytef *window;
sbin/hammer2/zlib/hammer2_zlib_deflate.h
92
Bytef *pending_buf; /* output still pending */
sbin/hammer2/zlib/hammer2_zlib_deflate.h
94
Bytef *pending_out; /* next pending byte to output to the stream */
sbin/hammer2/zlib/hammer2_zlib_inflate.c
361
updatewindow(z_streamp strm, const Bytef *end, unsigned copy)
sbin/hammer2/zlib/hammer2_zlib_zutil.c
153
zmemcpy(Bytef* dest, const Bytef* source, uInt len)
sbin/hammer2/zlib/hammer2_zlib_zutil.c
163
zmemcmp(const Bytef* s1, const Bytef* s2, uInt len)
sbin/hammer2/zlib/hammer2_zlib_zutil.c
175
zmemzero(Bytef* dest, uInt len)
sbin/hammer2/zlib/hammer2_zlib_zutil.h
120
void ZLIB_INTERNAL zmemcpy((Bytef* dest, const Bytef* source, uInt len));
sbin/hammer2/zlib/hammer2_zlib_zutil.h
121
int ZLIB_INTERNAL zmemcmp((const Bytef* s1, const Bytef* s2, uInt len));
sbin/hammer2/zlib/hammer2_zlib_zutil.h
122
void ZLIB_INTERNAL zmemzero((Bytef* dest, uInt len));
sys/net/zlib.c
1157
ds->window = (Bytef *) ZALLOC(dest, ds->w_size, 2*sizeof(Byte));
sys/net/zlib.c
1272
Bytef *scan = s->window + s->strstart; /* current string */
sys/net/zlib.c
1273
Bytef *match; /* matched string */
sys/net/zlib.c
1289
Bytef *strend = s->window + s->strstart + MAX_MATCH - 1;
sys/net/zlib.c
1293
Bytef *strend = s->window + s->strstart + MAX_MATCH;
sys/net/zlib.c
231
extern void zmemcpy OF((Bytef* dest, Bytef* source, uInt len));
sys/net/zlib.c
232
extern int zmemcmp OF((Bytef* s1, Bytef* s2, uInt len));
sys/net/zlib.c
233
extern void zmemzero OF((Bytef* dest, uInt len));
sys/net/zlib.c
259
typedef uLong (*check_func) OF((uLong check, const Bytef *buf, uInt len));
sys/net/zlib.c
3055
const Bytef *d, /* dictionary */
sys/net/zlib.c
3340
inflateSetDictionary(z_streamp z, const Bytef *dictionary, uInt dictLength)
sys/net/zlib.c
3382
Bytef *p; /* pointer to bytes */
sys/net/zlib.c
3462
Bytef *pad; /* pad structure to a power of 2 (4 bytes for */
sys/net/zlib.c
357
Bytef *pending_buf; /* output still pending */
sys/net/zlib.c
3587
Bytef *window; /* sliding window */
sys/net/zlib.c
3588
Bytef *end; /* one byte after sliding window */
sys/net/zlib.c
3589
Bytef *read; /* window read pointer */
sys/net/zlib.c
359
Bytef *pending_out; /* next pending byte to output to the stream */
sys/net/zlib.c
3590
Bytef *write; /* window write pointer */
sys/net/zlib.c
372
Bytef *window;
sys/net/zlib.c
3721
if ((s->window = (Bytef *)ZALLOC(z, 1, w)) == Z_NULL)
sys/net/zlib.c
3745
Bytef *p; /* input data pointer */
sys/net/zlib.c
3747
Bytef *q; /* output window write pointer */
sys/net/zlib.c
4025
inflate_set_dictionary(inflate_blocks_statef *s, const Bytef *d, uInt n)
sys/net/zlib.c
4045
Bytef *p; /* input data pointer */
sys/net/zlib.c
4047
Bytef *q; /* output window write pointer */
sys/net/zlib.c
4715
Bytef *p; /* input data pointer */
sys/net/zlib.c
4717
Bytef *q; /* output window write pointer */
sys/net/zlib.c
4719
Bytef *f; /* pointer to copy strings from */
sys/net/zlib.c
4902
Bytef *p;
sys/net/zlib.c
4903
Bytef *q;
sys/net/zlib.c
5010
Bytef *p; /* input data pointer */
sys/net/zlib.c
5012
Bytef *q; /* output window write pointer */
sys/net/zlib.c
5018
Bytef *r; /* copy source pointer */
sys/net/zlib.c
5180
zmemcpy(Bytef *dest, Bytef *source, uInt len)
sys/net/zlib.c
5189
zmemcmp(Bytef *s1, Bytef *s2, uInt len)
sys/net/zlib.c
5200
zmemzero(Bytef *dest, uInt len)
sys/net/zlib.c
5364
adler32(uLong adler, const Bytef *buf, uInt len)
sys/net/zlib.c
800
s->window = (Bytef *) ZALLOC(strm, s->w_size, 2*sizeof(Byte));
sys/net/zlib.c
828
deflateSetDictionary(z_streamp strm, const Bytef *dictionary, uInt dictLength)
sys/net/zlib.h
279
Bytef *next_in; /* next input byte */
sys/net/zlib.h
283
Bytef *next_out; /* next output byte should be put there */
sys/net/zlib.h
652
const Bytef *dictionary,
sys/net/zlib.h
775
const Bytef *dictionary,
sys/net/zlib.h
837
extern int EXPORT compress OF((Bytef *dest, uLongf *destLen,
sys/net/zlib.h
838
const Bytef *source, uLong sourceLen));
sys/net/zlib.h
852
extern int EXPORT uncompress OF((Bytef *dest, uLongf *destLen,
sys/net/zlib.h
853
const Bytef *source, uLong sourceLen));
sys/net/zlib.h
947
extern uLong EXPORT adler32 OF((uLong adler, const Bytef *buf, uInt len));
sys/net/zlib.h
965
extern uLong EXPORT crc32 OF((uLong crc, const Bytef *buf, uInt len));
sys/vfs/hammer2/zlib/hammer2_zlib.h
502
uLong adler32(uLong adler, const Bytef *buf, uInt len);
sys/vfs/hammer2/zlib/hammer2_zlib.h
85
z_const Bytef *next_in; /* next input byte */
sys/vfs/hammer2/zlib/hammer2_zlib.h
89
Bytef *next_out; /* next output byte should be put there */
sys/vfs/hammer2/zlib/hammer2_zlib_adler32.c
69
adler32(uLong adler, const Bytef *buf, uInt len)
sys/vfs/hammer2/zlib/hammer2_zlib_deflate.c
1110
Bytef *scan, *strend; /* scan goes up to strend for length of run */
sys/vfs/hammer2/zlib/hammer2_zlib_deflate.c
194
zmemzero((Bytef *)s->head, (unsigned)(s->hash_size-1)*sizeof(*s->head));
sys/vfs/hammer2/zlib/hammer2_zlib_deflate.c
254
s->window = (Bytef *) kmalloc((s->w_size)*2*sizeof(Byte), C_ZLIB_BUFFER_DEFLATE, M_INTWAIT);
sys/vfs/hammer2/zlib/hammer2_zlib_deflate.c
552
read_buf(z_streamp strm, Bytef *buf, unsigned size)
sys/vfs/hammer2/zlib/hammer2_zlib_deflate.c
623
register Bytef *scan = s->window + s->strstart; /* current string */
sys/vfs/hammer2/zlib/hammer2_zlib_deflate.c
624
register Bytef *match; /* matched string */
sys/vfs/hammer2/zlib/hammer2_zlib_deflate.c
640
register Bytef *strend = s->window + s->strstart + MAX_MATCH - 1;
sys/vfs/hammer2/zlib/hammer2_zlib_deflate.c
644
register Bytef *strend = s->window + s->strstart + MAX_MATCH;
sys/vfs/hammer2/zlib/hammer2_zlib_deflate.c
91
local int read_buf(z_streamp strm, Bytef *buf, unsigned size);
sys/vfs/hammer2/zlib/hammer2_zlib_deflate.h
107
Bytef *window;
sys/vfs/hammer2/zlib/hammer2_zlib_deflate.h
92
Bytef *pending_buf; /* output still pending */
sys/vfs/hammer2/zlib/hammer2_zlib_deflate.h
94
Bytef *pending_out; /* next pending byte to output to the stream */
sys/vfs/hammer2/zlib/hammer2_zlib_inflate.c
366
updatewindow(z_streamp strm, const Bytef *end, unsigned copy)
sys/vfs/hammer2/zlib/hammer2_zlib_zutil.c
153
zmemcpy(Bytef* dest, const Bytef* source, uInt len)
sys/vfs/hammer2/zlib/hammer2_zlib_zutil.c
163
zmemcmp(const Bytef* s1, const Bytef* s2, uInt len)
sys/vfs/hammer2/zlib/hammer2_zlib_zutil.c
175
zmemzero(Bytef* dest, uInt len)
sys/vfs/hammer2/zlib/hammer2_zlib_zutil.h
120
void ZLIB_INTERNAL zmemcpy((Bytef* dest, const Bytef* source, uInt len));
sys/vfs/hammer2/zlib/hammer2_zlib_zutil.h
121
int ZLIB_INTERNAL zmemcmp((const Bytef* s1, const Bytef* s2, uInt len));
sys/vfs/hammer2/zlib/hammer2_zlib_zutil.h
122
void ZLIB_INTERNAL zmemzero((Bytef* dest, uInt len));
usr.bin/gzip/gzip.c
596
crc = crc32(crc, (const Bytef *)inbufp, (unsigned)in_size);
usr.bin/gzip/gzip.c
916
crc = crc32(crc, (const Bytef *)outbufp, (unsigned)wr);
usr.sbin/makefs/hammer2/zlib/hammer2_zlib.h
502
uLong adler32(uLong adler, const Bytef *buf, uInt len);
usr.sbin/makefs/hammer2/zlib/hammer2_zlib.h
85
z_const Bytef *next_in; /* next input byte */
usr.sbin/makefs/hammer2/zlib/hammer2_zlib.h
89
Bytef *next_out; /* next output byte should be put there */
usr.sbin/makefs/hammer2/zlib/hammer2_zlib_adler32.c
69
adler32(uLong adler, const Bytef *buf, uInt len)
usr.sbin/makefs/hammer2/zlib/hammer2_zlib_deflate.c
1110
Bytef *scan, *strend; /* scan goes up to strend for length of run */
usr.sbin/makefs/hammer2/zlib/hammer2_zlib_deflate.c
194
zmemzero((Bytef *)s->head, (unsigned)(s->hash_size-1)*sizeof(*s->head));
usr.sbin/makefs/hammer2/zlib/hammer2_zlib_deflate.c
254
s->window = (Bytef *) kmalloc((s->w_size)*2*sizeof(Byte), C_ZLIB_BUFFER_DEFLATE, M_INTWAIT);
usr.sbin/makefs/hammer2/zlib/hammer2_zlib_deflate.c
552
read_buf(z_streamp strm, Bytef *buf, unsigned size)
usr.sbin/makefs/hammer2/zlib/hammer2_zlib_deflate.c
623
register Bytef *scan = s->window + s->strstart; /* current string */
usr.sbin/makefs/hammer2/zlib/hammer2_zlib_deflate.c
624
register Bytef *match; /* matched string */
usr.sbin/makefs/hammer2/zlib/hammer2_zlib_deflate.c
640
register Bytef *strend = s->window + s->strstart + MAX_MATCH - 1;
usr.sbin/makefs/hammer2/zlib/hammer2_zlib_deflate.c
644
register Bytef *strend = s->window + s->strstart + MAX_MATCH;
usr.sbin/makefs/hammer2/zlib/hammer2_zlib_deflate.c
91
local int read_buf(z_streamp strm, Bytef *buf, unsigned size);
usr.sbin/makefs/hammer2/zlib/hammer2_zlib_deflate.h
107
Bytef *window;
usr.sbin/makefs/hammer2/zlib/hammer2_zlib_deflate.h
92
Bytef *pending_buf; /* output still pending */
usr.sbin/makefs/hammer2/zlib/hammer2_zlib_deflate.h
94
Bytef *pending_out; /* next pending byte to output to the stream */
usr.sbin/makefs/hammer2/zlib/hammer2_zlib_inflate.c
366
updatewindow(z_streamp strm, const Bytef *end, unsigned copy)
usr.sbin/makefs/hammer2/zlib/hammer2_zlib_zutil.c
153
zmemcpy(Bytef* dest, const Bytef* source, uInt len)
usr.sbin/makefs/hammer2/zlib/hammer2_zlib_zutil.c
163
zmemcmp(const Bytef* s1, const Bytef* s2, uInt len)
usr.sbin/makefs/hammer2/zlib/hammer2_zlib_zutil.c
175
zmemzero(Bytef* dest, uInt len)
usr.sbin/makefs/hammer2/zlib/hammer2_zlib_zutil.h
120
void ZLIB_INTERNAL zmemcpy((Bytef* dest, const Bytef* source, uInt len));
usr.sbin/makefs/hammer2/zlib/hammer2_zlib_zutil.h
121
int ZLIB_INTERNAL zmemcmp((const Bytef* s1, const Bytef* s2, uInt len));
usr.sbin/makefs/hammer2/zlib/hammer2_zlib_zutil.h
122
void ZLIB_INTERNAL zmemzero((Bytef* dest, uInt len));