/external/freetype/src/gzip/ |
inffixed.h | 10 local const uInt fixed_bl = 9; 11 local const uInt fixed_bd = 5;
|
inftrees.h | 25 uInt pad; /* pad structure to a power of 2 (4 bytes for */ 27 uInt base; /* literal, length base, distance base, 46 uInt, /* number of literal/length codes */ 47 uInt, /* number of distance codes */
|
infcodes.h | 18 uInt, uInt,
|
inftrees.c | 32 uInt, /* number of codes */ 33 uInt, /* number of "simple" codes */ 39 uInt *, /* hufts used in space */ 43 local const uInt cplens[31] = { /* Copy lengths for literal codes 257..285 */ 47 local const uInt cplext[31] = { /* Extra bits for literal codes 257..285 */ 50 local const uInt cpdist[30] = { /* Copy offsets for distance codes 0..29 */ 54 local const uInt cpdext[30] = { /* Extra bits for distance codes */ 97 uInt n, /* number of codes (assumed <= 288) */ 98 uInt s, /* number of simple-valued codes (0..s-1) */ 104 uInt *hn, /* hufts used in space * [all...] |
infutil.h | 35 uInt left; /* if STORED, bytes left to copy */ 37 uInt table; /* table lengths (14 bits) */ 38 uInt index; /* index into blens (or border) */ 40 uInt bb; /* bit length tree depth */ 48 uInt last; /* true if this block is the last block */ 51 uInt bitk; /* bits in bit buffer */ 78 #define WAVAIL (uInt)(q<s->read?s->read-q-1:s->end-q) 79 #define LOADOUT {q=s->write;m=(uInt)WAVAIL;} 80 #define WRAP {if(q==s->end&&s->read!=s->window){q=s->window;m=(uInt)WAVAIL;}} 89 local uInt inflate_mask[17] [all...] |
infcodes.c | 36 uInt len; 40 uInt need; /* bits needed */ 42 uInt lit; /* if LIT, literal */ 44 uInt get; /* bits to get for extra */ 45 uInt dist; /* distance back to copy from */ 59 uInt bl, uInt bd, 85 uInt j; /* temporary storage */ 87 uInt e; /* extra bits or operation */ 89 uInt k; /* bits in bit buffer * [all...] |
infblock.h | 20 uInt w)); /* window size */
|
zlib.h | 63 typedef voidpf (*alloc_func) OF((voidpf opaque, uInt items, uInt size)); 70 uInt avail_in; /* number of bytes available at next_in */ 74 uInt avail_out; /* remaining free space at next_out */ [all...] |
zutil.c | 20 uInt len; 31 uInt len; 33 uInt j; 43 uInt len; 160 extern voidp ft_scalloc OF((uInt items, uInt size));
|
infutil.c | 14 local const uInt inflate_mask[17] = { 27 uInt n; 36 n = (uInt)((q <= s->write ? s->write : s->end) - q); 62 n = (uInt)(s->write - q);
|
/external/zlib/src/contrib/minizip/ |
zip.h | 91 uInt tm_sec; /* seconds after the minute - [0,59] */ 92 uInt tm_min; /* minutes after the hour - [0,59] */ 93 uInt tm_hour; /* hours since midnight - [0,23] */ 94 uInt tm_mday; /* day of the month - [1,31] */ 95 uInt tm_mon; /* months since January - [0,11] */ 96 uInt tm_year; /* years - [1980..2044] */ 151 uInt size_extrafield_local, 153 uInt size_extrafield_global, 162 uInt size_extrafield_local, 164 uInt size_extrafield_global [all...] |
/external/u-boot/lib/zlib/ |
zutil.c | 50 extern voidp malloc OF((uInt size)); 51 extern voidp calloc OF((uInt items, uInt size)); 60 return sizeof(uInt) > 2 ? (voidpf)malloc(items * size) :
|
deflate.h | 100 uInt pending; /* nb of bytes in the pending buffer */ 103 uInt gzindex; /* where in extra, name, or comment */ 109 uInt w_size; /* LZ77 window size (32K by default) */ 110 uInt w_bits; /* log2(w_size) (8..16) */ 111 uInt w_mask; /* w_size - 1 */ 136 uInt ins_h; /* hash index of string to be inserted */ 137 uInt hash_size; /* number of elements in hash table */ 138 uInt hash_bits; /* log2(hash_size) */ 139 uInt hash_mask; /* hash_size-1 */ 141 uInt hash_shift [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/ |
deflate.h | 103 uInt pending; /* nb of bytes in the pending buffer */
106 uInt gzindex; /* where in extra, name, or comment */
112 uInt w_size; /* LZ77 window size (32K by default) */
113 uInt w_bits; /* log2(w_size) (8..16) */
114 uInt w_mask; /* w_size - 1 */
139 uInt ins_h; /* hash index of string to be inserted */
140 uInt hash_size; /* number of elements in hash table */
141 uInt hash_bits; /* log2(hash_size) */
142 uInt hash_mask; /* hash_size-1 */
144 uInt hash_shift; [all...] |
uncompr.c | 34 stream.avail_in = (uInt)sourceLen;
39 stream.avail_out = (uInt)*destLen;
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/ |
deflate.h | 100 uInt pending; /* nb of bytes in the pending buffer */
103 uInt gzindex; /* where in extra, name, or comment */
109 uInt w_size; /* LZ77 window size (32K by default) */
110 uInt w_bits; /* log2(w_size) (8..16) */
111 uInt w_mask; /* w_size - 1 */
136 uInt ins_h; /* hash index of string to be inserted */
137 uInt hash_size; /* number of elements in hash table */
138 uInt hash_bits; /* log2(hash_size) */
139 uInt hash_mask; /* hash_size-1 */
141 uInt hash_shift; [all...] |
zutil.c | 37 switch (sizeof(uInt)) {
152 uInt len;
163 uInt len;
165 uInt j;
175 uInt len;
295 extern voidp malloc OF((uInt size));
296 extern voidp calloc OF((uInt items, uInt size));
306 return sizeof(uInt) > 2 ? (voidpf)malloc(items * size) :
|
uncompr.c | 36 stream.avail_in = (uInt)sourceLen;
41 stream.avail_out = (uInt)*destLen;
|
/external/python/cpython2/Modules/zlib/ |
deflate.h | 115 uInt w_size; /* LZ77 window size (32K by default) */ 116 uInt w_bits; /* log2(w_size) (8..16) */ 117 uInt w_mask; /* w_size - 1 */ 142 uInt ins_h; /* hash index of string to be inserted */ 143 uInt hash_size; /* number of elements in hash table */ 144 uInt hash_bits; /* log2(hash_size) */ 145 uInt hash_mask; /* hash_size-1 */ 147 uInt hash_shift; 159 uInt match_length; /* length of best match */ 162 uInt strstart; /* start of string to insert * [all...] |
compress.c | 31 const uInt max = (uInt)-1; 51 stream.avail_out = left > (uLong)max ? max : (uInt)left; 55 stream.avail_in = sourceLen > (uLong)max ? max : (uInt)sourceLen;
|
uncompr.c | 35 const uInt max = (uInt)-1; 63 stream.avail_out = left > (uLong)max ? max : (uInt)left; 67 stream.avail_in = len > (uLong)max ? max : (uInt)len;
|
/external/zlib/src/ |
deflate.h | 115 uInt w_size; /* LZ77 window size (32K by default) */ 116 uInt w_bits; /* log2(w_size) (8..16) */ 117 uInt w_mask; /* w_size - 1 */ 142 uInt ins_h; /* hash index of string to be inserted */ 143 uInt hash_size; /* number of elements in hash table */ 144 uInt hash_bits; /* log2(hash_size) */ 145 uInt hash_mask; /* hash_size-1 */ 147 uInt hash_shift; 159 uInt match_length; /* length of best match */ 162 uInt strstart; /* start of string to insert * [all...] |
compress.c | 31 const uInt max = (uInt)-1; 51 stream.avail_out = left > (uLong)max ? max : (uInt)left; 55 stream.avail_in = sourceLen > (uLong)max ? max : (uInt)sourceLen;
|
/external/icu/icu4c/source/i18n/ |
decContext.cpp | 47 U_CAPI decContext * U_EXPORT2 uprv_decContextClearStatus(decContext *context, uInt mask) { 142 U_CAPI uInt U_EXPORT2 uprv_decContextGetStatus(decContext *context) { 159 uInt newstatus, uInt mask) { 175 U_CAPI uInt U_EXPORT2 uprv_decContextSaveStatus(decContext *context, uInt mask) { 204 U_CAPI decContext * U_EXPORT2 uprv_decContextSetStatus(decContext *context, uInt status) { 322 U_CAPI decContext * U_EXPORT2 uprv_decContextSetStatusQuiet(decContext *context, uInt status) { 375 uInt dle=(uInt)DECLITEND; /* unsign * [all...] |
/external/u-boot/include/u-boot/ |
zlib.h | 102 # define uInt z_uInt 314 typedef unsigned int uInt; /* 16 bits or more */ 325 typedef uInt FAR uIntf; 414 typedef voidpf (*alloc_func) OF((voidpf opaque, uInt items, uInt size)); 415 typedef void (*free_func) OF((voidpf opaque, voidpf address, uInt size)); 416 typedef void (*cb_func) OF((Bytef *buf, uInt len)); 422 uInt avail_in; /* number of bytes available at next_in */ 425 uInt avail_out; /* remaining free space at next_out */ 451 uInt extra_len; /* extra field length (valid if extra != Z_NULL) * [all...] |