Searched refs:uInt (Results 1 – 7 of 7) sorted by relevance
/optee_os-3.20.0/core/lib/zlib/ |
A D | zutil.c | 38 switch ((int)(sizeof(uInt))) { in zlibCompileFlags() 153 uInt len; 164 uInt len; 166 uInt j; 176 uInt len; 281 voidpf ZLIB_INTERNAL zcalloc (voidpf opaque, uInt items, uInt size) in zcalloc() 301 extern voidp malloc OF((uInt size)); 302 extern voidp calloc OF((uInt items, uInt size)); 312 return sizeof(uInt) > 2 ? (voidpf)malloc(items * size) :
|
A D | zlib.h | 82 typedef voidpf (*alloc_func) OF((voidpf opaque, uInt items, uInt size)); 89 uInt avail_in; /* number of bytes available at next_in */ 93 uInt avail_out; /* remaining free space at next_out */ 121 uInt extra_len; /* extra field length (valid if extra != Z_NULL) */ 122 uInt extra_max; /* space at extra (only when reading header) */ 124 uInt name_max; /* space at name (only when reading header) */ 126 uInt comm_max; /* space at comment (only when reading header) */ 613 uInt dictLength)); 657 uInt *dictLength)); 889 uInt dictLength)); [all …]
|
A D | zutil.h | 235 void ZLIB_INTERNAL zmemcpy OF((Bytef* dest, const Bytef* source, uInt len)); 236 int ZLIB_INTERNAL zmemcmp OF((const Bytef* s1, const Bytef* s2, uInt len)); 237 void ZLIB_INTERNAL zmemzero OF((Bytef* dest, uInt len));
|
A D | zconf.h | 159 # define uInt z_uInt macro 398 typedef unsigned int uInt; /* 16 bits or more */ typedef 409 typedef uInt FAR uIntf;
|
A D | gzguts.h | 123 extern voidp malloc OF((uInt size));
|
A D | adler32.c | 138 uInt len;
|
A D | inflate.c | 263 if (bits > 16 || state->bits + (uInt)bits > 32) return Z_STREAM_ERROR; 266 state->bits += (uInt)bits; 1319 uInt *dictLength; 1342 uInt dictLength;
|
Completed in 12 milliseconds