HomeSort by relevance Sort by last modified time
    Searched refs:UInt32 (Results 126 - 150 of 448) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/lzma/CPP/7zip/Archive/Common/
MultiStream.h 51 STDMETHOD(Read)(void *data, UInt32 size, UInt32 *processedSize);
52 STDMETHOD(Seek)(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition);
84 STDMETHOD(Write)(const void *data, UInt32 size, UInt32 *processedSize);
85 STDMETHOD(Seek)(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition);
MultiStream.cpp 7 STDMETHODIMP CMultiStream::Read(void *data, UInt32 size, UInt32 *processedSize)
43 size = (UInt32)rem;
52 STDMETHODIMP CMultiStream::Seek(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition)
101 STDMETHOD(Write)(const void *data, UInt32 size, UInt32 *processedSize);
120 STDMETHODIMP COutMultiStream::Write(const void *data, UInt32 size, UInt32 *processedSize)
150 UInt32 curSize = (UInt32)MyMin((UInt64)size, subStream.Size - subStream.Pos);
    [all...]
CoderMixer2.cpp 14 UInt32 j;
33 UInt32 destInOffset = 0;
34 UInt32 destOutOffset = 0;
35 UInt32 srcInOffset = NumSrcInStreams;
36 UInt32 srcOutOffset = _numSrcOutStreams;
45 UInt32 j;
48 UInt32 index = srcInOffset + j;
54 UInt32 index = srcOutOffset + j;
94 CRecordVector<const UInt64 *> &sizePointers, UInt32 numItems)
98 for(UInt32 i = 0; i < numItems; i++)
    [all...]
  /external/lzma/CPP/7zip/Bundles/SFXSetup/
ExtractCallbackSfx.h 45 UInt32 Attributes;
53 UInt32 _defaultAttributes;
68 UInt32 defaultAttributes);
  /external/lzma/CPP/7zip/Common/
OffsetStream.cpp 16 STDMETHODIMP COffsetOutStream::Write(const void *data, UInt32 size, UInt32 *processedSize)
21 STDMETHODIMP COffsetOutStream::Seek(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition)
StreamObjects.h 39 STDMETHOD(Read)(void *data, UInt32 size, UInt32 *processedSize);
40 STDMETHOD(Seek)(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition);
77 STDMETHOD(Write)(const void *data, UInt32 size, UInt32 *processedSize);
97 STDMETHOD(Write)(const void *data, UInt32 size, UInt32 *processedSize);
112 STDMETHOD(Write)(const void *data, UInt32 size, UInt32 *processedSize);
136 STDMETHOD(Read)(void *data, UInt32 size, UInt32 *processedSize);
    [all...]
FileStreams.cpp 34 static const UInt32 kClusterSize = 1 << 18;
53 STDMETHODIMP CInFileStream::Read(void *data, UInt32 size, UInt32 *processedSize)
70 size = (UInt32)rem;
74 const UInt32 mask = kClusterSize - 1;
79 UInt32 pos = (UInt32)VirtPos & mask;
82 UInt32 rem = MyMin(BufSize - pos, size);
102 size = (UInt32)(end - VirtPos);
117 UInt32 readSize = kClusterSize;
    [all...]
StreamObjects.cpp 11 STDMETHODIMP CBufInStream::Read(void *data, UInt32 size, UInt32 *processedSize)
25 *processedSize = (UInt32)rem;
29 STDMETHODIMP CBufInStream::Seek(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition)
110 STDMETHODIMP CDynBufSeqOutStream::Write(const void *data, UInt32 size, UInt32 *processedSize)
126 STDMETHODIMP CBufPtrSeqOutStream::Write(const void *data, UInt32 size, UInt32 *processedSize)
134 *processedSize = (UInt32)rem;
138 STDMETHODIMP CSequentialOutStreamSizeCount::Write(const void *data, UInt32 size, UInt32 *processedSize)
    [all...]
  /external/lzma/C/
