HomeSort by relevance Sort by last modified time
    Searched refs:UInt32 (Results 76 - 100 of 473) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/lzma/CPP/7zip/Archive/Common/
OutStreamWithCRC.cpp 7 STDMETHODIMP COutStreamWithCRC::Write(const void *data, UInt32 size, UInt32 *processedSize)
InStreamWithCRC.cpp 7 STDMETHODIMP CSequentialInStreamWithCRC::Read(void *data, UInt32 size, UInt32 *processedSize)
9 UInt32 realProcessedSize;
20 STDMETHODIMP CInStreamWithCRC::Read(void *data, UInt32 size, UInt32 *processedSize)
22 UInt32 realProcessedSize;
35 STDMETHODIMP CInStreamWithCRC::Seek(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition)
  /external/lzma/CPP/7zip/Common/
StreamUtils.cpp 7 static const UInt32 kBlockSize = ((UInt32)1 << 31);
15 UInt32 curSize = (size < kBlockSize) ? (UInt32)size : kBlockSize;
16 UInt32 processedSizeLoc;
46 UInt32 curSize = (size < kBlockSize) ? (UInt32)size : kBlockSize;
47 UInt32 processedSizeLoc;
StreamBinder.cpp 19 STDMETHOD(Read)(void *data, UInt32 size, UInt32 *processedSize);
27 STDMETHODIMP CSequentialInStreamForBinder::Read(void *data, UInt32 size, UInt32 *processedSize)
37 STDMETHOD(Write)(const void *data, UInt32 size, UInt32 *processedSize);
46 STDMETHODIMP CSequentialOutStreamForBinder::Write(const void *data, UInt32 size, UInt32 *processedSize)
90 HRESULT CStreamBinder::Read(void *data, UInt32 size, UInt32 *processedSize)
    [all...]
InBuffer.h 24 UInt32 _bufferSize;
38 bool Create(UInt32 bufferSize);
59 UInt32 ReadBytes(Byte *buf, UInt32 size)
61 if ((UInt32)(_bufferLimit - _buffer) >= size)
63 for (UInt32 i = 0; i < size; i++)
68 for (UInt32 i = 0; i < size; i++)
LimitedStreams.h 30 STDMETHOD(Read)(void *data, UInt32 size, UInt32 *processedSize);
59 STDMETHOD(Read)(void *data, UInt32 size, UInt32 *processedSize);
60 STDMETHOD(Seek)(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition);
71 UInt32 _curRem;
77 CRecordVector<UInt32> Vector;
96 STDMETHOD(Read)(void *data, UInt32 size, UInt32 *processedSize);
97 STDMETHOD(Seek)(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition);
    [all...]
FileStreams.h 33 UInt32 BufferSize;
60 STDMETHOD(Read)(void *data, UInt32 size, UInt32 *processedSize);
61 STDMETHOD(Seek)(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition);
74 STDMETHOD(Read)(void *data, UInt32 size, UInt32 *processedSize);
128 STDMETHOD(Write)(const void *data, UInt32 size, UInt32 *processedSize);
129 STDMETHOD(Seek)(Int64 offset, UInt32 seekOrigin, UInt64 *newPosition);
141 STDMETHOD(Write)(const void *data, UInt32 size, UInt32 *processedSize);
    [all...]
FilterCoder.h 38 UInt32 _bufferPos;
39 UInt32 _convertedPosBegin;
40 UInt32 _convertedPosEnd;
65 HRESULT WriteWithLimit(ISequentialOutStream *outStream, UInt32 size);
93 STDMETHOD(Read)(void *data, UInt32 size, UInt32 *processedSize); \
96 STDMETHOD(Write)(const void *data, UInt32 size, UInt32 *processedSize);
100 STDMETHOD(CryptoSetPassword)(const Byte *data, UInt32 size);
104 const PROPVARIANT *properties, UInt32 numProperties);
    [all...]
  /external/lzma/CPP/7zip/UI/Common/
ZipRegistry.h 29 UInt32 Level;
30 UInt32 Dictionary;
31 UInt32 Order;
32 UInt32 BlockLogSize;
33 UInt32 NumThreads;
42 BlockLogSize = NumThreads = Level = Dictionary = Order = UInt32(-1);
52 UInt32 Level;
99 UInt32 Flags;
Bench.cpp 41 static const UInt32 kUncompressMinBlockSize =
48 static const UInt32 kCrcBlockSize =
55 static const UInt32 kAdditionalSize = (1 << 16);
56 static const UInt32 kCompressedAdditionalSize = (1 << 10);
57 static const UInt32 kMaxLzmaPropSize = 5;
61 UInt32 A1;
62 UInt32 A2;
66 UInt32 GetRnd()
102 UInt32 GetVal(UInt32 &res, int numBits)
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/audio/macosx/
SDL_coreaudio.h 36 UInt32 bufferOffset;
37 UInt32 bufferSize;
  /external/lzma/CPP/7zip/Compress/
