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

1234567891011>>

/external/lzma/C/
H A DLzFindMt.h36 UInt32 numProcessedBlocks;
39 typedef UInt32 * (*Mf_Mix_Matches)(void *p, UInt32 matchMinPos, UInt32 *distances);
44 typedef void (*Mf_GetHeads)(const Byte *buffer, UInt32 pos,
45 UInt32 *hash, UInt32 hashMask, UInt32 *heads, UInt32 numHeads, const UInt32 *cr
[all...]
H A DLzFind.h11 typedef UInt32 CLzRef;
16 UInt32 pos;
17 UInt32 posLimit;
18 UInt32 streamPos;
19 UInt32 lenLimit;
21 UInt32 cyclicBufferPos;
22 UInt32 cyclicBufferSize; /* it must be = (historySize + 1) */
29 UInt32 matchMaxLen;
32 UInt32 hashMask;
33 UInt32 cutValu
[all...]
H A D7zCrc.c18 UInt32 MY_FAST_CALL CrcUpdateT1_BeT4(UInt32 v, const void *data, size_t size, const UInt32 *table);
19 UInt32 MY_FAST_CALL CrcUpdateT1_BeT8(UInt32 v, const void *data, size_t size, const UInt32 *table);
23 UInt32 MY_FAST_CALL CrcUpdateT4(UInt32 v, const void *data, size_t size, const UInt32 *table);
24 UInt32 MY_FAST_CAL
[all...]
H A DBra.c8 SizeT ARM_Convert(Byte *data, SizeT size, UInt32 ip, int encoding)
19 UInt32 dest;
20 UInt32 src = ((UInt32)data[i + 2] << 16) | ((UInt32)data[i + 1] << 8) | (data[i + 0]);
23 dest = ip + (UInt32)i + src;
25 dest = src - (ip + (UInt32)i);
35 SizeT ARMT_Convert(Byte *data, SizeT size, UInt32 ip, int encoding)
47 UInt32 dest;
48 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);
H A DAes.h16 /* UInt32 pointers must be 16-byte aligned */
23 typedef void (MY_FAST_CALL *AES_SET_KEY_FUNC)(UInt32 *aes, const Byte *key, unsigned keySize);
24 void MY_FAST_CALL Aes_SetKey_Enc(UInt32 *aes, const Byte *key, unsigned keySize);
25 void MY_FAST_CALL Aes_SetKey_Dec(UInt32 *aes, const Byte *key, unsigned keySize);
27 /* ivAes - 16-byte aligned pointer to iv+keyMode+roundKeys sequence: UInt32[AES_NUM_IVMRK_WORDS] */
28 void AesCbc_Init(UInt32 *ivAes, const Byte *iv); /* iv size is AES_BLOCK_SIZE */
31 typedef void (MY_FAST_CALL *AES_CODE_FUNC)(UInt32 *ivAes, Byte *data, size_t numBlocks);
H A DBcj2.h71 UInt32 ip;
73 UInt32 range;
74 UInt32 code;
107 UInt32 range;
111 UInt32 ip;
118 UInt32 fileIp;
119 UInt32 fileSize; /* (fileSize <= ((UInt32)1 << 31)), 0 means no_limit */
120 UInt32 relatLimit; /* (relatLimit <= ((UInt32)
[all...]
H A DBra86.c10 SizeT x86_Convert(Byte *data, SizeT size, UInt32 ip, UInt32 *state, int encoding)
13 UInt32 mask = *state & 7;
51 UInt32 v = ((UInt32)p[4] << 24) | ((UInt32)p[3] << 16) | ((UInt32)p[2] << 8) | ((UInt32)p[1]);
52 UInt32 cur = ip + (UInt32)po
[all...]
H A DBraIA64.c16 SizeT IA64_Convert(Byte *data, SizeT size, UInt32 ip, int encoding)
24 UInt32 instrTemplate = data[i] & 0x1F;
25 UInt32 mask = kBranchTable[instrTemplate];
26 UInt32 bitPos = 5;
30 UInt32 bytePos, bitRes;
44 UInt32 src = (UInt32)((instNorm >> 13) & 0xFFFFF);
45 UInt32 dest;
46 src |= ((UInt32)(instNorm >> 36) & 1) << 20;
51 dest = ip + (UInt32)
[all...]
H A DBra.h43 UInt32 ip = 0;
55 SizeT x86_Convert(Byte *data, SizeT size, UInt32 ip, UInt32 *state, int encoding);
56 SizeT ARM_Convert(Byte *data, SizeT size, UInt32 ip, int encoding);
57 SizeT ARMT_Convert(Byte *data, SizeT size, UInt32 ip, int encoding);
58 SizeT PPC_Convert(Byte *data, SizeT size, UInt32 ip, int encoding);
59 SizeT SPARC_Convert(Byte *data, SizeT size, UInt32 ip, int encoding);
60 SizeT IA64_Convert(Byte *data, SizeT size, UInt32 ip, int encoding);
/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/Archive/7z/
H A D7zHeader.h36 UInt32 NextHeaderCRC;
39 const UInt32 kStartHeaderSize = 20;
48 const UInt32 kFinishHeaderSize = kStartHeaderSize + 16;
100 const UInt32 k_Copy = 0;
101 const UInt32 k_Delta = 3;
103 const UInt32 k_LZMA2 = 0x21;
105 const UInt32 k_SWAP2 = 0x20302;
106 const UInt32 k_SWAP4 = 0x20304;
108 const UInt32 k_LZMA = 0x30101;
109 const UInt32 k_PPM
[all...]
/external/lzma/CPP/7zip/Compress/
H A DBcjCoder.cpp17 STDMETHODIMP_(UInt32) CCoder::Filter(Byte *data, UInt32 size)
19 UInt32 processed = (UInt32)::x86_Convert(data, size, _bufferPos, &_prevMask, _encode);
H A DBranchMisc.cpp16 STDMETHODIMP_(UInt32) CCoder::Filter(Byte *data, UInt32 size)
18 UInt32 processed = (UInt32)BraFunc(data, size, _bufferPos, _encode);
H A DBcj2Coder.h19 UInt32 _bufsCurSizes[BCJ2_NUM_STREAMS + 1];
20 UInt32 _bufsNewSizes[BCJ2_NUM_STREAMS + 1];
38 UInt32 _relatLim;
40 HRESULT CodeReal(ISequentialInStream * const *inStreams, const UInt64 * const *inSizes, UInt32 numInStreams,
41 ISequentialOutStream * const *outStreams, const UInt64 * const *outSizes, UInt32 numOutStreams,
47 STDMETHOD(Code)(ISequentialInStream * const *inStreams, const UInt64 * const *inSizes, UInt32 numInStreams,
48 ISequentialOutStream * const *outStreams, const UInt64 * const *outSizes, UInt32 numOutStreams,
51 STDMETHOD(SetCoderProperties)(const PROPID *propIDs, const PROPVARIANT *props, UInt32 numProps);
53 STDMETHOD(SetInBufSize)(UInt32 streamIndex, UInt32 siz
[all...]
H A DLzmaDecoder.h28 UInt32 _inPos;
29 UInt32 _inSize;
37 UInt32 _inBufSizeAllocated;
38 UInt32 _inBufSize;
39 UInt32 _outBufSize;
61 STDMETHOD(SetDecoderProperties2)(const Byte *data, UInt32 size);
62 STDMETHOD(SetFinishMode)(UInt32 finishMode);
64 STDMETHOD(SetInBufSize)(UInt32 streamIndex, UInt32 size);
65 STDMETHOD(SetOutBufSize)(UInt32 streamInde
[all...]
/external/lzma/CPP/7zip/UI/FileManager/
H A DLangUtils.h14 UInt32 ControlID;
15 UInt32 LangID;
22 void LangSetDlgItemText(HWND dialog, UInt32 controlID, UInt32 langID);
23 void LangSetDlgItems(HWND dialog, const UInt32 *ids, unsigned numItems);
24 void LangSetDlgItems_Colon(HWND dialog, const UInt32 *ids, unsigned numItems);
25 void LangSetWindowText(HWND window, UInt32 langID);
27 UString LangString(UInt32 langID);
28 void AddLangString(UString &s, UInt32 langID);
29 void LangString(UInt32 langI
[all...]
/external/lzma/CPP/7zip/Archive/Common/
H A DDummyOutStream.cpp7 STDMETHODIMP CDummyOutStream::Write(const void *data, UInt32 size, UInt32 *processedSize)
9 UInt32 realProcessedSize = size;
H A DHandlerOut.h12 UInt32 _level;
16 UInt32 _numThreads;
17 UInt32 _numProcessors;
20 UInt32 _crcSize;
27 , UInt32 numThreads
40 int GetLevel() const { return _level == (UInt32)(Int32)-1 ? 5 : (int)_level; }
51 UInt32 _level;
55 UInt32 _numThreads;
56 UInt32 _numProcessors;
61 int GetLevel() const { return _level == (UInt32)(Int3
[all...]
/external/lzma/CPP/Common/
H A DLang.h11 CRecordVector<UInt32> _ids;
12 CRecordVector<UInt32> _offsets;
20 const wchar_t *Get(UInt32 id) const throw();
/external/lzma/CPP/7zip/Common/
H A DStreamBinder.h32 UInt32 _bufSize;
42 HRESULT Read(void *data, UInt32 size, UInt32 *processedSize);
43 HRESULT Write(const void *data, UInt32 size, UInt32 *processedSize);
/external/lzma/CPP/7zip/
H A DPropID.h114 const UInt32 kpv_ErrorFlags_IsNotArc = 1 << 0;
115 const UInt32 kpv_ErrorFlags_HeadersError = 1 << 1;
116 const UInt32 kpv_ErrorFlags_EncryptedHeadersError = 1 << 2;
117 const UInt32 kpv_ErrorFlags_UnavailableStart = 1 << 3;
118 const UInt32 kpv_ErrorFlags_UnconfirmedStart = 1 << 4;
119 const UInt32 kpv_ErrorFlags_UnexpectedEnd = 1 << 5;
120 const UInt32 kpv_ErrorFlags_DataAfterEnd = 1 << 6;
121 const UInt32 kpv_ErrorFlags_UnsupportedMethod = 1 << 7;
122 const UInt32 kpv_ErrorFlags_UnsupportedFeature = 1 << 8;
123 const UInt32 kpv_ErrorFlags_DataErro
[all...]
/external/lzma/CS/7zip/Compress/RangeCoder/
H A DRangeCoderBitTree.cs22 public void Encode(Encoder rangeEncoder, UInt32 symbol)
24 UInt32 m = 1;
28 UInt32 bit = (symbol >> bitIndex) & 1;
34 public void ReverseEncode(Encoder rangeEncoder, UInt32 symbol)
36 UInt32 m = 1;
37 for (UInt32 i = 0; i < NumBitLevels; i++)
39 UInt32 bit = symbol & 1;
46 public UInt32 GetPrice(UInt32 symbol)
48 UInt32 pric
[all...]

Completed in 746 milliseconds

1234567891011>>