/external/lzma/C/ |
LzmaEnc.c | 36 #define kTopValue ((UInt32)1 << kNumTopBits)
67 if ((UInt32)p->reduceSize <= ((UInt32)2 << i)) { p->dictSize = ((UInt32)2 << i); break; }
68 if ((UInt32)p->reduceSize <= ((UInt32)3 << i)) { p->dictSize = ((UInt32)3 << i); break; }
88 UInt32 LzmaEncProps_GetDictSize(const CLzmaEncProps *props2)
105 UInt32 GetPosSlot1(UInt32 pos) [all...] |
LzFind.c | 12 #define kMaxValForNormalize ((UInt32)0xFFFFFFFF)
15 #define kMaxHistorySize ((UInt32)3 << 30)
30 static int LzInWindow_Create(CMatchFinder *p, UInt32 keepSizeReserv, ISzAlloc *alloc)
32 UInt32 blockSize = p->keepSizeBefore + p->keepSizeAfter + keepSizeReserv;
50 UInt32 MatchFinder_GetNumAvailableBytes(CMatchFinder *p) { return p->streamPos - p->pos; }
52 void MatchFinder_ReduceOffsets(CMatchFinder *p, UInt32 subValue)
65 UInt32 curSize = 0xFFFFFFFF - p->streamPos;
67 curSize = (UInt32)p->directInputRem;
88 p->streamPos += (UInt32)size;
137 UInt32 i; [all...] |
Ppmd7.h | 28 UInt32
49 UInt32 Size;
50 UInt32 GlueCount;
52 UInt32 AlignOffset;
63 Bool Ppmd7_Alloc(CPpmd7 *p, UInt32 size, ISzAlloc *alloc);
95 CPpmd_See *Ppmd7_MakeEscFreq(CPpmd7 *p, unsigned numMasked, UInt32 *scale);
102 UInt32 (*GetThreshold)(void *p, UInt32 total);
103 void (*Decode)(void *p, UInt32 start, UInt32 size); [all...] |
LzFindMt.c | 53 UInt32 myNumBlocks = p->numProcessedBlocks;
102 static SRes MtSync_Create2(CMtSync *p, THREAD_FUNC_TYPE startAddress, void *obj, UInt32 numBlocks)
124 static SRes MtSync_Create(CMtSync *p, THREAD_FUNC_TYPE startAddress, void *obj, UInt32 numBlocks)
137 static void GetHeads ## name(const Byte *p, UInt32 pos, \
138 UInt32 *hash, UInt32 hashMask, UInt32 *heads, UInt32 numHeads, const UInt32 *crc) \
140 const UInt32 value = (v); p++; *heads++ = pos - hash[value]; hash[value] = pos++; } } [all...] |
LzmaDec.h | 16 #define CLzmaProb UInt32
29 UInt32 dicSize;
54 UInt32 range, code;
57 UInt32 processedPos;
58 UInt32 checkDicSize;
60 UInt32 reps[4];
64 UInt32 numProbs;
|
/external/lzma/CPP/Common/ |
Sha256Reg.cpp | 23 STDMETHOD_(void, Update)(const void *data, UInt32 size);
25 STDMETHOD_(UInt32, GetDigestSize)();
33 STDMETHODIMP_(void) CSha256Hasher::Update(const void *data, UInt32 size)
43 STDMETHODIMP_(UInt32) CSha256Hasher::GetDigestSize()
|
XzCrc64Reg.cpp | 24 STDMETHOD_(void, Update)(const void *data, UInt32 size);
26 STDMETHOD_(UInt32, GetDigestSize)();
34 STDMETHODIMP_(void) CXzCrc64Hasher::Update(const void *data, UInt32 size)
45 STDMETHODIMP_(UInt32) CXzCrc64Hasher::GetDigestSize()
|
IntToString.cpp | 14 void ConvertUInt32ToString(UInt32 val, char *s) throw()
21 if (val <= (UInt32)0xFFFFFFFF)
23 ConvertUInt32ToString((UInt32)val, s);
49 void ConvertUInt32ToHex(UInt32 val, char *s) throw()
51 UInt32 v = val;
89 void ConvertUInt32ToHex8Digits(UInt32 val, char *s) throw()
101 void ConvertUInt32ToHex8Digits(UInt32 val, wchar_t *s)
113 void ConvertUInt32ToString(UInt32 val, wchar_t *s) throw()
120 if (val <= (UInt32)0xFFFFFFFF)
122 ConvertUInt32ToString((UInt32)val, s); [all...] |
/hardware/ti/omap4xxx/domx/domx/omx_rpc/src/ |
omx_rpc_config.c | 76 extern Int32 RPC_MemFree(UInt32 * dataSize, UInt32 * data); 77 extern Int32 RPC_MemAlloc(UInt32 * dataSize, UInt32 * data);
|
/external/lzma/CPP/7zip/Archive/Common/ |
HandlerOut.cpp | 17 static void SetMethodProp32(COneMethodInfo &m, PROPID propID, UInt32 value)
25 , UInt32 numThreads
29 UInt32 level = _level;
30 if (level != (UInt32)(Int32)-1)
31 SetMethodProp32(oneMethodInfo, NCoderPropID::kLevel, (UInt32)level);
43 _level = (UInt32)(Int32)-1;
71 UInt32 number;
108 _level = (UInt32)(Int32)-1;
111 HRESULT CSingleMethodProps::SetProperties(const wchar_t **names, const PROPVARIANT *values, UInt32 numProps)
114 for (UInt32 i = 0; i < numProps; i++) [all...] |
CoderMixer2MT.h | 23 CCoder2(UInt32 numInStreams, UInt32 numOutStreams);
35 SetProgressIndex(UInt32 coderIndex);
64 UInt32 numInStreams,
67 UInt32 numOutStreams,
76 void SetCoderInfo(UInt32 coderIndex, const UInt64 **inSizes, const UInt64 **outSizes)
78 UInt64 GetWriteProcessedSize(UInt32 binderIndex) const
|
/external/lzma/CPP/7zip/Common/ |
LimitedStreams.h | 31 STDMETHOD(Read)(void *data, UInt32 size, UInt32 *processedSize);
60 STDMETHOD(Read)(void *data, UInt32 size, UInt32 *processedSize);
61 STDMETHOD(Seek)(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition);
74 UInt32 _curRem;
80 CRecordVector<UInt32> Vector;
99 STDMETHOD(Read)(void *data, UInt32 size, UInt32 *processedSize);
100 STDMETHOD(Seek)(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition); [all...] |
FilterCoder.cpp | 12 static const UInt32 kBufferSize = 1 << 17;
26 HRESULT CFilterCoder::WriteWithLimit(ISequentialOutStream *outStream, UInt32 size)
32 size = (UInt32)remSize;
43 UInt32 bufferPos = 0;
55 UInt32 endPos = bufferPos + (UInt32)processedSize;
76 UInt32 i = 0;
98 STDMETHODIMP CFilterCoder::Write(const void *data, UInt32 size, UInt32 *processedSize)
104 UInt32 sizeTemp = MyMin(size, kBufferSize - _bufferPos); [all...] |
FilterCoder.h | 39 UInt32 _bufferPos;
40 UInt32 _convertedPosBegin;
41 UInt32 _convertedPosEnd;
72 HRESULT WriteWithLimit(ISequentialOutStream *outStream, UInt32 size);
101 STDMETHOD(Read)(void *data, UInt32 size, UInt32 *processedSize); \
104 STDMETHOD(Write)(const void *data, UInt32 size, UInt32 *processedSize);
108 STDMETHOD(CryptoSetPassword)(const Byte *data, UInt32 size);
110 STDMETHOD(SetKey)(const Byte *data, UInt32 size); [all...] |
InOutTempBuffer.cpp | 16 static const UInt32 kTempBufSize = (1 << 20);
41 bool CInOutTempBuffer::WriteToFile(const void *data, UInt32 size)
51 UInt32 processed;
59 bool CInOutTempBuffer::Write(const void *data, UInt32 size)
63 UInt32 cur = MyMin(kTempBufSize - _bufPos, size);
80 UInt32 crc = CRC_INIT_VAL;
95 UInt32 processed;
108 STDMETHODIMP CSequentialOutTempBufferImp::Write(const void *data, UInt32 size, UInt32 *processed)
|
OutBuffer.h | 21 UInt32 _pos;
22 UInt32 _limitPos;
23 UInt32 _streamPos;
24 UInt32 _bufSize;
39 bool Create(UInt32 bufSize) throw();
|
/external/lzma/CPP/7zip/Crypto/ |
7zAes.h | 22 UInt32 SaltSize;
57 UInt32 _ivSize;
77 STDMETHOD_(UInt32, Filter)(Byte *data, UInt32 size);
79 STDMETHOD(CryptoSetPassword)(const Byte *data, UInt32 size);
112 STDMETHOD(SetDecoderProperties2)(const Byte *data, UInt32 size);
|
/external/lzma/CPP/7zip/Compress/ |
PpmdEncoder.cpp | 15 static const UInt32 kBufSize = (1 << 20);
27 if (MemSize == (UInt32)(Int32)-1)
28 MemSize = level >= 9 ? ((UInt32)192 << 20) : ((UInt32)1 << (level + 19));
34 UInt32 m = (UInt32)1 << i;
60 STDMETHODIMP CEncoder::SetCoderProperties(const PROPID *propIDs, const PROPVARIANT *coderProps, UInt32 numProps)
64 for (UInt32 i = 0; i < numProps; i++)
72 if (prop.vt == VT_UI8 && prop.uhVal.QuadPart < (UInt32)(Int32)-1)
73 props.ReduceSize = (UInt32)prop.uhVal.QuadPart; [all...] |
Lzma2Decoder.h | 28 UInt32 _inPos;
29 UInt32 _inSize;
54 STDMETHOD(SetDecoderProperties2)(const Byte *data, UInt32 size);
63 STDMETHOD(Read)(void *data, UInt32 size, UInt32 *processedSize);
|
/external/lzma/CPP/7zip/UI/Common/ |
PropIDUtils.cpp | 44 void ConvertWinAttribToString(char *s, UInt32 wa)
89 UInt32 a = prop.ulVal;
103 a &= ~(UInt32)0xFFFF;
115 ConvertUInt32ToString((UInt32)(prop.uhVal.QuadPart >> 48), dest);
206 UInt32 n;
257 UInt32 n[5];
266 static void ParseSid(AString &s, const Byte *p, UInt32 lim, UInt32 &sidSize)
274 UInt32 rev = p[0];
280 UInt32 num = p[1]; [all...] |
LoadCodecs.h | 24 UInt32 CodecIndex;
30 UInt32 HasherIndex;
48 UInt32 Flags;
60 // UInt32 Version;
61 UInt32 SignatureOffset;
70 UInt32 FormatIndex;
222 STDMETHOD(GetNumberOfMethods)(UInt32 *numMethods);
223 STDMETHOD(GetProperty)(UInt32 index, PROPID propID, PROPVARIANT *value);
224 STDMETHOD(CreateDecoder)(UInt32 index, const GUID *interfaceID, void **coder);
225 STDMETHOD(CreateEncoder)(UInt32 index, const GUID *interfaceID, void **coder); [all...] |
OpenArchive.h | 12 HRESULT Archive_GetItemBoolProp(IInArchive *arc, UInt32 index, PROPID propID, bool &result) throw();
13 HRESULT Archive_IsItem_Folder(IInArchive *arc, UInt32 index, bool &result) throw();
14 HRESULT Archive_IsItem_Aux(IInArchive *arc, UInt32 index, bool &result) throw();
15 HRESULT Archive_IsItem_AltStream(IInArchive *arc, UInt32 index, bool &result) throw();
16 HRESULT Archive_IsItem_Deleted(IInArchive *arc, UInt32 index, bool &deleted) throw();
134 UInt32 GetOpenArcErrorFlags(const NWindows::NCOM::CPropVariant &prop, bool *isDefinedProp = NULL);
143 UInt32 ErrorFlags;
144 UInt32 WarningFlags;
198 UInt32 GetWarningFlags() const
200 UInt32 a = WarningFlags; [all...] |
/external/bzip2/ |
bzlib_private.h | 45 typedef unsigned int UInt32; 155 extern UInt32 BZ2_crc32Table[256]; 207 UInt32 avail_in_expect; 210 UInt32* arr1; 211 UInt32* arr2; 212 UInt32* ftab; 216 UInt32* ptr; 225 UInt32 state_in_ch; 241 UInt32 bsBuff; 245 UInt32 blockCRC [all...] |
/external/liblzf/cs/ |
CLZF.cs | 50 UInt32 []crc_32_tab = new UInt32[256] 106 public UInt32 crc32(UInt32 OldCRC,byte NewData) 116 UInt32 HLOG=14; 117 UInt32 HSIZE=(1<<14); 125 UInt32 MAX_LIT=(1 << 5); 126 UInt32 MAX_OFF=(1 << 13); 127 UInt32 MAX_REF=((1 << 8) + (1 << 3)); 129 UInt32 FRST(byte[] Array,UInt32 ptr) [all...] |
/external/autotest/client/cros/cellular/pseudomodem/ |
modem_cdma.py | 84 'Sid' : dbus.types.UInt32(0), 85 'Nid' : dbus.types.UInt32(0), 87 dbus.types.UInt32( 90 dbus.types.UInt32( 92 'ActivationState' : dbus.types.UInt32(activation_state) 96 dbus.types.UInt32(mm1_constants.MM_MODEM_CAPABILITY_CDMA_EVDO) 99 dbus.types.UInt32(mm1_constants.MM_MODEM_CAPABILITY_CDMA_EVDO)) 100 props['MaxBearers'] = dbus.types.UInt32(1) 101 props['MaxActiveBearers'] = dbus.types.UInt32(1) 104 dbus.types.UInt32(mm1_constants.MM_MODEM_ACCESS_TECHNOLOGY_EVDO0) [all...] |