Bcj2Coder.h 53 HRESULT CodeReal(ISequentialInStream **inStreams, const UInt64 **inSizes, UInt32 numInStreams,
54 ISequentialOutStream **outStreams, const UInt64 **outSizes, UInt32 numOutStreams,
56 STDMETHOD(Code)(ISequentialInStream **inStreams, const UInt64 **inSizes, UInt32 numInStreams,
57 ISequentialOutStream **outStreams, const UInt64 **outSizes, UInt32 numOutStreams,
77 UInt32 _inBufSizes[4];
78 UInt32 _outBufSize;
101 HRESULT CodeReal(ISequentialInStream **inStreams, const UInt64 **inSizes, UInt32 numInStreams,
102 ISequentialOutStream **outStreams, const UInt64 **outSizes, UInt32 numOutStreams,
104 STDMETHOD(Code)(ISequentialInStream **inStreams, const UInt64 **inSizes, UInt32 numInStreams,
105 ISequentialOutStream **outStreams, const UInt64 **outSizes, UInt32 numOutStreams,
    [all...]
DeltaFilter.cpp 29 STDMETHOD_(UInt32, Filter)(Byte *data, UInt32 size);
30 STDMETHOD(SetCoderProperties)(const PROPID *propIDs, const PROPVARIANT *props, UInt32 numProps);
43 STDMETHOD_(UInt32, Filter)(Byte *data, UInt32 size);
44 STDMETHOD(SetDecoderProperties2)(const Byte *data, UInt32 size);
53 STDMETHODIMP_(UInt32) CDeltaEncoder::Filter(Byte *data, UInt32 size)
59 STDMETHODIMP CDeltaEncoder::SetCoderProperties(const PROPID *propIDs, const PROPVARIANT *props, UInt32 numProps)
61 UInt32 delta = _delta;
    [all...]
Bcj2Coder.cpp 58 const UInt32 kDefaultLimit = (1 << 24);
60 HRESULT CEncoder::CodeReal(ISequentialInStream **inStreams, const UInt64 **inSizes, UInt32 numInStreams,
61 ISequentialOutStream **outStreams, const UInt64 ** /* outSizes */, UInt32 numOutStreams,
100 UInt32 nowPos = 0;
102 UInt32 bufferPos = 0;
112 UInt32 processedSize = 0;
115 UInt32 size = kBufferSize - (bufferPos + processedSize);
116 UInt32 processedSizeLoc;
124 UInt32 endPos = bufferPos + processedSize;
133 UInt32 index;
    [all...]
  /external/chromium/chrome/browser/
keychain_mock_mac.h 31 UInt32 *length, void **outData) const;
35 UInt32 length, const void *data) const;
49 UInt32 serverNameLength,
51 UInt32 securityDomainLength,
53 UInt32 accountNameLength,
55 UInt32 pathLength, const char *path,
58 UInt32 passwordLength,
62 UInt32 serviceNameLength,
64 UInt32 accountNameLength,
66 UInt32 *passwordLength
    [all...]
keychain_mac.cc 10 UInt32 *length, void **outData) const {
17 UInt32 length, const void *data) const {
46 UInt32 serverNameLength, const char *serverName,
47 UInt32 securityDomainLength, const char *securityDomain,
48 UInt32 accountNameLength, const char *accountName,
49 UInt32 pathLength, const char *path,
52 UInt32 passwordLength, const void *passwordData,
65 UInt32 serviceNameLength,
67 UInt32 accountNameLength,
69 UInt32 *passwordLength
    [all...]
  /external/chromium_org/third_party/lzma_sdk/
CpuArch.h 67 #define GetUi32(p) (*(const UInt32 *)(p))
70 #define SetUi32(p, d) *(UInt32 *)(p) = (d);
79 ((UInt32)((const Byte *)(p))[1] << 8) | \
80 ((UInt32)((const Byte *)(p))[2] << 16) | \
81 ((UInt32)((const Byte *)(p))[3] << 24))
85 #define SetUi16(p, d) { UInt32 _x_ = (d); \
89 #define SetUi32(p, d) { UInt32 _x_ = (d); \
96 SetUi32(p, (UInt32)_x64_); \
97 SetUi32(((Byte *)(p)) + 4, (UInt32)(_x64_ >> 32)); }
105 #define GetBe32(p) _byteswap_ulong(*(const UInt32 *)(const Byte *)(p)
    [all...]
  /external/lzma/C/
CpuArch.h 66 #define GetUi32(p) (*(const UInt32 *)(p))
69 #define SetUi32(p, d) *(UInt32 *)(p) = (d);
78 ((UInt32)((const Byte *)(p))[1] << 8) | \
79 ((UInt32)((const Byte *)(p))[2] << 16) | \
80 ((UInt32)((const Byte *)(p))[3] << 24))
84 #define SetUi16(p, d) { UInt32 _x_ = (d); \
88 #define SetUi32(p, d) { UInt32 _x_ = (d); \
95 SetUi32(p, (UInt32)_x64_); \
96 SetUi32(((Byte *)(p)) + 4, (UInt32)(_x64_ >> 32)); }
104 #define GetBe32(p) _byteswap_ulong(*(const UInt32 *)(const Byte *)(p))
    [all...]
  /external/lzma/CPP/7zip/
