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

12345678910

/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.h13 UInt64 _offset;
16 HRESULT Init(IOutStream *stream, UInt64 offset);
21 STDMETHOD(Seek)(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition);
22 STDMETHOD(SetSize)(UInt64 newSize);
H A DLimitedStreams.h15 UInt64 _size;
16 UInt64 _pos;
21 void Init(UInt64 streamSize)
31 UInt64 GetSize() const { return _pos; }
40 UInt64 _virtPos;
41 UInt64 _physPos;
42 UInt64 _size;
43 UInt64 _startOffset;
48 HRESULT InitAndSeek(UInt64 startOffset, UInt64 siz
[all...]
/external/qemu/distrib/sdl-1.2.15/src/timer/macos/
H A DFastTimes.h20 extern UInt64 FastMicroseconds(void);
21 extern UInt64 FastMilliseconds(void);
/external/lzma/CPP/7zip/UI/Common/
H A DBench.h10 UInt64 GlobalTime;
11 UInt64 GlobalFreq;
12 UInt64 UserTime;
13 UInt64 UserFreq;
14 UInt64 UnpackSize;
15 UInt64 PackSize;
26 UInt64 GetUsage(const CBenchInfo &benchOnfo);
27 UInt64 GetRatingPerUsage(const CBenchInfo &info, UInt64 rating);
28 UInt64 GetCompressRatin
[all...]
/external/lzma/CPP/Common/
H A DStringToInt.h9 UInt64 ConvertStringToUInt64(const char *s, const char **end);
10 UInt64 ConvertOctStringToUInt64(const char *s, const char **end);
11 UInt64 ConvertHexStringToUInt64(const char *s, const char **end);
12 UInt64 ConvertStringToUInt64(const wchar_t *s, const wchar_t **end);
H A DStringToInt.cpp7 UInt64 ConvertStringToUInt64(const char *s, const char **end)
9 UInt64 result = 0;
25 UInt64 ConvertOctStringToUInt64(const char *s, const char **end)
27 UInt64 result = 0;
43 UInt64 ConvertHexStringToUInt64(const char *s, const char **end)
45 UInt64 result = 0;
66 UInt64 ConvertStringToUInt64(const wchar_t *s, const wchar_t **end)
68 UInt64 result = 0;
/external/lzma/CPP/7zip/UI/Console/
H A DPercentPrinter.h11 UInt64 m_MinStepSize;
12 UInt64 m_PrevValue;
13 UInt64 m_CurValue;
14 UInt64 m_Total;
19 CPercentPrinter(UInt64 minStepSize = 1): m_MinStepSize(minStepSize),
21 void SetTotal(UInt64 total) { m_Total = total; m_PrevValue = 0; }
22 void SetRatio(UInt64 doneValue) { m_CurValue = doneValue; }
H A DExtractCallbackConsole.h28 STDMETHOD(SetTotal)(UInt64 total);
29 STDMETHOD(SetCompleted)(const UInt64 *completeValue);
33 const wchar_t *existName, const FILETIME *existTime, const UInt64 *existSize,
34 const wchar_t *newName, const FILETIME *newTime, const UInt64 *newSize,
36 STDMETHOD (PrepareOperation)(const wchar_t *name, bool isFolder, Int32 askExtractMode, const UInt64 *position);
56 UInt64 NumArchives;
57 UInt64 NumArchiveErrors;
58 UInt64 NumFileErrors;
59 UInt64 NumFileErrorsInCurrentArchive;
H A DOpenCallbackConsole.cpp17 HRESULT COpenCallbackConsole::Open_SetTotal(const UInt64 *, const UInt64 *)
22 HRESULT COpenCallbackConsole::Open_SetCompleted(const UInt64 *, const UInt64 *)
/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;
22 UInt64 Size;
23 UInt64 GlobalOffset;
24 UInt64 LocalPos;
30 UInt64 total = 0;
47 STDMETHOD(Seek)(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition);
56 UInt64 _offsetPos; // offset from start of _streamIndex index
57 UInt64 _absPos;
58 UInt64 _lengt
[all...]
H A DCrossThreadProgress.h15 const UInt64 *InSize;
16 const UInt64 *OutSize;
34 STDMETHOD(SetRatioInfo)(const UInt64 *inSize, const UInt64 *outSize);
H A DCoderMixer2MT.h22 void SetCoderInfo(const UInt64 **inSizes, const UInt64 **outSizes);
60 const UInt64 **inSizes,
63 const UInt64 **outSizes,
73 void SetCoderInfo(UInt32 coderIndex, const UInt64 **inSizes, const UInt64 **outSizes)
75 UInt64 GetWriteProcessedSize(UInt32 binderIndex) const
/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/C/
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 DXzCrc64.c7 UInt64 g_Crc64Table[256];
14 UInt64 r = i;
17 r = (r >> 1) ^ ((UInt64)kCrc64Poly & ~((r & 1) - 1));
22 UInt64 MY_FAST_CALL Crc64Update(UInt64 v, const void *data, size_t size)
30 UInt64 MY_FAST_CALL Crc64Calc(const void *data, size_t size)
/external/lzma/CPP/Windows/
H A DSystem.h12 UInt64 GetRamSize();
/external/lzma/CPP/7zip/Archive/7z/
H A D7zSpecStream.h17 UInt64 _size;
26 UInt64 GetSize() const { return _size; }
32 STDMETHOD(GetSubStreamSize)(UInt64 subStream, UInt64 *value);
H A D7zIn.h22 UInt64 StartPosition;
23 UInt64 StartPositionAfterHeader;
24 UInt64 DataStartPosition;
25 UInt64 DataStartPosition2;
26 CRecordVector<UInt64> FileInfoPopIDs;
36 CRecordVector<UInt64> PackStreamStartPositions;
41 UInt64 HeadersSize;
42 UInt64 PhySize;
68 UInt64 GetFolderStreamPos(int folderIndex, int indexInFolder) const
74 UInt64 GetFolderFullPackSiz
[all...]
H A D7zFolderInStream.h26 UInt64 _currentSize;
27 UInt64 _filePos;
39 CRecordVector<UInt64> Sizes;
43 STDMETHOD(GetSubStreamSize)(UInt64 subStream, UInt64 *value);
47 UInt64 GetFullSize() const
49 UInt64 size = 0;
/external/lzma/CPP/7zip/Compress/
H A DCopyCoder.h19 UInt64 TotalSize;
26 const UInt64 *inSize, const UInt64 *outSize, ICompressProgressInfo *progress);
27 STDMETHOD(GetInStreamProcessedSize)(UInt64 *value);
H A DLzma2Decoder.h32 UInt64 _outSize;
33 UInt64 _inSizeProcessed;
34 UInt64 _outSizeProcessed;
51 ISequentialOutStream *outStream, const UInt64 *_inSize, const UInt64 *outSize,
56 STDMETHOD(GetInStreamProcessedSize)(UInt64 *value);
60 STDMETHOD(SetOutStreamSize)(const UInt64 *outSize);
/external/lzma/CS/7zip/Compress/LzmaAlone/
H A DLzmaBench.cs172 static UInt64 MyMultDiv64(UInt64 value, UInt64 elapsedTime)
174 UInt64 freq = TimeSpan.TicksPerSecond;
175 UInt64 elTime = elapsedTime;
186 static UInt64 GetCompressRating(UInt32 dictionarySize, UInt64 elapsedTime, UInt64 size)
188 UInt64 t = GetLogSize(dictionarySize) - (18 << kSubBits);
189 UInt64 numCommandsForOn
[all...]

Completed in 174 milliseconds

12345678910