/external/lzma/CPP/7zip/Common/ |
ProgressUtils.cpp | 21 STDMETHODIMP CLocalProgress::SetRatioInfo(const UInt64 *inSize, const UInt64 *outSize)
23 UInt64 inSizeNew = InSize, outSizeNew = OutSize;
|
FileStreams.h | 29 UInt64 VirtPos;
30 UInt64 PhyPos;
31 UInt64 BufferStartPos;
61 STDMETHOD(Seek)(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition);
63 STDMETHOD(GetSize)(UInt64 *size);
115 UInt64 ProcessedSize;
129 STDMETHOD(Seek)(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition);
130 STDMETHOD(SetSize)(UInt64 newSize);
|
LimitedStreams.cpp | 11 UInt32 sizeToRead = (UInt32)MyMin((_size - _pos), (UInt64)size);
31 UInt64 rem = _size - _virtPos;
34 UInt64 newPos = _startOffset + _virtPos;
48 STDMETHODIMP CLimitedInStream::Seek(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition)
75 UInt64 newPos = StartOffset + ((UInt64)phyBlock << BlockSizeLog) + offsetInBlock;
84 UInt64 rem = Size - _virtPos;
99 STDMETHODIMP CClusterInStream::Seek(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition)
101 UInt64 newVirtPos = offset;
118 HRESULT CreateLimitedInStream(IInStream *inStream, UInt64 pos, UInt64 size, ISequentialInStream **resStream) [all...] |
StreamObjects.h | 23 UInt64 _pos;
38 STDMETHOD(Seek)(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition);
100 UInt64 _size;
104 UInt64 GetSize() const { return _size; }
114 UInt64 *_tags;
119 UInt64 _size;
120 UInt64 _pos;
122 virtual HRESULT ReadBlock(UInt64 blockIndex, Byte *dest, size_t blockSize) = 0;
128 void Init(UInt64 size);
132 STDMETHOD(Seek)(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition); [all...] |
CWrappers.h | 38 UInt64 Processed;
52 UInt64 Processed;
67 UInt64 GetProcessed() const { return Processed + (Cur - Buf); }
85 UInt64 Processed;
99 UInt64 GetProcessed() const { return Processed + (Cur - Buf); }
|
FileStreams.cpp | 95 UInt64 rem = File.Length - VirtPos;
102 UInt64 mask2 = ~(UInt64)mask;
103 UInt64 alignedPos = VirtPos & mask2;
122 UInt64 end = VirtPos + size;
136 UInt64 realNewPosition;
146 readSize = (UInt32)MyMin(File.Length - PhyPos, (UInt64)kClusterSize);
165 UInt64 realNewPosition;
244 UInt64 *newPosition)
254 UInt64 newVirtPos = offset; [all...] |
InOutTempBuffer.h | 20 UInt64 _size;
33 UInt64 GetDataSize() const { return _size; }
|
MethodId.cpp | 13 UString ConvertMethodIdToString(UInt64 id)
|
/external/lzma/CPP/7zip/UI/Common/ |
IFileExtractCallback.h | 26 const wchar_t *existName, const FILETIME *existTime, const UInt64 *existSize,
27 const wchar_t *newName, const FILETIME *newTime, const UInt64 *newSize,
29 STDMETHOD(PrepareOperation)(const wchar_t *name, bool isFolder, Int32 askExtractMode, const UInt64 *position) PURE;
|
Bench.cpp | 239 static UInt64 GetTimeCount()
245 return (UInt64)(v.tv_sec) * 1000000 + v.tv_usec;
246 return (UInt64)time(NULL) * 1000000;
260 static UInt64 GetFreq()
279 static inline UInt64 GetTime64(const FILETIME &t) { return ((UInt64)t.dwHighDateTime << 32) | t.dwLowDateTime; }
282 static UInt64 GetUserTime()
296 return (UInt64)GetTickCount() * 10000;
300 static UInt64 GetUserFreq()
344 STDMETHOD(SetRatioInfo)(const UInt64 *inSize, const UInt64 *outSize); [all...] |
/external/lzma/C/ |
MtCoder.h | 38 UInt64 totalInSize;
39 UInt64 totalOutSize;
43 UInt64 inSizes[NUM_MT_CODER_THREADS_MAX];
44 UInt64 outSizes[NUM_MT_CODER_THREADS_MAX];
47 SRes MtProgress_Set(CMtProgress *p, unsigned index, UInt64 inSize, UInt64 outSize);
|
Sha256.h | 16 UInt64 count;
|
XzIn.c | 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; [all...] |
/external/lzma/CPP/7zip/Archive/Common/ |
OutStreamWithCRC.h | 17 UInt64 _size;
32 UInt64 GetSize() const { return _size; }
|
HandlerOut.h | 36 UInt64 _numSolidFiles;
37 UInt64 _numSolidBytes;
63 void InitSolidFiles() { _numSolidFiles = (UInt64)(Int64)(-1); }
64 void InitSolidSize() { _numSolidBytes = (UInt64)(Int64)(-1); }
|
CoderMixer2.h | 149 CRecordVector<UInt64> InSizes;
150 CRecordVector<UInt64> OutSizes;
151 CRecordVector<const UInt64 *> InSizePointers;
152 CRecordVector<const UInt64 *> OutSizePointers;
155 void SetCoderInfo(const UInt64 **inSizes, const UInt64 **outSizes);
169 virtual void SetCoderInfo(UInt32 coderIndex, const UInt64 **inSizes, const UInt64 **outSizes) = 0;
|
/external/lzma/CPP/7zip/Compress/ |
Bcj2Coder.h | 53 HRESULT CodeReal(ISequentialInStream **inStreams, const UInt64 **inSizes, UInt32 numInStreams,
54 ISequentialOutStream **outStreams, const UInt64 **outSizes, UInt32 numOutStreams,
56 STDMETHOD(Code)(ISequentialInStream **inStreams, const UInt64 **inSizes, UInt32 numInStreams,
57 ISequentialOutStream **outStreams, const UInt64 **outSizes, UInt32 numOutStreams,
101 HRESULT CodeReal(ISequentialInStream **inStreams, const UInt64 **inSizes, UInt32 numInStreams,
102 ISequentialOutStream **outStreams, const UInt64 **outSizes, UInt32 numOutStreams,
104 STDMETHOD(Code)(ISequentialInStream **inStreams, const UInt64 **inSizes, UInt32 numInStreams,
105 ISequentialOutStream **outStreams, const UInt64 **outSizes, UInt32 numOutStreams,
|
Bcj2Coder.cpp | 60 HRESULT CEncoder::CodeReal(ISequentialInStream **inStreams, const UInt64 **inSizes, UInt32 numInStreams,
61 ISequentialOutStream **outStreams, const UInt64 ** /* outSizes */, UInt32 numOutStreams,
71 UInt64 inSize = 0;
101 UInt64 nowPos64 = 0;
106 UInt64 subStreamIndex = 0;
107 UInt64 subStreamStartPos = 0;
108 UInt64 subStreamEndPos = 0;
175 UInt64 currentPos = (nowPos64 + bufferPos);
178 UInt64 subStreamSize;
206 UInt64 dest64 = (currentPos + 5) + Int64(Int32(src)); [all...] |
/external/lzma/CPP/7zip/ |
ICoder.h | 12 STDMETHOD(SetRatioInfo)(const UInt64 *inSize, const UInt64 *outSize) PURE;
18 const UInt64 *inSize, const UInt64 *outSize,
24 STDMETHOD(Code)(ISequentialInStream **inStreams, const UInt64 **inSizes, UInt32 numInStreams,
25 ISequentialOutStream **outStreams, const UInt64 **outSizes, UInt32 numOutStreams,
75 STDMETHOD(GetInStreamProcessedSize)(UInt64 *value) PURE;
85 STDMETHOD(GetSubStreamSize)(UInt64 subStream, UInt64 *value) PURE;
102 STDMETHOD(SetInStreamSize)(const UInt64 *inSize) PURE; [all...] |
IStream.h | 39 STDMETHOD(Seek)(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition) PURE;
44 STDMETHOD(Seek)(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition) PURE;
45 STDMETHOD(SetSize)(UInt64 newSize) PURE;
50 STDMETHOD(GetSize)(UInt64 *size) PURE;
|
/external/lzma/CPP/Windows/ |
Time.cpp | 16 static const UInt64 kUnixTimeStartValue = ((UInt64)kNumTimeQuantumsInSecond) *
26 UInt64 res;
59 UInt64 v64 = ft.dwLowDateTime | ((UInt64)ft.dwHighDateTime << 32);
120 UInt64 v = kUnixTimeStartValue + ((UInt64)unixTime) * kNumTimeQuantumsInSecond;
127 UInt64 winTime = (((UInt64)ft.dwHighDateTime) << 32) + ft.dwLowDateTime;
144 unsigned hour, unsigned min, unsigned sec, UInt64 &resSeconds) [all...] |
PropVariantConversions.h | 12 UInt64 ConvertPropVariantToUInt64(const PROPVARIANT &prop);
|
FileIO.h | 21 UInt64 Size;
23 UInt64 FileIndex;
42 UInt64 Length;
50 bool GetPosition(UInt64 &position) const;
51 bool GetLength(UInt64 &length) const;
53 bool Seek(Int64 distanceToMove, DWORD moveMethod, UInt64 &newPosition) const;
54 bool Seek(UInt64 position, UInt64 &newPosition);
56 bool SeekToEnd(UInt64 &newPosition);
131 bool SetLength(UInt64 length); [all...] |
/external/lzma/CPP/7zip/UI/Console/ |
List.h | 17 UInt64 &errors);
|
/external/lzma/CPP/7zip/Archive/7z/ |
7zDecode.h | 52 UInt64 startPos,
53 const UInt64 *packSizes,
|