ICoder.h 24 STDMETHOD(Code)(ISequentialInStream **inStreams, const UInt64 **inSizes, UInt32 numInStreams,
25 ISequentialOutStream **outStreams, const UInt64 **outSizes, UInt32 numOutStreams,
53 STDMETHOD(SetCoderProperties)(const PROPID *propIDs, const PROPVARIANT *props, UInt32 numProps) PURE;
65 STDMETHOD(SetDecoderProperties2)(const Byte *data, UInt32 size) PURE;
80 STDMETHOD(SetNumberOfThreads)(UInt32 numThreads) PURE;
112 STDMETHOD(SetInBufSize)(UInt32 streamIndex, UInt32 size) PURE;
113 STDMETHOD(SetOutBufSize)(UInt32 streamIndex, UInt32 size) PURE;
119 STDMETHOD_(UInt32, Filter)(Byte *data, UInt32 size) PURE;
    [all...]
  /external/chromium_org/media/audio/mac/
audio_synchronized_mac.h 102 UInt32 bus_number,
103 UInt32 number_of_frames,
108 UInt32 bus_number,
109 UInt32 number_of_frames,
114 UInt32 bus_number,
115 UInt32 number_of_frames,
122 UInt32 bus_number,
123 UInt32 number_of_frames,
129 UInt32 bus_number,
130 UInt32 number_of_frames
    [all...]
audio_auhal_mac.h 77 UInt32 bus_number,
78 UInt32 number_of_frames,
83 UInt32 bus_number,
84 UInt32 number_of_frames,
91 bool EnableIO(bool enable, UInt32 scope);
98 UInt32 scope,
99 UInt32 element);
167 uint32 current_hardware_pending_bytes_;
  /external/lzma/CS/7zip/Compress/LZMA/
LzmaEncoder.cs 17 const UInt32 kIfinityPrice = 0xFFFFFFF;
29 UInt32 k = ((UInt32)1 << ((slotFast >> 1) - 1));
30 for (UInt32 j = 0; j < k; j++, c++)
35 static UInt32 GetPosSlot(UInt32 pos)
40 return (UInt32)(g_FastPos[pos >> 10] + 20);
41 return (UInt32)(g_FastPos[pos >> 20] + 40);
44 static UInt32 GetPosSlot2(UInt32 pos)
    [all...]
  /external/lzma/CPP/Windows/
Time.cpp 12 static const UInt32 kNumTimeQuantumsInSecond = 10000000;
13 static const UInt32 kFileTimeStartYear = 1601;
14 static const UInt32 kDosTimeStartYear = 1980;
15 static const UInt32 kUnixTimeStartYear = 1970;
19 bool DosTimeToFileTime(UInt32 dosTime, FILETIME &ft)
31 ft.dwLowDateTime = (UInt32)res;
32 ft.dwHighDateTime = (UInt32)(res >> 32);
37 static const UInt32 kHighDosTime = 0xFF9FBF7D;
38 static const UInt32 kLowDosTime = 0x210000;
44 bool FileTimeToDosTime(const FILETIME &ft, UInt32 &dosTime)
    [all...]
  /external/lzma/CPP/7zip/Archive/
IArchive.h 85 STDMETHOD(GetStream)(UInt32 index, ISequentialOutStream **outStream, Int32 askExtractMode) x; \
107 STDMETHOD(GetStream)(UInt32 index, ISequentialInStream **stream) PURE;
127 STDMETHOD(GetNumberOfItems)(UInt32 *numItems) x; \
128 STDMETHOD(GetProperty)(UInt32 index, PROPID propID, PROPVARIANT *value) x; \
129 STDMETHOD(Extract)(const UInt32* indices, UInt32 numItems, Int32 testMode, IArchiveExtractCallback *extractCallback) x; \
131 STDMETHOD(GetNumberOfProperties)(UInt32 *numProperties) x; \
132 STDMETHOD(GetPropertyInfo)(UInt32 index, BSTR *name, PROPID *propID, VARTYPE *varType) x; \
133 STDMETHOD(GetNumberOfArchiveProperties)(UInt32 *numProperties) x; \
134 STDMETHOD(GetArchivePropertyInfo)(UInt32 index, BSTR *name, PROPID *propID, VARTYPE *varType) x;
    [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);

Completed in 229 milliseconds

1 2 34 5 6 7 8 91011>>