XzCrc64Opt.c 19 UInt32 d = (UInt32)v ^ *(const UInt32 *)p;
55 UInt32 d = (UInt32)(v >> 32) ^ *(const UInt32 *)p;
Aes.c 9 static UInt32 T[256 * 4];
28 void MY_FAST_CALL AesCbc_Encode(UInt32 *ivAes, Byte *data, size_t numBlocks);
29 void MY_FAST_CALL AesCbc_Decode(UInt32 *ivAes, Byte *data, size_t numBlocks);
30 void MY_FAST_CALL AesCtr_Code(UInt32 *ivAes, Byte *data, size_t numBlocks);
32 void MY_FAST_CALL AesCbc_Encode_Intel(UInt32 *ivAes, Byte *data, size_t numBlocks);
33 void MY_FAST_CALL AesCbc_Decode_Intel(UInt32 *ivAes, Byte *data, size_t numBlocks);
34 void MY_FAST_CALL AesCtr_Code_Intel(UInt32 *ivAes, Byte *data, size_t numBlocks);
40 static UInt32 D[256 * 4];
47 #define Ui32(a0, a1, a2, a3) ((UInt32)(a0) | ((UInt32)(a1) << 8) | ((UInt32)(a2) << 16) | ((UInt32)(a3) << 24))
    [all...]
Bcj2.c 9 #define CProb UInt32
18 #define kTopValue ((UInt32)1 << kNumTopBits)
46 UInt32 range, code;
64 UInt32 bound;
65 UInt32 ttt;
100 UInt32 dest;
119 dest = (((UInt32)v[0] << 24) | ((UInt32)v[1] << 16) |
120 ((UInt32)v[2] << 8) | ((UInt32)v[3])) - ((UInt32)outPos + 4);
    [all...]
CpuArch.c 19 static UInt32 CheckFlag(UInt32 flag)
57 static void MyCPUID(UInt32 function, UInt32 *a, UInt32 *b, UInt32 *c, UInt32 *d)
63 UInt32 a2, b2, c2, d2;
119 static UInt32 kVendors[][3] =
131 const UInt32 *v = kVendors[i];
    [all...]
AesOpt.c 23 UInt32 numRounds2 = *(const UInt32 *)(p + 1) - 1;
60 UInt32 numRounds2 = *(const UInt32 *)(p + 1);
89 UInt32 numRounds2 = *(const UInt32 *)(p + 1);
118 UInt32 numRounds2 = *(const UInt32 *)(p + 1) - 1;
143 UInt32 numRounds2 = *(const UInt32 *)(p + 1) - 1;
    [all...]
Sha256.h 15 UInt32 state[8];
7zArcIn.c 57 static int SzFolder_FindBindPairForInStream(const CSzFolder *p, UInt32 inStreamIndex)
59 UInt32 i;
72 MY_ALLOC(UInt32, p->Vals, num, alloc);
205 UInt32 v;
216 *value = (((UInt32)firstByte & 0x3F) << 8) | v;
220 *value = v | ((UInt32)mask << 8);
239 static MY_NO_INLINE const Byte *SzReadNumbers(const Byte *data, const Byte *dataLim, UInt64 *values, UInt32 num)
247 UInt32 v;
264 *values++ = (((UInt32)firstByte & 0x3F) << 8) | v;
269 value = v | ((UInt32)*data++ << 8);
    [all...]
  /external/autotest/client/cros/cellular/pseudomodem/
