Home
last modified time | relevance | path

Searched refs:uInt (Results 1 – 7 of 7) sorted by relevance

/rk3399_ARM-atf/lib/zlib/
H A Dzutil.c35 switch ((int)(sizeof(uInt))) { in zlibCompileFlags()
145 void ZLIB_INTERNAL zmemcpy(Bytef* dest, const Bytef* source, uInt len) { in zmemcpy()
152 int ZLIB_INTERNAL zmemcmp(const Bytef* s1, const Bytef* s2, uInt len) { in zmemcmp()
153 uInt j; in zmemcmp()
161 void ZLIB_INTERNAL zmemzero(Bytef* dest, uInt len) { in zmemzero()
263 voidpf ZLIB_INTERNAL zcalloc(voidpf opaque, uInt items, uInt size) { in zcalloc()
281 extern voidp malloc(uInt size);
282 extern voidp calloc(uInt items, uInt size);
288 return sizeof(uInt) > 2 ? (voidpf)malloc(items * size) : in zcalloc()
H A Dzlib.h85 typedef voidpf (*alloc_func)(voidpf opaque, uInt items, uInt size);
92 uInt avail_in; /* number of bytes available at next_in */
96 uInt avail_out; /* remaining free space at next_out */
124 uInt extra_len; /* extra field length (valid if extra != Z_NULL) */
125 uInt extra_max; /* space at extra (only when reading header) */
127 uInt name_max; /* space at name (only when reading header) */
129 uInt comm_max; /* space at comment (only when reading header) */
620 uInt dictLength);
664 uInt *dictLength);
909 uInt dictLength);
[all …]
H A Dzutil.h217 void ZLIB_INTERNAL zmemcpy(Bytef* dest, const Bytef* source, uInt len);
218 int ZLIB_INTERNAL zmemcmp(const Bytef* s1, const Bytef* s2, uInt len);
219 void ZLIB_INTERNAL zmemzero(Bytef* dest, uInt len);
H A Dzconf.h158 # define uInt z_uInt macro
398 typedef unsigned int uInt; /* 16 bits or more */ typedef
409 typedef uInt FAR uIntf;
H A Dadler32.c128 uLong ZEXPORT adler32(uLong adler, const Bytef *buf, uInt len) { in adler32()
H A Dinflate.c235 if (bits > 16 || state->bits + (uInt)bits > 32) return Z_STREAM_ERROR; in inflatePrime()
238 state->bits += (uInt)bits; in inflatePrime()
1279 uInt *dictLength) { in inflateGetDictionary()
1299 uInt dictLength) { in inflateSetDictionary()
H A Dcrc32.c1016 uInt len) { in crc32()