Searched refs:UInt32 (Results 1 - 25 of 384) sorted by relevance

1234567891011>>

/external/lzma/CPP/7zip/Compress/
H A DBranchMisc.cpp9 UInt32 CBC_ARM_Encoder::SubFilter(Byte *data, UInt32 size)
10 { return (UInt32)::ARM_Convert(data, size, _bufferPos, 1); }
12 UInt32 CBC_ARM_Decoder::SubFilter(Byte *data, UInt32 size)
13 { return (UInt32)::ARM_Convert(data, size, _bufferPos, 0); }
15 UInt32 CBC_ARMT_Encoder::SubFilter(Byte *data, UInt32 size)
16 { return (UInt32)::ARMT_Convert(data, size, _bufferPos, 1); }
18 UInt32 CBC_ARMT_Decode
[all...]
H A DBcjCoder.cpp7 UInt32 CBCJ_x86_Encoder::SubFilter(Byte *data, UInt32 size)
9 return (UInt32)::x86_Convert(data, size, _bufferPos, &_prevMask, 1);
12 UInt32 CBCJ_x86_Decoder::SubFilter(Byte *data, UInt32 size)
14 return (UInt32)::x86_Convert(data, size, _bufferPos, &_prevMask, 0);
H A DBranchCoder.h15 UInt32 _bufferPos;
17 virtual UInt32 SubFilter(Byte *data, UInt32 size) = 0;
21 STDMETHOD_(UInt32, Filter)(Byte *data, UInt32 size);
25 { public: UInt32 SubFilter(Byte *data, UInt32 size); };
28 { public: UInt32 SubFilter(Byte *data, UInt32 size); };
31 { public: UInt32 SubFilte
[all...]
H A DRangeCoder.h14 const UInt32 kTopValue = (1 << kNumTopBits);
18 UInt32 _cacheSize;
22 UInt32 Range;
24 bool Create(UInt32 bufferSize) { return Stream.Create(bufferSize); }
47 void Encode(UInt32 start, UInt32 size, UInt32 total)
60 if ((UInt32)Low < (UInt32)0xFF000000 || (int)(Low >> 32) != 0)
69 _cache = (Byte)((UInt32)Lo
[all...]
/external/chromium_org/third_party/lzma_sdk/
H A DLzFind.h13 typedef UInt32 CLzRef;
18 UInt32 pos;
19 UInt32 posLimit;
20 UInt32 streamPos;
21 UInt32 lenLimit;
23 UInt32 cyclicBufferPos;
24 UInt32 cyclicBufferSize; /* it must be = (historySize + 1) */
26 UInt32 matchMaxLen;
29 UInt32 hashMask;
30 UInt32 cutValu
[all...]
H A D7zCrc.c15 typedef UInt32 (MY_FAST_CALL *CRC_FUNC)(UInt32 v, const void *data, size_t size, const UInt32 *table);
18 UInt32 g_CrcTable[256 * CRC_NUM_TABLES];
24 static UInt32 MY_FAST_CALL CrcUpdateT1(UInt32 v, const void *data, size_t size, const UInt32 *table)
34 UInt32 MY_FAST_CALL CrcUpdateT4(UInt32 v, const void *data, size_t size, const UInt32 *tabl
[all...]
H A DBra.c6 SizeT ARM_Convert(Byte *data, SizeT size, UInt32 ip, int encoding)
17 UInt32 dest;
18 UInt32 src = ((UInt32)data[i + 2] << 16) | ((UInt32)data[i + 1] << 8) | (data[i + 0]);
21 dest = ip + (UInt32)i + src;
23 dest = src - (ip + (UInt32)i);
33 SizeT ARMT_Convert(Byte *data, SizeT size, UInt32 ip, int encoding)
45 UInt32 dest;
46 UInt32 sr
[all...]
H A D7zCrc.h11 extern UInt32 g_CrcTable[];
20 UInt32 MY_FAST_CALL CrcUpdate(UInt32 crc, const void *data, size_t size);
21 UInt32 MY_FAST_CALL CrcCalc(const void *data, size_t size);
/external/chromium_org/third_party/ots/third_party/lzma_sdk/
H A DLzFind.h14 typedef UInt32 CLzRef;
19 UInt32 pos;
20 UInt32 posLimit;
21 UInt32 streamPos;
22 UInt32 lenLimit;
24 UInt32 cyclicBufferPos;
25 UInt32 cyclicBufferSize; /* it must be = (historySize + 1) */
27 UInt32 matchMaxLen;
30 UInt32 hashMask;
31 UInt32 cutValu
[all...]
/external/lzma/C/
H A DLzFind.h13 typedef UInt32 CLzRef;
18 UInt32 pos;
19 UInt32 posLimit;
20 UInt32 streamPos;
21 UInt32 lenLimit;
23 UInt32 cyclicBufferPos;
24 UInt32 cyclicBufferSize; /* it must be = (historySize + 1) */
26 UInt32 matchMaxLen;
29 UInt32 hashMask;
30 UInt32 cutValu
[all...]
H A DLzFindMt.h38 UInt32 numProcessedBlocks;
41 typedef UInt32 * (*Mf_Mix_Matches)(void *p, UInt32 matchMinPos, UInt32 *distances);
46 typedef void (*Mf_GetHeads)(const Byte *buffer, UInt32 pos,
47 UInt32 *hash, UInt32 hashMask, UInt32 *heads, UInt32 numHeads, const UInt32 *cr
[all...]
H A D7zCrc.c15 typedef UInt32 (MY_FAST_CALL *CRC_FUNC)(UInt32 v, const void *data, size_t size, const UInt32 *table);
18 UInt32 g_CrcTable[256 * CRC_NUM_TABLES];
24 static UInt32 MY_FAST_CALL CrcUpdateT1(UInt32 v, const void *data, size_t size, const UInt32 *table)
34 UInt32 MY_FAST_CALL CrcUpdateT4(UInt32 v, const void *data, size_t size, const UInt32 *tabl
[all...]
H A DBra.c6 SizeT ARM_Convert(Byte *data, SizeT size, UInt32 ip, int encoding)
17 UInt32 dest;
18 UInt32 src = ((UInt32)data[i + 2] << 16) | ((UInt32)data[i + 1] << 8) | (data[i + 0]);
21 dest = ip + (UInt32)i + src;
23 dest = src - (ip + (UInt32)i);
33 SizeT ARMT_Convert(Byte *data, SizeT size, UInt32 ip, int encoding)
45 UInt32 dest;
46 UInt32 sr
[all...]
H A D7zCrc.h11 extern UInt32 g_CrcTable[];
20 UInt32 MY_FAST_CALL CrcUpdate(UInt32 crc, const void *data, size_t size);
21 UInt32 MY_FAST_CALL CrcCalc(const void *data, size_t size);
/external/lzma/CS/7zip/Compress/LZ/
H A DIMatchFinder.cs13 UInt32 GetMatchLen(Int32 index, UInt32 distance, UInt32 limit);
14 UInt32 GetNumAvailableBytes();
19 void Create(UInt32 historySize, UInt32 keepAddBufferBefore,
20 UInt32 matchMaxLen, UInt32 keepAddBufferAfter);
21 UInt32 GetMatches(UInt32[] distance
[all...]
H A DLzInWindow.cs11 UInt32 _posLimit; // offset (from _buffer) of first byte when new block reading must be done
14 UInt32 _pointerToLastSafePosition;
16 public UInt32 _bufferOffset;
18 public UInt32 _blockSize; // Size of Allocated memory block
19 public UInt32 _pos; // offset (from _buffer) of curent byte
20 UInt32 _keepSizeBefore; // how many BYTEs must be kept in buffer before _pos
21 UInt32 _keepSizeAfter; // how many BYTEs must be kept buffer after _pos
22 public UInt32 _streamPos; // offset (from _buffer) of first not read byte from Stream
26 UInt32 offset = (UInt32)(_bufferOffse
[all...]
H A DLzBinTree.cs9 UInt32 _cyclicBufferPos;
10 UInt32 _cyclicBufferSize = 0;
11 UInt32 _matchMaxLen;
13 UInt32[] _son;
14 UInt32[] _hash;
16 UInt32 _cutValue = 0xFF;
17 UInt32 _hashMask;
18 UInt32 _hashSizeSum = 0;
22 const UInt32 kHash2Size = 1 << 10;
23 const UInt32 kHash3Siz
[all...]
/external/lzma/CPP/7zip/UI/Console/
H A DBenchCon.h12 FILE *f, UInt32 numIterations, UInt32 numThreads, UInt32 dictionary);
14 HRESULT CrcBenchCon(FILE *f, UInt32 numIterations, UInt32 numThreads, UInt32 dictionary);
/external/lzma/CPP/7zip/Archive/7z/
H A D7zCompressionMode.h17 UInt32 NumInStreams;
18 UInt32 NumOutStreams;
24 UInt32 InCoder;
25 UInt32 InStream;
26 UInt32 OutCoder;
27 UInt32 OutStream;
35 UInt32 NumThreads;
/external/lzma/CPP/7zip/Archive/Common/
H A DCoderMixer2.h15 UInt32 InIndex;
16 UInt32 OutIndex;
21 UInt32 NumInStreams;
22 UInt32 NumOutStreams;
29 CRecordVector<UInt32> InStreams;
30 CRecordVector<UInt32> OutStreams;
41 UInt32 GetCoderStartOutStream(UInt32 coderIndex) const
43 UInt32 numOutStreams = 0;
44 for (UInt32
[all...]
H A DParseProperties.h9 HRESULT ParsePropValue(const UString &name, const PROPVARIANT &prop, UInt32 &resValue);
10 HRESULT ParsePropDictionaryValue(const UString &srcStringSpec, UInt32 &dicSize);
11 HRESULT ParsePropDictionaryValue(const UString &name, const PROPVARIANT &prop, UInt32 &resValue);
15 int ParseStringToUInt32(const UString &srcString, UInt32 &number);
16 HRESULT ParseMtProp(const UString &name, const PROPVARIANT &prop, UInt32 defaultNumThreads, UInt32 &numThreads);
H A DDummyOutStream.cpp7 STDMETHODIMP CDummyOutStream::Write(const void *data, UInt32 size, UInt32 *processedSize)
9 UInt32 realProcessedSize;
/external/lzma/CPP/Common/
H A DIntToString.h9 void ConvertUInt64ToString(UInt64 value, char *s, UInt32 base = 10);
14 void ConvertUInt32ToString(UInt32 value, char *s);
15 void ConvertUInt32ToString(UInt32 value, wchar_t *s);
17 void ConvertUInt32ToHexWithZeros(UInt32 value, char *s);
/external/lzma/CPP/Windows/
H A DSystem.h11 UInt32 GetNumberOfProcessors();
H A DTime.h11 bool DosTimeToFileTime(UInt32 dosTime, FILETIME &fileTime);
12 bool FileTimeToDosTime(const FILETIME &fileTime, UInt32 &dosTime);
13 void UnixTimeToFileTime(UInt32 unixTime, FILETIME &fileTime);
14 bool FileTimeToUnixTime(const FILETIME &fileTime, UInt32 &unixTime);

Completed in 253 milliseconds

1234567891011>>