modem_3gpp.py 54 'status': dbus.types.UInt32(self.status),
58 'access-technology': dbus.types.UInt32(self.access_technology),
91 dbus.types.UInt32(mm1_constants.MM_MODEM_CAPABILITY_GSM_UMTS),
92 dbus.types.UInt32(mm1_constants.MM_MODEM_CAPABILITY_LTE),
93 dbus.types.UInt32(
97 props['CurrentCapabilities'] = dbus.types.UInt32(
100 props['MaxBearers'] = dbus.types.UInt32(3)
101 props['MaxActiveBearers'] = dbus.types.UInt32(2)
103 props['AccessTechnologies'] = dbus.types.UInt32((
108 [dbus.types.UInt32(mm1_constants.MM_MODEM_MODE_3G
    [all...]
  /external/lzma/CPP/7zip/Archive/7z/
7zSpecStream.h 30 STDMETHOD(Read)(void *data, UInt32 size, UInt32 *processedSize);
7zHandler.cpp 46 STDMETHODIMP CHandler::GetNumberOfItems(UInt32 *numItems)
56 STDMETHODIMP CHandler::GetNumberOfProperties(UInt32 *numProps)
62 STDMETHODIMP CHandler::GetPropertyInfo(UInt32 /* index */,
107 static unsigned GetStringForSizeValue(char *s, UInt32 val)
111 if (((UInt32)1 << i) == val)
143 static char *AddProp32(char *s, const char *name, UInt32 v)
214 case kpidNumBlocks: prop = (UInt32)_db.NumFolders; break;
228 UInt32 v = 0;
238 UInt32 v = 0;
290 STDMETHODIMP CHandler::GetNumRawProps(UInt32 *numProps)
    [all...]
  /external/lzma/CPP/Windows/
Registry.h 47 LONG SetValue(LPCTSTR valueName, UInt32 value) throw();
56 LONG SetValue(LPCTSTR name, const void *value, UInt32 size) throw();
63 LONG QueryValue(LPCTSTR name, UInt32 &value) throw();
65 LONG QueryValue(LPCTSTR name, LPTSTR value, UInt32 &dataSize) throw();
68 LONG GetValue_IfOk(LPCTSTR name, UInt32 &value) throw();
72 LONG QueryValue(LPCWSTR name, LPWSTR value, UInt32 &dataSize);
76 LONG QueryValue(LPCTSTR name, void *value, UInt32 &dataSize) throw();
77 LONG QueryValue(LPCTSTR name, CByteBuffer &value, UInt32 &dataSize);
  /external/lzma/CPP/7zip/UI/Common/
Bench.cpp 62 static void SetComplexCommands(UInt32 complexInSeconds, UInt64 cpuFreq, UInt64 &complexInCommands)
78 static const UInt32 kFilterUnpackSize = (48 << 10);
82 static const UInt32 kAdditionalSize = (1 << 16);
83 static const UInt32 kCompressedAdditionalSize = (1 << 10);
84 static const UInt32 kMaxLzmaPropSize = 5;
88 UInt32 A1;
89 UInt32 A2;
93 UInt32 GetRnd()
130 UInt32 GetVal(UInt32 &res, unsigned numBits)
    [all...]
Bench.h 32 UInt64 GetCompressRating(UInt32 dictSize, UInt64 elapsedTime, UInt64 freq, UInt64 size);
37 UInt64 GetBenchMemoryUsage(UInt32 numThreads, UInt32 dictionary);
51 UInt32 numIterations,
  /external/lzma/CS/7zip/Compress/LzmaAlone/
LzmaBench.cs 13 const UInt32 kAdditionalSize = (6 << 20);
14 const UInt32 kCompressedAdditionalSize = (1 << 10);
15 const UInt32 kMaxLzmaPropSize = 10;
19 UInt32 A1;
20 UInt32 A2;
23 public UInt32 GetRnd()
34 UInt32 Value;
41 public UInt32 GetRnd(int numBits)
43 UInt32 result;
46 result = Value & (((UInt32)1 << numBits) - 1);
    [all...]
  /external/lzma/CPP/7zip/Compress/
PpmdDecoder.h 39 HRESULT CodeSpec(Byte *memStream, UInt32 size);
57 STDMETHOD(SetDecoderProperties2)(const Byte *data, UInt32 size);
63 STDMETHOD(Read)(void *data, UInt32 size, UInt32 *processedSize);
LzmaDecoder.cpp 48 STDMETHODIMP CDecoder::SetInBufSize(UInt32 , UInt32 size) { _inBufSize = size; return S_OK; }
49 STDMETHODIMP CDecoder::SetOutBufSize(UInt32 , UInt32 size) { _outBufSize = size; return S_OK; }
64 STDMETHODIMP CDecoder::SetDecoderProperties2(const Byte *prop, UInt32 size)
125 _inPos += (UInt32)inSizeProcessed;
187 STDMETHODIMP CDecoder::Read(void *data, UInt32 size, UInt32 *processedSize)
205 size = (UInt32)rem;
212 _inPos += (UInt32)inProcessed;
    [all...]
  /external/lzma/CPP/7zip/Bundles/LzmaCon/
LzmaAlone.cpp 136 static bool GetNumber(const wchar_t *s, UInt32 &value)
146 static void ParseUInt32(const CParser &parser, unsigned index, UInt32 &res)
167 bool unsupportedTypes = (sizeof(Byte) != 1 || sizeof(UInt32) < 4 || sizeof(UInt64) < 4);
201 UInt32 dict = (UInt32)(Int32)-1;
204 UInt32 dicLog;
217 UInt32 level = 5;
230 UInt32 numThreads = (UInt32)(Int32)-1;
235 UInt32 numCPUs = NWindows::NSystem::GetNumberOfProcessors();
    [all...]

Completed in 567 milliseconds

1 2 3 4 56 7 8 91011>>