Searched refs:uInt (Results 1 - 25 of 39) sorted by relevance

12

/vbox/src/libs/zlib-1.2.6/contrib/minizip/
H A 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_globa
[all...]
H A Dunzip.h86 uInt tm_sec; /* seconds after the minute - [0,59] */
87 uInt tm_min; /* minutes after the hour - [0,59] */
88 uInt tm_hour; /* hours since midnight - [0,23] */
89 uInt tm_mday; /* day of the month - [1,31] */
90 uInt tm_mon; /* months since January - [0,11] */
91 uInt tm_year; /* years - [1980..2044] */
H A Dzip.c138 uInt pos_in_buffered_data; /* last written byte in buffered_data */
245 uInt copy_this;
246 uInt i;
259 copy_this = (uInt)ldi->avail_in_this_block;
261 copy_this = (uInt)len;
958 int Write_LocalFileHeader(zip64_internal* zi, const char* filename, uInt size_extrafield_local, const void* extrafield_local)
962 uInt size_filename = (uInt)strlen(filename);
963 uInt size_extrafield = size_extrafield_local;
1056 const void* extrafield_local, uInt size_extrafield_loca
[all...]
H A Dunzip.c147 uInt size_local_extrafield;/* size of the local extra field */
856 ptm->tm_mday = (uInt)(uDate&0x1f) ;
857 ptm->tm_mon = (uInt)((((uDate)&0x1E0)/0x20)-1) ;
858 ptm->tm_year = (uInt)(((uDate&0x0FE00)/0x0200)+1980) ;
860 ptm->tm_hour = (uInt) ((ulDosDate &0xF800)/0x800);
861 ptm->tm_min = (uInt) ((ulDosDate&0x7E0)/0x20) ;
862 ptm->tm_sec = (uInt) (2*(ulDosDate&0x1f)) ;
1385 local int unz64local_CheckCurrentFileCoherencyHeader (unz64_s* s, uInt* piSizeVar,
1387 uInt * psize_local_extrafield)
1455 *piSizeVar += (uInt)size_filenam
[all...]
H A Dminiunz.c271 uInt iLevel=(uInt)((file_info.flag & 0x6)/2);
324 uInt size_buf;
/vbox/src/VBox/Runtime/common/checksum/
H A Dcrc32-zlib.cpp39 * Deal with blocks that are too big for the uInt type.
46 uInt const cbChunk = cb <= ~(uInt)0 ? (uInt)cb : ~(uInt)0;
57 if (RT_UNLIKELY((uInt)cb == cb))
58 uCrc = crc32(uCrc, (const Bytef *)pv, (uInt)cb);
75 if (RT_UNLIKELY((uInt)cb == cb))
76 uCRC32 = crc32(uCRC32, (const Bytef *)pv, (uInt)cb);
/vbox/src/libs/zlib-1.2.6/
H A Ddeflate.h103 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_shif
[all...]
H A Dzutil.c37 switch ((int)(sizeof(uInt))) {
132 uInt len;
143 uInt len;
145 uInt j;
155 uInt len;
256 voidpf ZLIB_INTERNAL zcalloc (voidpf opaque, uInt items, uInt size)
276 extern voidp malloc OF((uInt size));
277 extern voidp calloc OF((uInt items, uInt siz
[all...]
H A Duncompr.c34 stream.avail_in = (uInt)sourceLen;
39 stream.avail_out = (uInt)*destLen;
H A Dcompress.c33 stream.avail_in = (uInt)sourceLen;
39 stream.avail_out = (uInt)*destLen;
H A Dzlib.h80 typedef voidpf (*alloc_func) OF((voidpf opaque, uInt items, uInt size));
87 uInt avail_in; /* number of bytes available at next_in */
91 uInt avail_out; /* remaining free space at next_out */
118 uInt extra_len; /* extra field length (valid if extra != Z_NULL) */
119 uInt extra_max; /* space at extra (only when reading header) */
121 uInt name_max; /* space at name (only when reading header) */
123 uInt comm_max; /* space at comment (only when reading header) */
586 uInt dictLength));
818 uInt dictLengt
[all...]
H A Ddeflate.c85 local void putShortMSB OF((deflate_state *s, uInt b));
90 uInt longest_match OF((deflate_state *s, IPos cur_match));
92 local uInt longest_match OF((deflate_state *s, IPos cur_match));
326 uInt dictLength;
329 uInt str, n;
628 uInt b;
736 uInt header = (Z_DEFLATED + ((s->w_bits-8)<<4)) << 8;
737 uInt level_flags;
756 putShortMSB(s, (uInt)(strm->adler >> 16));
757 putShortMSB(s, (uInt)(str
[all...]
H A Dzutil.h212 void ZLIB_INTERNAL zmemcpy OF((Bytef* dest, const Bytef* source, uInt len));
213 int ZLIB_INTERNAL zmemcmp OF((const Bytef* s1, const Bytef* s2, uInt len));
214 void ZLIB_INTERNAL zmemzero OF((Bytef* dest, uInt len));
H A Dgzguts.h101 extern voidp malloc OF((uInt size));
H A Dzconf.h98 # define uInt vboxzlib_uInt macro
227 # define uInt z_uInt macro
462 typedef unsigned int uInt; /* 16 bits or more */ typedef
473 typedef uInt FAR uIntf;
H A Dadler32.c68 uInt len;
H A Dzconf.h.cmakein138 # define uInt z_uInt
369 typedef unsigned int uInt; /* 16 bits or more */
380 typedef uInt FAR uIntf;
H A Dzconf.h.in136 # define uInt z_uInt
367 typedef unsigned int uInt; /* 16 bits or more */
378 typedef uInt FAR uIntf;
/vbox/src/libs/zlib-1.2.6/test/
H A 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)uncomprLe
[all...]
/vbox/include/iprt/
H A Dpoll.h214 Handle.u.uInt = 0;
233 Handle.u.uInt = 0;
/vbox/src/VBox/Devices/EFI/Firmware/AppPkg/Applications/Python/PyMod-2.7.1/Modules/zlib/
H A Dzutil.h235 extern void zmemcpy OF((Bytef* dest, const Bytef* source, uInt len));
236 extern int zmemcmp OF((const Bytef* s1, const Bytef* s2, uInt len));
237 extern void zmemzero OF((Bytef* dest, uInt len));
/vbox/src/VBox/Devices/EFI/Firmware/AppPkg/Applications/Python/PyMod-2.7.2/Modules/zlib/
H A Dzutil.h245 extern void zmemcpy OF((Bytef* dest, const Bytef* source, uInt len));
246 extern int zmemcmp OF((const Bytef* s1, const Bytef* s2, uInt len));
247 extern void zmemzero OF((Bytef* dest, uInt len));
/vbox/src/VBox/Runtime/common/zip/
H A Dgzipvfs.cpp293 pThis->Zlib.avail_out = (uInt)cbToRead;
334 pThis->Zlib.avail_in = (uInt)cbReadIn;
462 pThis->Zlib.avail_out += (uInt)cbWrittenOut;
519 * integer type overflow since avail_in is uInt and cbSeg is size_t.
528 size_t cbThis = cbLeft < ~(uInt)0 ? cbLeft : ~(uInt)0 / 2;
530 pThis->Zlib.avail_in = (uInt)cbThis;
H A Dzip.cpp478 pZip->u.Zlib.avail_in = (uInt)cbBuf; Assert(pZip->u.Zlib.avail_in == cbBuf);
591 pZip->u.Zlib.avail_out = (uInt)cbBuf;
610 pZip->u.Zlib.avail_in = (uInt)cb; Assert(pZip->u.Zlib.avail_in == cb);
1938 AssertReturn(cbSrc == (uInt)cbSrc, VERR_TOO_MUCH_DATA);
1939 AssertReturn(cbDst == (uInt)cbDst, VERR_OUT_OF_RANGE);
1944 ZStrm.avail_in = (uInt)cbSrc;
1946 ZStrm.avail_out = (uInt)cbDst;
/vbox/src/VBox/Runtime/r3/
H A Dpoll.cpp758 uh.uInt = 0;
807 && pThis->paHandles[j].u.uInt == uh.uInt)
927 if ( pThis->paHandles[i].u.uInt == uh.uInt
942 if ( pThis->paHandles[i].u.uInt == uh.uInt
1062 && pThis->paHandles[j].u.uInt == pThis->paHandles[i].u.uInt

Completed in 920 milliseconds

12