Home
last modified time | relevance | path

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

12345

/external/zlib/src/contrib/minizip/
Dzip.h91 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 …]
Dzip.c138 uInt pos_in_buffered_data; /* last written byte in buffered_data */
245 uInt copy_this; in add_data_in_datablock()
246 uInt i; in add_data_in_datablock()
259 copy_this = (uInt)ldi->avail_in_this_block; in add_data_in_datablock()
261 copy_this = (uInt)len; in add_data_in_datablock()
958 int Write_LocalFileHeader(zip64_internal* zi, const char* filename, uInt size_extrafield_local, con… in Write_LocalFileHeader()
962 uInt size_filename = (uInt)strlen(filename); in Write_LocalFileHeader()
963 uInt size_extrafield = size_extrafield_local; in Write_LocalFileHeader()
1056 const void* extrafield_local, uInt size_extrafield_local, in zipOpenNewFileInZip4_64()
1057 const void* extrafield_global, uInt size_extrafield_global, in zipOpenNewFileInZip4_64()
[all …]
/external/freetype/src/gzip/
Dinftrees.c32 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) */ in huft_build()
98 uInt s, /* number of simple-valued codes (0..s-1) */ in huft_build()
104 uInt *hn, /* hufts used in space */ in huft_build()
[all …]
Dinfcodes.c36 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, in inflate_codes_new()
85 uInt j; /* temporary storage */ in inflate_codes()
87 uInt e; /* extra bits or operation */ in inflate_codes()
89 uInt k; /* bits in bit buffer */ in inflate_codes()
91 uInt n; /* bytes available there */ in inflate_codes()
[all …]
Dinfutil.h35 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];
Dinfblock.c18 local const uInt border[] = { /* Order of the bit length code lengths */
91 uInt w ) in inflate_blocks_new()
124 uInt t; /* temporary storage */ in inflate_blocks()
126 uInt k; /* bits in bit buffer */ in inflate_blocks()
128 uInt n; /* bytes available there */ in inflate_blocks()
130 uInt m; /* bytes to end of window or read pointer */ in inflate_blocks()
140 t = (uInt)b & 7; in inflate_blocks()
156 uInt bl, bd; in inflate_blocks()
194 s->sub.left = (uInt)b & 0xffff; in inflate_blocks()
218 s->sub.trees.table = t = (uInt)b & 0x3fff; in inflate_blocks()
[all …]
Dzutil.c20 uInt len;
31 uInt len;
33 uInt j;
43 uInt len;
160 extern voidp ft_scalloc OF((uInt items, uInt size));
Dinftrees.h25 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 */
Dzlib.h63 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 */
775 ZEXTERN(uLong) adler32 OF((uLong adler, const Bytef *buf, uInt len));
Dinfutil.c14 local const uInt inflate_mask[17] = {
27 uInt n; in inflate_flush()
36 n = (uInt)((q <= s->write ? s->write : s->end) - q); in inflate_flush()
62 n = (uInt)(s->write - q); in inflate_flush()
/external/u-boot/lib/zlib/
Ddeflate.h100 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 …]
Dzutil.c50 extern voidp malloc OF((uInt size));
51 extern voidp calloc OF((uInt items, uInt size));
60 return sizeof(uInt) > 2 ? (voidpf)malloc(items * size) : in zcalloc()
/external/zlib/src/
Ddeflate.h115 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 …]
Dzutil.c37 switch ((int)(sizeof(uInt))) { in zlibCompileFlags()
152 uInt len;
163 uInt len;
165 uInt j;
175 uInt len;
280 voidpf ZLIB_INTERNAL zcalloc (voidpf opaque, uInt items, uInt size) in zcalloc()
300 extern voidp malloc OF((uInt size));
301 extern voidp calloc OF((uInt items, uInt size));
311 return sizeof(uInt) > 2 ? (voidpf)malloc(items * size) :
Dzlib.h81 typedef voidpf (*alloc_func) OF((voidpf opaque, uInt items, uInt size));
88 uInt avail_in; /* number of bytes available at next_in */
92 uInt avail_out; /* remaining free space at next_out */
120 uInt extra_len; /* extra field length (valid if extra != Z_NULL) */
121 uInt extra_max; /* space at extra (only when reading header) */
123 uInt name_max; /* space at name (only when reading header) */
125 uInt comm_max; /* space at comment (only when reading header) */
613 uInt dictLength));
657 uInt *dictLength));
887 uInt dictLength));
[all …]
/external/python/cpython2/Modules/zlib/
Ddeflate.h115 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 …]
Dzutil.c37 switch ((int)(sizeof(uInt))) { in zlibCompileFlags()
152 uInt len;
163 uInt len;
165 uInt j;
175 uInt len;
280 voidpf ZLIB_INTERNAL zcalloc (voidpf opaque, uInt items, uInt size) in zcalloc()
300 extern voidp malloc OF((uInt size));
301 extern voidp calloc OF((uInt items, uInt size));
311 return sizeof(uInt) > 2 ? (voidpf)malloc(items * size) :
Dexample.c294 c_stream.avail_out = (uInt)comprLen;
300 c_stream.avail_in = (uInt)uncomprLen;
311 c_stream.avail_in = (uInt)comprLen/2;
318 c_stream.avail_in = (uInt)uncomprLen;
348 d_stream.avail_in = (uInt)comprLen;
355 d_stream.avail_out = (uInt)uncomprLen;
381 uInt len = (uInt)strlen(hello)+1;
393 c_stream.avail_out = (uInt)*comprLen;
433 d_stream.avail_out = (uInt)uncomprLen;
438 d_stream.avail_in = (uInt)comprLen-2; /* read all compressed data */
[all …]
Dzlib.h81 typedef voidpf (*alloc_func) OF((voidpf opaque, uInt items, uInt size));
88 uInt avail_in; /* number of bytes available at next_in */
92 uInt avail_out; /* remaining free space at next_out */
120 uInt extra_len; /* extra field length (valid if extra != Z_NULL) */
121 uInt extra_max; /* space at extra (only when reading header) */
123 uInt name_max; /* space at name (only when reading header) */
125 uInt comm_max; /* space at comment (only when reading header) */
613 uInt dictLength));
657 uInt *dictLength));
886 uInt dictLength));
[all …]
/external/icu/icu4c/source/i18n/
DdecNumberLocal.h77 #define uInt uint32_t macro
100 uInt u0, u1, v0, v1, w0, w1, w2, t; \
145 #define CHARMASK ((((((((uInt)'0')<<8)+'0')<<8)+'0')<<8)+'0')
285 uInt sign; /* 0=positive, DECFLOAT_Sign=negative */
321 extern const uInt DECCOMBMSD[64]; /* Combination field -> MSD */
322 extern const uInt DECCOMBFROM[48]; /* exp+msd -> Combination */
398 || ((dpd)&(((uInt)0x6e)<<(k)))!=(((uInt)0x6e)<<(k)))
403 || ((lo)&(((uInt)0x6e)<<(k)))!=(((uInt)0x6e)<<(k)))
478 uInt sourhi=DFWORD(df, 0); \
483 uInt sourhi=DFWWORD(df, 0); \
[all …]
DdecContext.cpp47 U_CAPI decContext * U_EXPORT2 uprv_decContextClearStatus(decContext *context, uInt mask) { in uprv_decContextClearStatus()
142 U_CAPI uInt U_EXPORT2 uprv_decContextGetStatus(decContext *context) { in uprv_decContextGetStatus()
159 uInt newstatus, uInt mask) { in uprv_decContextRestoreStatus()
175 U_CAPI uInt U_EXPORT2 uprv_decContextSaveStatus(decContext *context, uInt mask) { in uprv_decContextSaveStatus()
204 U_CAPI decContext * U_EXPORT2 uprv_decContextSetStatus(decContext *context, uInt status) { in uprv_decContextSetStatus()
322 U_CAPI decContext * U_EXPORT2 uprv_decContextSetStatusQuiet(decContext *context, uInt status) { in uprv_decContextSetStatusQuiet()
375 uInt dle=(uInt)DECLITEND; /* unsign */
402 U_CAPI uInt U_EXPORT2 uprv_decContextTestSavedStatus(uInt oldstatus, uInt mask) { in uprv_decContextTestSavedStatus()
416 U_CAPI uInt U_EXPORT2 uprv_decContextTestStatus(decContext *context, uInt mask) { in uprv_decContextTestStatus()
DdecNumber.cpp227 static const uInt DECPOWERS[10]={1, 10, 100, 1000, 10000, 100000, 1000000,
234 #define ueInt uInt /* unsigned extended integer */
238 static const uInt multies[]={131073, 26215, 5243, 1049, 210};
240 #define QUOT10(u, n) ((((uInt)(u)>>(n))*multies[n])>>17)
252 decContext *, uByte, uInt *);
254 static uInt decCheckMath(const decNumber *, decContext *, uInt *);
255 static void decApplyRound(decNumber *, decContext *, Int, uInt *);
259 Flag, uInt *);
261 Int *, uInt *);
264 const decNumber *, decContext *, Flag, uInt *);
[all …]
/external/u-boot/include/u-boot/
Dzlib.h102 # define uInt z_uInt macro
314 typedef unsigned int uInt; /* 16 bits or more */ typedef
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) */
452 uInt extra_max; /* space at extra (only when reading header) */
[all …]
/external/zlib/src/test/
Dexample.c294 c_stream.avail_out = (uInt)comprLen;
300 c_stream.avail_in = (uInt)uncomprLen;
311 c_stream.avail_in = (uInt)comprLen/2;
318 c_stream.avail_in = (uInt)uncomprLen;
348 d_stream.avail_in = (uInt)comprLen;
355 d_stream.avail_out = (uInt)uncomprLen;
381 uInt len = (uInt)strlen(hello)+1;
393 c_stream.avail_out = (uInt)*comprLen;
433 d_stream.avail_out = (uInt)uncomprLen;
438 d_stream.avail_in = (uInt)comprLen-2; /* read all compressed data */
[all …]
/external/zlib/
Dzlib.h81 typedef voidpf (*alloc_func) OF((voidpf opaque, uInt items, uInt size));
88 uInt avail_in; /* number of bytes available at next_in */
92 uInt avail_out; /* remaining free space at next_out */
120 uInt extra_len; /* extra field length (valid if extra != Z_NULL) */
121 uInt extra_max; /* space at extra (only when reading header) */
123 uInt name_max; /* space at name (only when reading header) */
125 uInt comm_max; /* space at comment (only when reading header) */
613 uInt dictLength));
657 uInt *dictLength));
887 uInt dictLength));
[all …]

12345