Searched refs:UInt64 (Results 1 - 25 of 281) 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;
32 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; }
33 UInt64 GetRem() const { return _size - _pos; }
42 UInt64 _virtPos;
43 UInt64 _physPos;
44 UInt64 _size;
45 UInt64 _startOffset;
50 HRESULT InitAndSeek(UInt64 startOffse
[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...]
/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)) \
25 UInt64 MY_FAST_CALL XzCrc64UpdateT1_BeT4(UInt64 v, const void *data, size_t size, const UInt64 *table);
29 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)) \
48 UInt64 MY_FAST_CAL
[all...]
H A DSort.h12 void HeapSort64(UInt64 *p, size_t size);
/external/lzma/CPP/7zip/
H A DIProgress.h11 STDMETHOD(SetTotal)(UInt64 total) x; \
12 STDMETHOD(SetCompleted)(const UInt64 *completeValue) x; \
/external/lzma/CPP/7zip/Archive/7z/
H A D7zFolderInStream.h23 UInt64 _pos;
26 UInt64 _size;
40 CRecordVector<UInt64> Sizes;
44 STDMETHOD(GetSubStreamSize)(UInt64 subStream, UInt64 *value);
50 UInt64 GetFullSize() const
52 UInt64 size = 0;
H A D7zEncode.h25 UInt64 OutSize;
31 void AddOutSize(UInt64 addOutSize)
41 STDMETHOD(SetRatioInfo)(const UInt64 *inSize, const UInt64 *outSize);
69 const UInt64 *inSizeForReduce);
80 // const UInt64 *inStreamSize,
81 const UInt64 *inSizeForReduce,
83 CRecordVector<UInt64> &coderUnpackSizes,
84 UInt64 &unpackSize,
86 CRecordVector<UInt64>
[all...]
H A D7zSpecStream.h17 UInt64 _size;
26 UInt64 GetSize() const { return _size; }
32 STDMETHOD(GetSubStreamSize)(UInt64 subStream, UInt64 *value);
H A D7zUpdate.h36 UInt64 CTime;
37 UInt64 ATime;
38 UInt64 MTime;
40 UInt64 Size;
97 UInt64 NumSolidFiles;
98 UInt64 NumSolidBytes;
112 NumSolidFiles((UInt64)(Int64)(-1)),
113 NumSolidBytes((UInt64)(Int64)(-1)),
/external/lzma/CPP/7zip/Archive/Common/
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...]
/external/lzma/CPP/Windows/
H A DFileSystem.h23 bool MyGetDiskFreeSpace(CFSTR rootPath, UInt64 &clusterSize, UInt64 &totalSize, UInt64 &freeSize);
H A DSystem.h13 bool GetRamSize(UInt64 &size); // returns false, if unknown ram size
/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();
/external/lzma/CPP/7zip/UI/Console/
H A DExtractCallbackConsole.h99 STDMETHOD(SetTotal)(UInt64 total);
100 STDMETHOD(SetCompleted)(const UInt64 *completeValue);
114 UInt64 NumTryArcs;
119 UInt64 NumOkArcs;
120 UInt64 NumCantOpenArcs;
121 UInt64 NumArcsWithError;
122 UInt64 NumArcsWithWarnings;
124 UInt64 NumOpenArcErrors;
125 UInt64 NumOpenArcWarnings;
127 UInt64 NumFileError
[all...]
/external/lzma/CPP/7zip/UI/FileManager/
H A DProgressDialog2.h39 UInt64 _totalBytes;
40 UInt64 _completedBytes;
41 UInt64 _totalFiles;
42 UInt64 _curFiles;
43 UInt64 _inSize;
44 UInt64 _outSize;
83 HRESULT ScanProgress(UInt64 numFiles, UInt64 totalSize, const FString &fileName, bool isDir = false);
85 HRESULT Set_NumFilesTotal(UInt64 val);
86 void Set_NumBytesTotal(UInt64 va
[all...]
/external/protobuf/js/binary/
H A Darith.js41 goog.provide('jspb.arith.UInt64');
44 * UInt64 implements some 64-bit arithmetic routines necessary for properly
53 jspb.arith.UInt64 = function(lo, hi) {
70 * @param {!jspb.arith.UInt64} other
73 jspb.arith.UInt64.prototype.cmp = function(other) {
86 * @return {!jspb.arith.UInt64}
88 jspb.arith.UInt64.prototype.rightShift = function() {
91 return new jspb.arith.UInt64(lo >>> 0, hi >>> 0);
97 * @return {!jspb.arith.UInt64}
99 jspb.arith.UInt64
[all...]
/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...]
/external/lzma/CPP/7zip/Archive/
H A DXzHandler.h25 UInt64 InSize;
26 UInt64 OutSize;
27 UInt64 PhySize;
29 UInt64 NumStreams;
30 UInt64 NumBlocks;

Completed in 477 milliseconds

1234567891011>>