Home | History | Annotate | Download | only in C

Lines Matching full:uint64

44   { UInt64 newSize = size + (val); if (newSize < size) return XZ_SIZE_OVERFLOW; size = newSize; }

46 UInt64 Xz_GetUnpackSize(const CXzStream *p)
48 UInt64 size = 0;
55 UInt64 Xz_GetPackSize(const CXzStream *p)
57 UInt64 size = 0;
60 ADD_SIZE_CHECH(size, (p->blocks[i].totalSize + 3) & ~(UInt64)3);
85 UInt64 numBlocks64;
116 static SRes Xz_ReadIndex(CXzStream *p, ILookInStream *stream, UInt64 indexSize, ISzAlloc *alloc)
143 UInt64 indexSize;
198 indexSize = ((UInt64)GetUi32(buf + 4) + 1) << 2;
206 UInt64 totalSize = Xz_GetPackSize(p);
207 UInt64 sum = XZ_STREAM_HEADER_SIZE + totalSize + indexSize;
209 sum >= ((UInt64)1 << 63) ||
210 totalSize >= ((UInt64)1 << 63))
245 UInt64 Xzs_GetNumBlocks(const CXzs *p)
247 UInt64 num = 0;
254 UInt64 Xzs_GetUnpackSize(const CXzs *p)
256 UInt64 size = 0;
264 UInt64 Xzs_GetPackSize(const CXzs *p)
266 UInt64 size = 0;
302 if (progress && progress->Progress(progress, endOffset - *startOffset, (UInt64)(Int64)-1) != SZ_OK)