Searched refs:UInt64 (Results 1 - 25 of 290) sorted by relevance

1234567891011>>

/external/lzma/CPP/7zip/Common/
H A DMethodId.h8 typedef UInt64 CMethodId;
H A DProgressUtils.h19 UInt64 ProgressOffset;
20 UInt64 InSize;
21 UInt64 OutSize;
31 STDMETHOD(SetRatioInfo)(const UInt64 *inSize, const UInt64 *outSize);
H A DOffsetStream.h14 UInt64 _offset;
17 HRESULT Init(IOutStream *stream, UInt64 offset);
22 STDMETHOD(Seek)(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition);
23 STDMETHOD(SetSize)(UInt64 newSize);
H A DLimitedStreams.h16 UInt64 _size;
17 UInt64 _pos;
22 void Init(UInt64 streamSize)
32 UInt64 GetSize() const { return _pos; }
41 UInt64 _virtPos;
42 UInt64 _physPos;
43 UInt64 _size;
44 UInt64 _startOffset;
49 HRESULT InitAndSeek(UInt64 startOffset, UInt64 siz
[all...]
/external/lzma/CPP/7zip/UI/Common/
H A DBench.h11 UInt64 GlobalTime;
12 UInt64 GlobalFreq;
13 UInt64 UserTime;
14 UInt64 UserFreq;
15 UInt64 UnpackSize;
16 UInt64 PackSize;
17 UInt64 NumIterations;
20 UInt64 GetUsage() const;
21 UInt64 GetRatingPerUsage(UInt64 ratin
[all...]
H A DEnumDirItems.h17 virtual HRESULT ScanProgress(UInt64 numFolders, UInt64 numFiles, UInt64 totalSize, const wchar_t *path, bool isDir) = 0;
H A DHashCalc.h37 virtual void SetSize(UInt64 size) = 0;
45 UInt64 NumFiles;
46 UInt64 NumDirs;
47 UInt64 NumAltStreams;
48 UInt64 FilesSize;
49 UInt64 AltStreamsSize;
50 UInt64 NumErrors;
52 UInt64 CurSize;
63 void SetSize(UInt64 size);
69 virtual HRESULT ScanProgress(UInt64 numFolder
[all...]
/external/lzma/CPP/7zip/UI/Console/
H A DPercentPrinter.h10 UInt64 m_MinStepSize;
11 UInt64 m_PrevValue;
12 UInt64 m_CurValue;
13 UInt64 m_Total;
18 CPercentPrinter(UInt64 minStepSize = 1): m_MinStepSize(minStepSize),
19 m_PrevValue(0), m_CurValue(0), m_Total((UInt64)(Int64)-1), m_NumExtraChars(0) {}
20 void SetTotal(UInt64 total) { m_Total = total; m_PrevValue = 0; }
21 void SetRatio(UInt64 doneValue) { m_CurValue = doneValue; }
H A DExtractCallbackConsole.h32 STDMETHOD(SetTotal)(UInt64 total);
33 STDMETHOD(SetCompleted)(const UInt64 *completeValue);
37 const wchar_t *existName, const FILETIME *existTime, const UInt64 *existSize,
38 const wchar_t *newName, const FILETIME *newTime, const UInt64 *newSize,
40 STDMETHOD (PrepareOperation)(const wchar_t *name, bool isFolder, Int32 askExtractMode, const UInt64 *position);
65 UInt64 NumTryArcs;
69 UInt64 NumCantOpenArcs;
70 UInt64 NumOkArcs;
71 UInt64 NumArcsWithError;
72 UInt64 NumArcsWithWarning
[all...]
H A DOpenCallbackConsole.cpp17 HRESULT COpenCallbackConsole::Open_SetTotal(const UInt64 *, const UInt64 *)
22 HRESULT COpenCallbackConsole::Open_SetCompleted(const UInt64 *, const UInt64 *)
/external/lzma/C/
H A DXzCrc64.c17 ((v >> 40) & ((UInt64)0xFF << 8)) | \
18 ((v >> 24) & ((UInt64)0xFF << 16)) | \
19 ((v >> 8) & ((UInt64)0xFF << 24)) | \
20 ((v << 8) & ((UInt64)0xFF << 32)) | \
21 ((v << 24) & ((UInt64)0xFF << 40)) | \
22 ((v << 40) & ((UInt64)0xFF << 48)) | \
24 UInt64 MY_FAST_CALL XzCrc64UpdateT1_BeT4(UInt64 v, const void *data, size_t size, const UInt64 *table);
28 UInt64 MY_FAST_CAL
[all...]
H A DXzCrc64.h13 extern UInt64 g_Crc64Table[];
21 UInt64 MY_FAST_CALL Crc64Update(UInt64 crc, const void *data, size_t size);
22 UInt64 MY_FAST_CALL Crc64Calc(const void *data, size_t size);
H A DXzCrc64Opt.c12 UInt64 MY_FAST_CALL XzCrc64UpdateT4(UInt64 v, const void *data, size_t size, const UInt64 *table)
38 ((v >> 40) & ((UInt64)0xFF << 8)) | \
39 ((v >> 24) & ((UInt64)0xFF << 16)) | \
40 ((v >> 8) & ((UInt64)0xFF << 24)) | \
41 ((v << 8) & ((UInt64)0xFF << 32)) | \
42 ((v << 24) & ((UInt64)0xFF << 40)) | \
43 ((v << 40) & ((UInt64)0xFF << 48)) | \
46 UInt64 MY_FAST_CAL
[all...]
H A DSort.h12 void HeapSort64(UInt64 *p, size_t size);
/external/lzma/CPP/7zip/Archive/Common/
H A DCrossThreadProgress.cpp7 STDMETHODIMP CCrossThreadProgress::SetRatioInfo(const UInt64 *inSize, const UInt64 *outSize)
H A DMultiStream.h15 UInt64 _pos;
16 UInt64 _totalLength;
24 UInt64 Size;
25 UInt64 GlobalOffset;
26 UInt64 LocalPos;
35 UInt64 total = 0;
52 STDMETHOD(Seek)(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition);
61 UInt64 _offsetPos; // offset from start of _streamIndex index
62 UInt64 _absPos;
63 UInt64 _lengt
[all...]
H A DCrossThreadProgress.h15 const UInt64 *InSize;
16 const UInt64 *OutSize;
34 STDMETHOD(SetRatioInfo)(const UInt64 *inSize, const UInt64 *outSize);
/external/lzma/CPP/7zip/
H A DIProgress.h12 STDMETHOD(SetTotal)(UInt64 total) x; \
13 STDMETHOD(SetCompleted)(const UInt64 *completeValue) x; \
28 STDMETHOD(SetTotal)(const UInt64 *total) PURE;
29 STDMETHOD(SetCompleted)(const UInt64 *completeValue) PURE;
/external/lzma/CPP/Windows/
H A DSystem.h12 UInt64 GetRamSize();
H A DFileSystem.h23 bool MyGetDiskFreeSpace(CFSTR rootPath, UInt64 &clusterSize, UInt64 &totalSize, UInt64 &freeSize);
/external/lzma/CPP/7zip/Archive/7z/
H A D7zEncode.h36 const UInt64 *inSizeForReduce);
46 const UInt64 *inStreamSize, const UInt64 *inSizeForReduce,
48 CRecordVector<UInt64> &coderUnpackSizes,
49 UInt64 &unpackSize,
51 CRecordVector<UInt64> &packSizes,
H A D7zSpecStream.h17 UInt64 _size;
26 UInt64 GetSize() const { return _size; }
32 STDMETHOD(GetSubStreamSize)(UInt64 subStream, UInt64 *value);
/external/lzma/CPP/7zip/Compress/
H A DLzmaEncoder.h22 UInt64 _inputProcessed;
27 const UInt64 *inSize, const UInt64 *outSize, ICompressProgressInfo *progress);
33 UInt64 GetInputProcessedSize() const { return _inputProcessed; }
/external/lzma/CPP/Common/
H A DIntToString.h9 void ConvertUInt64ToString(UInt64 value, char *s) throw();
12 void ConvertUInt64ToString(UInt64 value, wchar_t *s) throw();
14 void ConvertUInt64ToOct(UInt64 value, char *s) throw();
17 void ConvertUInt64ToHex(UInt64 value, char *s) throw();
H A DStringToInt.h9 UInt64 ConvertStringToUInt64(const char *s, const char **end) throw();
11 UInt64 ConvertStringToUInt64(const wchar_t *s, const wchar_t **end) throw();
16 UInt64 ConvertOctStringToUInt64(const char *s, const char **end) throw();
19 UInt64 ConvertHexStringToUInt64(const char *s, const char **end) throw();

Completed in 176 milliseconds

1234567891011>>