Searched refs:dataSize (Results 1 - 25 of 51) sorted by relevance

123

/external/opencore/protocols/systems/tools/general/common/src/
H A Dcrccheck.cpp85 int32 fragIdx, curSize, dataSize; local
90 dataSize = pPkt->GetMediaSize();
92 while (--dataSize >= 0)
111 int32 fragIdx, curSize, dataSize; local
119 dataSize = mediaData->getFilledSize() - 1;
123 dataSize = mediaData->getFilledSize();
126 while (--dataSize >= 0)
163 int32 fragIdx, curSize, dataSize; local
168 dataSize = pPkt->GetMediaSize();
170 while (--dataSize >
195 int32 fragIdx, curSize, dataSize; local
[all...]
/external/webkit/WebKitTools/DumpRenderTree/gtk/
H A DWorkQueueItemGtk.cpp32 size_t dataSize = JSStringGetMaximumUTF8CStringSize(jsString); local
33 gchar* utf8 = (gchar*)g_malloc(dataSize);
34 JSStringGetUTF8CString(jsString, utf8, dataSize);
/external/zlib/contrib/minizip/
H A Dmztools.c109 int dataSize = cpsize; local
110 if (dataSize == 0) {
111 dataSize = uncpsize;
113 if (dataSize > 0) {
114 char* data = malloc(dataSize);
116 if ((int)fread(data, 1, dataSize, fpZip) == dataSize) {
117 if ((int)fwrite(data, 1, dataSize, fpOut) == dataSize) {
118 offset += dataSize;
[all...]
/external/icu4c/io/
H A Dustdio.c399 int32_t dataSize; local
409 dataSize = (int32_t)(str->fLimit - str->fPos);
410 if (f->fFileno == 0 && dataSize > 0) {
416 if(dataSize != 0) {
417 uprv_memmove(f->fUCBuffer, str->fPos, dataSize * sizeof(UChar));
422 availLength = UFILE_UCHARBUFFER_SIZE - dataSize;
446 myTarget = f->fUCBuffer + dataSize;
475 int32_t dataSize; local
498 dataSize = (int32_t)(str->fLimit - str->fPos);
501 if (dataSize
684 int32_t dataSize; local
[all...]
/external/webkit/WebCore/platform/network/
H A DHTTPHeaderMap.cpp56 size_t dataSize = data->size(); local
57 for (size_t index = 0; index < dataSize; ++index) {
/external/sonivox/arm-fm-22k/host_src/
H A Deas_wave.h63 EAS_U32 dataSize; member in struct:__anon4839
/external/sonivox/arm-hybrid-22k/host_src/
H A Deas_wave.h63 EAS_U32 dataSize; member in struct:__anon4889
/external/sonivox/arm-wt-22k/host_src/
H A Deas_wave.h63 EAS_U32 dataSize; member in struct:__anon4940
/external/opencore/fileformats/mp4/parser/src/
H A Deditlistatom.cpp47 uint32 dataSize = _size - (DEFAULT_FULL_ATOM_SIZE + 4); local
51 if ((_entryCount*entrySize) > dataSize)
H A Dsyncsampleatom.cpp51 uint32 dataSize = _size - (DEFAULT_FULL_ATOM_SIZE + 4); local
55 if ((_entryCount*entrySize) > dataSize)
H A Dchunkoffsetatom.cpp59 uint32 dataSize = _size - (DEFAULT_FULL_ATOM_SIZE + 4); local
63 if ((_entryCount*entrySize) > dataSize)
117 AtomUtils::seekFromCurrPos(fp, dataSize);
H A Dsamplesizeatom.cpp81 uint32 dataSize = _size - (DEFAULT_FULL_ATOM_SIZE + 4 + 4); local
87 if ((_sampleCount*entrySize) > dataSize)
138 AtomUtils::seekFromCurrPos(fp, dataSize);
H A Dcompositionoffsetatom.cpp111 uint32 dataSize = _size - (DEFAULT_FULL_ATOM_SIZE + 4); local
115 if ((_entryCount*entrySize) > dataSize)
190 AtomUtils::seekFromCurrPos(fp, dataSize);
H A Dtimetosampleatom.cpp79 uint32 dataSize = _size - (DEFAULT_FULL_ATOM_SIZE + 4); local
83 if ((_entryCount*entrySize) > dataSize)
151 AtomUtils::seekFromCurrPos(fp, dataSize);
/external/webkit/WebCore/platform/graphics/mac/
H A DCanvas3DLayer.mm127 size_t dataSize = rowBytes * height;
128 void* data = fastMalloc(dataSize);
135 CGDataProviderRef provider = CGDataProviderCreateWithData(0, data, dataSize, freeData);
/external/opencore/pvmi/media_io/pvmi_mio_avi_wav_fileinput/src/
H A Dpvmi_mio_avi_wav_file.cpp1041 uint32 dataSize = GetDataSize(); local
1043 dataSize += (uint32)(iSettings.iSampleSize / BYTE_COUNT * iSettings.iSamplingFrequency / 1000);
1044 iSettings.iDataBufferSize = dataSize;
1046 uint8* data = (uint8*)iMediaBufferMemPool->allocate(dataSize);
1302 uint32 dataSize = 0; local
1309 dataSize = iSettings.iDataBufferSize;
1311 if (dataSize <= 0)
1324 data = AllocateMemPool(iMediaBufferMemPool, dataSize, err);
1332 CalcMicroSecPerDataEvent(dataSize);
1364 error = GetMediaData(data, dataSize, timeStam
[all...]
/external/skia/src/views/
H A DSkMetaData.cpp92 void* SkMetaData::set(const char name[], const void* data, size_t dataSize, Type type, int count) argument
95 SkASSERT(dataSize);
101 Rec* rec = Rec::Alloc(sizeof(Rec) + dataSize * count + len + 1);
108 rec->fDataLen = SkToU8(dataSize);
111 memcpy(rec->data(), data, dataSize * count);
/external/opencore/nodes/streaming/streamingmanager/plugins/common/src/
H A Dpvmf_sm_fsp_base_cpm_support.cpp548 uint32 dataSize = 0; local
552 dataSize,
558 dataSize,
565 uint32 dataSize = 0; local
569 dataSize,
575 dataSize,
/external/webkit/WebCore/platform/graphics/win/
H A DQTMovieWin.h93 unsigned dataSize() const;
H A DWKCACFLayerRenderer.cpp309 DWORD dataSize = GetRegionData(region, 0, 0); local
310 OwnArrayPtr<unsigned char> regionDataBuffer(new unsigned char[dataSize]);
312 if (!GetRegionData(region, dataSize, regionData))
/external/icu4c/common/
H A Dtriedict.h311 virtual uint32_t dataSize() const;
/external/webkit/WebCore/platform/wince/
H A DPasteboardWince.cpp271 SIZE_T dataSize = ::GlobalSize(cbData); local
272 String cf_html(UTF8Encoding().decode((char*)GlobalLock(cbData), dataSize));
/external/webkit/WebCore/wml/
H A DWMLGoElement.cpp205 if (size_t dataSize = value.length())
206 result->appendData(value.data(), dataSize);
/external/webkit/JavaScriptCore/wtf/
H A DVector.h834 void Vector<T, inlineCapacity>::append(const U* data, size_t dataSize) argument
836 size_t newSize = m_size + dataSize;
845 for (size_t i = 0; i < dataSize; ++i)
896 void Vector<T, inlineCapacity>::insert(size_t position, const U* data, size_t dataSize) argument
899 size_t newSize = m_size + dataSize;
908 TypeOperations::moveOverlapping(spot, end(), spot + dataSize);
909 for (size_t i = 0; i < dataSize; ++i)
937 void Vector<T, inlineCapacity>::prepend(const U* data, size_t dataSize) argument
939 insert(0, data, dataSize);
/external/webkit/WebCore/platform/win/
H A DPasteboardWin.cpp288 SIZE_T dataSize = ::GlobalSize(cbData); local
289 String cf_html(UTF8Encoding().decode((char*)::GlobalLock(cbData), dataSize));

Completed in 356 milliseconds

123