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

1 2 3 4 5 6 78 91011>>

  /external/clang/test/SemaCXX/
neon-vector-types.cpp 10 typedef unsigned long UInt32;
22 const UInt32 len)
  /external/marisa-trie/lib/marisa/
intvector.cc 8 void IntVector::build(const Vector<UInt32> &ints) {
9 UInt32 max_int = 0;
10 for (UInt32 i = 0; i < ints.size(); ++i) {
16 for (UInt32 i = 0; i < ints.size(); ++i) {
21 void IntVector::build(UInt32 max_int, std::size_t size) {
22 UInt32 num_bits_per_int = 0;
31 Vector<UInt32> temp_units;
40 size_ = (UInt32)size;
tail.cc 12 Vector<UInt32> *offsets, int mode) {
114 Vector<UInt32> *offsets) {
123 Vector<UInt32> temp_offsets;
127 temp_offsets[i] = (UInt32)buf.size();
132 temp_offsets.back() = (UInt32)buf.size();
142 Vector<UInt32> *offsets) {
148 typedef std::pair<RString, UInt32> KeyIdPair;
158 pairs[i].second = (UInt32)i;
165 Vector<UInt32> temp_offsets;
178 temp_offsets[cur.second] = (UInt32)(temp_offsets[last->second
    [all...]
  /external/marisa-trie/v0_1_5/lib/marisa_alpha/
intvector.cc 8 void IntVector::build(const Vector<UInt32> &ints) {
9 UInt32 max_int = 0;
10 for (UInt32 i = 0; i < ints.size(); ++i) {
16 for (UInt32 i = 0; i < ints.size(); ++i) {
21 void IntVector::build(UInt32 max_int, std::size_t size) {
22 UInt32 num_bits_per_int = 0;
31 Vector<UInt32> temp_units;
40 size_ = (UInt32)size;
tail.cc 12 Vector<UInt32> *offsets, int mode) {
114 Vector<UInt32> *offsets) {
123 Vector<UInt32> temp_offsets;
127 temp_offsets[i] = (UInt32)buf.size();
132 temp_offsets.back() = (UInt32)buf.size();
142 Vector<UInt32> *offsets) {
148 typedef std::pair<RString, UInt32> KeyIdPair;
158 pairs[i].second = (UInt32)i;
165 Vector<UInt32> temp_offsets;
178 temp_offsets[cur.second] = (UInt32)(temp_offsets[last->second
    [all...]
  /external/lzma/CPP/Windows/
Registry.cpp 78 const UInt32 kBufferSize = MAX_PATH + 1; // 256 in ATL
96 static inline UInt32 BoolToUINT32(bool value) { return (value ? 1: 0); }
97 static inline bool UINT32ToBool(UInt32 value) { return (value != 0); }
116 LONG CKey::SetValue(LPCTSTR name, UInt32 value)
120 (BYTE * const)&value, sizeof(UInt32));
162 LONG CKey::SetValue(LPCTSTR name, const void *value, UInt32 size)
190 LONG CKey::QueryValue(LPCTSTR name, UInt32 &value)
197 MYASSERT((res!=ERROR_SUCCESS) || (count == sizeof(UInt32)));
203 UInt32 uintValue = BoolToUINT32(value);
209 LONG CKey::GetValue_IfOk(LPCTSTR name, UInt32 &value)
    [all...]
  /external/chromium_org/media/audio/mac/
audio_device_listener_mac.h 32 AudioObjectID object, UInt32 num_addresses,
audio_low_latency_input_mac.h 88 UInt32 bus_number,
89 UInt32 number_of_frames,
93 OSStatus Provide(UInt32 number_of_frames, AudioBufferList* io_data,
audio_low_latency_output_mac.h 60 UInt32 bus_number,
61 UInt32 number_of_frames,
64 OSStatus Render(UInt32 number_of_frames, AudioBufferList* io_data,
  /external/lzma/CPP/7zip/Common/
CreateCoder.h 18 UInt32 NumInStreams;
19 UInt32 NumOutStreams;
65 const UString &name, CMethodId &methodId, UInt32 &numInStreams, UInt32 &numOutStreams);
MethodProps.h 28 UInt32 NumThreads;
OutBuffer.cpp 9 bool COutBuffer::Create(UInt32 bufferSize)
11 const UInt32 kMinBlockSize = 1;
57 UInt32 size = (_streamPos >= _pos) ? (_bufferSize - _streamPos) : (_pos - _streamPos);
74 UInt32 processedSize = 0;
InBuffer.cpp 17 bool CInBuffer::Create(UInt32 bufferSize)
19 const UInt32 kMinBlockSize = 1;
61 UInt32 numProcessedBytes;
MethodProps.cpp 17 UInt32 reducedDictionarySize = 1 << 10;
22 const UInt32 step = (reducedDictionarySize >> 1);
34 if (reducedDictionarySize >= ((UInt32)3 << 30))
  /external/lzma/CPP/7zip/Compress/
Lzma2Encoder.h 27 STDMETHOD(SetCoderProperties)(const PROPID *propIDs, const PROPVARIANT *props, UInt32 numProps);
LzmaEncoder.h 27 STDMETHOD(SetCoderProperties)(const PROPID *propIDs, const PROPVARIANT *props, UInt32 numProps);
CopyCoder.cpp 13 static const UInt32 kBufferSize = 1 << 17;
35 UInt32 size = kBufferSize;
38 size = (UInt32)(*outSize - TotalSize);
  /external/lzma/CPP/7zip/UI/Common/
PropIDUtils.cpp 16 void ConvertUInt32ToHex(UInt32 value, wchar_t *s)
80 UInt32 a = prop.ulVal;
94 UInt32 a = prop.ulVal;
110 a &= ~(UInt32)0xFFFF;
ArchiveCommandLine.h 89 UInt32 NumIterations;
90 UInt32 NumThreads;
91 UInt32 DictionarySize;
  /external/lzma/CS/7zip/Compress/RangeCoder/
RangeCoderBit.cs 48 private static UInt32[] ProbPrices = new UInt32[kBitModelTotal >> kNumMoveReducingBits];
55 UInt32 start = (UInt32)1 << (kNumBits - i - 1);
56 UInt32 end = (UInt32)1 << (kNumBits - i);
57 for (UInt32 j = start; j < end; j++)
58 ProbPrices[j] = ((UInt32)i << kNumBitPriceShiftBits) +
  /external/lzma/CPP/7zip/Archive/
XzHandler.cpp 65 UInt32 _crcSize;
128 static AString ConvertUInt32ToString(UInt32 value)
142 UInt32 size = (2 | ((prop) & 1)) << ((prop) / 2 + 1);
159 UInt32 Id;
196 s += ConvertUInt32ToString((UInt32)f.props[0] + 1);
200 for (UInt32 bi = 0; bi < f.propsSize; bi++)
238 UInt32 mask = 0;
240 mask |= ((UInt32)1 << XzFlags_GetCheckType(xzs.streams[i].flags));
249 s2 = "Check-" + ConvertUInt32ToString((UInt32)i);
270 STDMETHODIMP CHandler::GetNumberOfItems(UInt32 *numItems)
    [all...]
  /external/chromium_org/third_party/lzma_sdk/
LzmaEnc.h 18 UInt32 dictSize; /* (1 << 12) <= dictSize <= (1 << 27) for 32-bit version
28 UInt32 mc; /* 1 <= mc <= (1 << 30), default = 32 */
35 UInt32 LzmaEncProps_GetDictSize(const CLzmaEncProps *props2);
  /external/chromium_org/third_party/ots/third_party/lzma_sdk/
LzmaEnc.h 19 UInt32 dictSize; /* (1 << 12) <= dictSize <= (1 << 27) for 32-bit version
29 UInt32 mc; /* 1 <= mc <= (1 << 30), default = 32 */
36 UInt32 LzmaEncProps_GetDictSize(const CLzmaEncProps *props2);
  /external/lzma/C/
LzmaEnc.h 18 UInt32 dictSize; /* (1 << 12) <= dictSize <= (1 << 27) for 32-bit version
28 UInt32 mc; /* 1 <= mc <= (1 << 30), default = 32 */
35 UInt32 LzmaEncProps_GetDictSize(const CLzmaEncProps *props2);
Ppmd.h 55 UInt32
63 UInt32
71 UInt32

Completed in 3842 milliseconds

1 2 3 4 5 6 78 91011>>