HomeSort by relevance Sort by last modified time
    Searched full:datalength (Results 126 - 150 of 369) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/icu/icu4c/source/common/
ucol_swp.cpp 60 trie.dataLength=udata_readInt32(ds, inTrie->dataLength);
67 trie.dataLength<UTRIE_DATA_BLOCK_LENGTH ||
68 (trie.dataLength&(UTRIE_DATA_GRANULARITY-1))!=0 ||
69 ((trie.options&UTRIE_OPTIONS_LATIN1_IS_LINEAR)!=0 && trie.dataLength<(UTRIE_DATA_BLOCK_LENGTH+0x100))
76 size=sizeof(UTrieHeader)+trie.indexLength*2+trie.dataLength*(dataIs32?4:2);
94 ds->swapArray32(ds, (const uint16_t *)(inTrie+1)+trie.indexLength, trie.dataLength*4,
97 ds->swapArray16(ds, inTrie+1, (trie.indexLength+trie.dataLength)*2, outTrie+1, pErrorCode);
utrie2_impl.h 136 * and allocDataBlock() needs to look for a free block before increasing dataLength.
148 int32_t index2Length, dataCapacity, dataLength;
  /frameworks/av/include/drm/
drm_framework_common.h 75 DrmBuffer(char* dataBytes, int dataLength) :
77 length(dataLength) {
  /frameworks/base/location/java/android/location/
GpsNavigationMessage.java 221 int dataLength = parcel.readInt();
222 byte[] data = new byte[dataLength];
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
usbuser.h 120 ULONG DataLength;
262 ULONG DataLength;
  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
ScriptStreamer.cpp 180 size_t dataLength = 0;
187 dataLength += length;
192 if (dataLength > 0) {
193 uint8_t* copiedData = new uint8_t[dataLength];
199 m_dataQueue.produce(copiedData, dataLength);
  /external/chromium_org/third_party/webrtc/modules/media_file/source/
media_file_utility.cc     [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/websockets/
MainThreadWebSocketChannel.cpp 723 void MainThreadWebSocketChannel::enqueueRawFrame(WebSocketFrame::OpCode opCode, const char* data, size_t dataLength)
730 frame->vectorData.resize(dataLength);
731 if (dataLength)
732 memcpy(frame->vectorData.data(), data, dataLength);
    [all...]
  /external/chromium_org/content/renderer/npapi/
webplugin_impl.h 340 int dataLength,
344 int dataLength,
348 int dataLength) OVERRIDE;
  /external/chromium_org/third_party/sfntly/cpp/src/sfntly/table/bitmap/
index_sub_table_format4.cc 164 int32_t length = Builder::DataLength(data,
187 int32_t length = Builder::DataLength(data,
331 int32_t IndexSubTableFormat4::Builder::DataLength(
  /external/sfntly/cpp/src/sfntly/table/bitmap/
index_sub_table_format4.cc 164 int32_t length = Builder::DataLength(data,
187 int32_t length = Builder::DataLength(data,
331 int32_t IndexSubTableFormat4::Builder::DataLength(
  /frameworks/rs/cpu_ref/
rsCpuIntrinsicHistogram.cpp 32 virtual void setGlobalVar(uint32_t slot, const void *data, size_t dataLength);
88 void RsdCpuScriptIntrinsicHistogram::setGlobalVar(uint32_t slot, const void *data, size_t dataLength) {
90 rsAssert(dataLength == 16);
  /frameworks/rs/
rs_hal.h 132 size_t dataLength);
136 size_t dataLength);
140 size_t dataLength,
  /hardware/ti/omap4-aah/security/tf_sdk/include/
OEMCrypto.h 323 * dataLength (in/out) - on input, the allocated buffer size. On output, the number
343 * dataLength (in) - Length of the random data buffer in bytes.
352 OEMCrypto_UINT32 dataLength);
  /external/apache-xml/src/main/java/org/apache/xml/serializer/dom3/
DOM3TreeWalker.java 1163 int datalength = dataarray.length; local
1226 int datalength = dataarray.length; local
1287 int datalength = dataarray.length; local
    [all...]
  /system/security/keystore/
keystore.cpp 587 size_t dataLength = mBlob.length + sizeof(mBlob.length);
589 size_t digestedLength = ((dataLength + AES_BLOCK_SIZE - 1)
596 memset(mBlob.value + mBlob.length, 0, digestedLength - dataLength);
    [all...]
  /cts/suite/audio_quality/client/src/com/android/cts/audiotest/
AudioProtocol.java 224 int dataLength = len - 4;
225 ByteBuffer data = ByteBuffer.allocate(dataLength);
226 read(mInput, data, dataLength);
228 Log.d(TAG, "downloaded data id " + id + " len " + dataLength);
  /external/chromium_org/content/child/
web_url_loader_impl_unittest.cc 177 int dataLength,
185 int dataLength,
195 received_data_.append(data, dataLength);
203 int dataLength) OVERRIDE {
  /external/chromium_org/content/renderer/media/android/
media_info_loader.h 101 const char* data, int dataLength);
  /external/chromium_org/third_party/WebKit/Source/core/workers/
WorkerScriptLoader.h 75 virtual void didReceiveData(const char* data, int dataLength) OVERRIDE;
  /external/chromium_org/third_party/WebKit/Source/modules/mediasource/
SourceBuffer.h 119 virtual void didReceiveDataForClient(const char* data, unsigned dataLength) OVERRIDE;
  /external/chromium_org/third_party/WebKit/Source/wtf/unicode/
UTF8.cpp 370 unsigned calculateStringHashAndLengthFromUTF8MaskingTop8Bits(const char* data, const char* dataEnd, unsigned& dataLength, unsigned& utf16Length)
376 dataLength = 0;
382 dataLength++;
388 dataLength += utf8SequenceLength;
UTF8.h 78 WTF_EXPORT unsigned calculateStringHashAndLengthFromUTF8MaskingTop8Bits(const char* data, const char* dataEnd, unsigned& dataLength, unsigned& utf16Length);
  /external/chromium_org/third_party/sfntly/cpp/src/sfntly/table/
font_data_table.cc 37 int32_t FontDataTable::DataLength() {
font_data_table.h 108 virtual int32_t DataLength();

Completed in 1364 milliseconds

1 2 3 4 56 7 8 91011>>