/external/lzma/CPP/7zip/UI/Common/ |
D | Bench.h | 13 UInt64 GlobalTime; 14 UInt64 GlobalFreq; 15 UInt64 UserTime; 16 UInt64 UserFreq; 17 UInt64 UnpackSize; 18 UInt64 PackSize; 19 UInt64 NumIterations; 22 UInt64 GetUsage() const; 23 UInt64 GetRatingPerUsage(UInt64 rating) const; 24 UInt64 GetSpeed(UInt64 numCommands) const; [all …]
|
D | Bench.cpp | 62 static const UInt64 kComplexInCommands = (UInt64)1 << 72 bool isSpecifiedFreq, UInt64 cpuFreq, UInt64 &complexInCommands) in SetComplexCommands() 75 const UInt64 kMinFreq = (UInt64)1000000 * 4; in SetComplexCommands() 76 const UInt64 kMaxFreq = (UInt64)1000000 * 20000; in SetComplexCommands() 372 static UInt64 GetTimeCount() in GetTimeCount() 378 return (UInt64)(v.tv_sec) * 1000000 + v.tv_usec; in GetTimeCount() 379 return (UInt64)time(NULL) * 1000000; in GetTimeCount() 393 static UInt64 GetFreq() in GetFreq() 415 UInt64 Sum; 424 UInt64 GetUserTime() in GetUserTime() [all …]
|
D | HashCalc.h | 37 virtual void SetSize(UInt64 size) = 0; 45 UInt64 NumDirs; 46 UInt64 NumFiles; 47 UInt64 NumAltStreams; 48 UInt64 FilesSize; 49 UInt64 AltStreamsSize; 50 UInt64 NumErrors; 52 UInt64 CurSize; 67 void SetSize(UInt64 size); 75 virtual HRESULT SetNumFiles(UInt64 numFiles) x; \ [all …]
|
D | DirItem.h | 16 UInt64 NumDirs; 17 UInt64 NumFiles; 18 UInt64 NumAltStreams; 19 UInt64 FilesSize; 20 UInt64 AltStreamsSize; 22 UInt64 NumErrors; 25 UInt64 Get_NumDataItems() const { return NumFiles + NumAltStreams; } in Get_NumDataItems() 26 UInt64 GetTotalBytes() const { return FilesSize + AltStreamsSize; } in GetTotalBytes() 49 UInt64 Anti_NumDirs; 50 UInt64 Anti_NumFiles; [all …]
|
/external/lzma/CPP/7zip/Common/ |
D | LimitedStreams.h | 16 UInt64 _size; 17 UInt64 _pos; 22 void Init(UInt64 streamSize) in Init() 32 UInt64 GetSize() const { return _pos; } in GetSize() 33 UInt64 GetRem() const { return _size - _pos; } in GetRem() 42 UInt64 _virtPos; 43 UInt64 _physPos; 44 UInt64 _size; 45 UInt64 _startOffset; 50 HRESULT InitAndSeek(UInt64 startOffset, UInt64 size) in InitAndSeek() [all …]
|
D | LimitedStreams.cpp | 13 const UInt64 rem = _size - _pos; in Read() 41 const UInt64 rem = _size - _virtPos; in Read() 45 UInt64 newPos = _startOffset + _virtPos; in Read() 59 STDMETHODIMP CLimitedInStream::Seek(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition) in Seek() 76 HRESULT CreateLimitedInStream(IInStream *inStream, UInt64 pos, UInt64 size, ISequentialInStream **r… in CreateLimitedInStream() 95 UInt64 rem = Size - _virtPos; in Read() 109 UInt64 newPos = StartOffset + ((UInt64)phyBlock << BlockSizeLog) + offsetInBlock; in Read() 133 STDMETHODIMP CClusterInStream::Seek(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition) in Seek() 144 if (_virtPos != (UInt64)offset) in Seek() 175 UInt64 phyPos = extent.Phy + (_virtPos - extent.Virt); in Read() [all …]
|
D | FileStreams.cpp | 72 UInt64 rem = File.Size - VirtPos; in Read() 79 const UInt64 mask2 = ~(UInt64)mask; in Read() 80 UInt64 alignedPos = VirtPos & mask2; in Read() 99 UInt64 end = VirtPos + size; in Read() 113 UInt64 realNewPosition; in Read() 123 readSize = (UInt32)MyMin(File.Size - PhyPos, (UInt64)kClusterSize); in Read() 142 UInt64 realNewPosition; in Read() 241 STDMETHODIMP CInFileStream::Seek(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition) in Seek() 267 UInt64 realNewPosition; in Seek() 284 *newPosition = (UInt64)res; in Seek() [all …]
|
D | FileStreams.h | 48 UInt64 VirtPos; 49 UInt64 PhyPos; 50 UInt64 BufStartPos; 88 STDMETHOD(Seek)(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition); 90 STDMETHOD(GetSize)(UInt64 *size); 92 …STDMETHOD(GetProps)(UInt64 *size, FILETIME *cTime, FILETIME *aTime, FILETIME *mTime, UInt32 *attri… 132 UInt64 ProcessedSize; 146 STDMETHOD(Seek)(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition); 147 STDMETHOD(SetSize)(UInt64 newSize); 149 HRESULT GetSize(UInt64 *size); [all …]
|
/external/lzma/C/ |
D | XzCrc64.c | 17 | ((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 *ta… 29 UInt64 MY_FAST_CALL XzCrc64UpdateT4(UInt64 v, const void *data, size_t size, const UInt64 *table); 32 typedef UInt64 (MY_FAST_CALL *CRC64_FUNC)(UInt64 v, const void *data, size_t size, const UInt64 *ta… 35 UInt64 g_Crc64Table[256 * CRC64_NUM_TABLES]; [all …]
|
D | Xz.h | 21 unsigned Xz_ReadVarInt(const Byte *p, size_t maxSize, UInt64 *value); 22 unsigned Xz_WriteVarInt(Byte *buf, UInt64 v); 37 UInt64 id; 44 UInt64 packSize; 45 UInt64 unpackSize; 88 UInt64 crc64; 108 UInt64 unpackSize; 109 UInt64 totalSize; 117 UInt64 startOffset; 123 #define XZ_SIZE_OVERFLOW ((UInt64)(Int64)-1) [all …]
|
D | XzCrc64Opt.c | 12 UInt64 MY_FAST_CALL XzCrc64UpdateT4(UInt64 v, const void *data, size_t size, const UInt64 *table) in XzCrc64UpdateT4() 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_CALL XzCrc64UpdateT1_BeT4(UInt64 v, const void *data, size_t size, const UInt64 *tab… in XzCrc64UpdateT1_BeT4()
|
D | MtDec.h | 28 UInt64 totalInSize; 29 UInt64 totalOutSize; 35 SRes MtProgress_ProgressAdd(CMtProgress *p, UInt64 inSize, UInt64 outSize); 48 UInt64 inDataSize; // total size of input data in all blocks 80 UInt64 outPos; // check it (size_t) 93 UInt64 *inCodePos, UInt64 *outCodePos, int *stop); 146 UInt64 blockIndex; 166 UInt64 readProcessed; 168 UInt64 inProcessed; 175 UInt64 interruptIndex;
|
/external/protobuf/js/binary/ |
D | arith.js | 53 jspb.arith.UInt64 = function(lo, hi) { class in jspb.arith 73 jspb.arith.UInt64.prototype.cmp = function(other) { 88 jspb.arith.UInt64.prototype.rightShift = function() { 91 return new jspb.arith.UInt64(lo >>> 0, hi >>> 0); 99 jspb.arith.UInt64.prototype.leftShift = function() { 102 return new jspb.arith.UInt64(lo >>> 0, hi >>> 0); 110 jspb.arith.UInt64.prototype.msb = function() { 119 jspb.arith.UInt64.prototype.lsb = function() { 128 jspb.arith.UInt64.prototype.zero = function() { 138 jspb.arith.UInt64.prototype.add = function(other) { [all …]
|
/external/lzma/CS/7zip/Compress/LzmaAlone/ |
D | LzmaBench.cs | 172 static UInt64 MyMultDiv64(UInt64 value, UInt64 elapsedTime) in MyMultDiv64() 174 UInt64 freq = TimeSpan.TicksPerSecond; in MyMultDiv64() 175 UInt64 elTime = elapsedTime; in MyMultDiv64() 186 static UInt64 GetCompressRating(UInt32 dictionarySize, UInt64 elapsedTime, UInt64 size) in GetCompressRating() 188 UInt64 t = GetLogSize(dictionarySize) - (18 << kSubBits); in GetCompressRating() 189 UInt64 numCommandsForOne = 1060 + ((t * t * 10) >> (2 * kSubBits)); in GetCompressRating() 190 UInt64 numCommands = (UInt64)(size) * numCommandsForOne; in GetCompressRating() 194 static UInt64 GetDecompressRating(UInt64 elapsedTime, UInt64 outSize, UInt64 inSize) in GetDecompressRating() 196 UInt64 numCommands = inSize * 220 + outSize * 20; in GetDecompressRating() 200 static UInt64 GetTotalRating( in GetTotalRating() [all …]
|
/external/lzma/CPP/7zip/UI/FileManager/ |
D | ProgressDialog2.h | 39 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 = fals… 85 HRESULT Set_NumFilesTotal(UInt64 val); 86 void Set_NumBytesTotal(UInt64 val); 87 void Set_NumFilesCur(UInt64 val); [all …]
|
D | ProgressDialog.h | 19 UInt64 _total; 20 UInt64 _completed; 45 void SetProgress(UInt64 total, UInt64 completed) in SetProgress() 51 void SetPos(UInt64 completed) in SetPos() 56 void GetProgress(UInt64 &total, UInt64 &completed) in GetProgress() 66 UInt64 _numShiftBits; 68 void Init(UInt64 range) in Init() 74 int Count(UInt64 value) { return int(value >> _numShiftBits); } in Count() 84 UInt64 _peviousPos; 85 UInt64 _range; [all …]
|
/external/lzma/CPP/7zip/Archive/7z/ |
D | 7zIn.h | 37 CRecordVector<UInt64> IDs; 52 CObjArray<UInt64> PackPositions; // NumPackStreams + 1 58 CObjArray<UInt64> CoderUnpackSizes; // including unpack sizes of bond coders 80 UInt64 GetFolderUnpackSize(unsigned folderIndex) const in GetFolderUnpackSize() 85 UInt64 GetStreamPackSize(unsigned index) const in GetStreamPackSize() 180 UInt64 StartPosition; 181 UInt64 StartPositionAfterHeader; 182 UInt64 DataStartPosition; 183 UInt64 DataStartPosition2; 184 CRecordVector<UInt64> FileInfoPopIDs; [all …]
|
D | 7zOut.h | 71 UInt64 CTime; 72 UInt64 ATime; 73 UInt64 MTime; 74 UInt64 StartPos; 105 CRecordVector<UInt64> CoderUnpackSizes; // including unpack sizes of bond coders 125 CRecordVector<UInt64> PackSizes; 243 UInt64 _prefixHeaderPos; 247 UInt64 GetPos() const; 252 void WriteUInt64(UInt64 value); 253 void WriteNumber(UInt64 value); [all …]
|
D | 7zEncode.h | 25 UInt64 OutSize; 31 void AddOutSize(UInt64 addOutSize) in AddOutSize() 41 STDMETHOD(SetRatioInfo)(const UInt64 *inSize, const UInt64 *outSize); 69 const UInt64 *inSizeForReduce); 81 const UInt64 *inSizeForReduce, 83 CRecordVector<UInt64> &coderUnpackSizes, 84 UInt64 &unpackSize, 86 CRecordVector<UInt64> &packSizes,
|
/external/lzma/CPP/Windows/ |
D | TimeUtils.cpp | 15 static const UInt64 kUnixTimeOffset = 16 (UInt64)60 * 60 * 24 * (89 + 365 * (kUnixTimeStartYear - kFileTimeStartYear)); 17 static const UInt64 kNumSecondsInFileTime = (UInt64)(Int64)-1 / kNumTimeQuantumsInSecond; 26 UInt64 res; in DosTimeToFileTime() 59 UInt64 v64 = ft.dwLowDateTime | ((UInt64)ft.dwHighDateTime << 32); in FileTimeToDosTime() 118 UInt64 UnixTimeToFileTime64(UInt32 unixTime) throw() in UnixTimeToFileTime64() 120 return (kUnixTimeOffset + (UInt64)unixTime) * kNumTimeQuantumsInSecond; in UnixTimeToFileTime64() 125 UInt64 v = UnixTimeToFileTime64(unixTime); in UnixTimeToFileTime() 130 UInt64 UnixTime64ToFileTime64(Int64 unixTime) throw() in UnixTime64ToFileTime64() 132 return (UInt64)(kUnixTimeOffset + unixTime) * kNumTimeQuantumsInSecond; in UnixTime64ToFileTime64() [all …]
|
/external/lzma/CPP/7zip/UI/Console/ |
D | ExtractCallbackConsole.h | 99 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 NumFileErrors; [all …]
|
/external/lzma/CPP/7zip/Compress/ |
D | LzmaDecoder.h | 40 UInt64 _outSize; 41 UInt64 _inProcessed; 42 UInt64 _outProcessed; 54 void SetOutStreamSizeResume(const UInt64 *outSize); 71 const UInt64 *inSize, const UInt64 *outSize, ICompressProgressInfo *progress); 74 STDMETHOD(GetInStreamProcessedSize)(UInt64 *value); 75 STDMETHOD(SetOutStreamSize)(const UInt64 *outSize); 89 …HRESULT CodeResume(ISequentialOutStream *outStream, const UInt64 *outSize, ICompressProgressInfo *… 94 UInt64 GetInputProcessedSize() const { return _inProcessed; } in GetInputProcessedSize() 99 UInt64 GetOutputProcessedSize() const { return _outProcessed; } in GetOutputProcessedSize()
|
D | Bcj2Coder.h | 40 …HRESULT CodeReal(ISequentialInStream * const *inStreams, const UInt64 * const *inSizes, UInt32 num… 41 … ISequentialOutStream * const *outStreams, const UInt64 * const *outSizes, UInt32 numOutStreams, 47 …STDMETHOD(Code)(ISequentialInStream * const *inStreams, const UInt64 * const *inSizes, UInt32 numI… 48 … ISequentialOutStream * const *outStreams, const UInt64 * const *outSizes, UInt32 numOutStreams, 74 UInt64 _inStreamsProcessed[BCJ2_NUM_STREAMS]; 80 UInt64 _outSize; 81 UInt64 _outSize_Processed; 98 …STDMETHOD(Code)(ISequentialInStream * const *inStreams, const UInt64 * const *inSizes, UInt32 numI… 99 … ISequentialOutStream * const *outStreams, const UInt64 * const *outSizes, UInt32 numOutStreams, 103 STDMETHOD(GetInStreamProcessedSize2)(UInt32 streamIndex, UInt64 *value); [all …]
|
D | Lzma2Decoder.cpp | 27 , _memUsage((UInt64)(sizeof(size_t)) << 28) in CDecoder() 61 static UInt64 Get_ExpectedBlockSize_From_Dict(UInt32 dictSize) in Get_ExpectedBlockSize_From_Dict() 65 UInt64 blockSize = (UInt64)dictSize << 2; in Get_ExpectedBlockSize_From_Dict() 70 blockSize &= ~(UInt64)(kMinSize - 1); in Get_ExpectedBlockSize_From_Dict() 85 const UInt64 *inSize, const UInt64 *outSize, ICompressProgressInfo *progress) in Code() 112 UInt64 useLimit = _memUsage; in Code() 114 UInt64 expectedBlockSize64 = Get_ExpectedBlockSize_From_Dict(dictSize); in Code() 122 UInt64 okThreads = useLimit / (props.outBlockMax + props.inBlockMax + kOverheadSize); in Code() 143 UInt64 inProcessed = 0; in Code() 189 STDMETHODIMP CDecoder::GetInStreamProcessedSize(UInt64 *value) in GetInStreamProcessedSize() [all …]
|
/external/lzma/CPP/7zip/ |
D | IStream.h | 84 STDMETHOD(Seek)(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition) PURE; 89 STDMETHOD(Seek)(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition) PURE; 90 STDMETHOD(SetSize)(UInt64 newSize) PURE; 95 STDMETHOD(GetSize)(UInt64 *size) PURE; 106 …STDMETHOD(GetProps)(UInt64 *size, FILETIME *cTime, FILETIME *aTime, FILETIME *mTime, UInt32 *attri… 111 UInt64 Size; 112 UInt64 VolID; 113 UInt64 FileID_Low; 114 UInt64 FileID_High;
|