Searched defs:headerSize (Results 1 - 25 of 34) sorted by relevance

12

/external/icu4c/stubdata/
H A Dstubdata.c26 uint16_t headerSize; member in struct:__anon5955
42 32, /* headerSize */
/external/icu4c/common/
H A Ducmndata.h35 uint16_t headerSize; member in struct:__anon5747
H A Drbbirb.cpp156 int32_t headerSize = align8(sizeof(RBBIDataHeader)); local
165 int32_t totalSize = headerSize + forwardTableSize + reverseTableSize
185 data->fFTable = headerSize;
H A Ducol_swp.cpp339 int32_t headerSize, collationSize; local
342 headerSize=udata_swapDataHeader(ds, inData, length, outData, pErrorCode);
366 (const char *)inData+headerSize,
367 length>=0 ? length-headerSize : -1,
368 (char *)outData+headerSize,
371 return headerSize+collationSize;
383 int32_t headerSize; local
393 headerSize=udata_swapDataHeader(ds, inData, length, outData, pErrorCode);
416 inBytes=(const uint8_t *)inData+headerSize;
417 outBytes=(uint8_t *)outData+headerSize;
[all...]
H A Drbbidata.cpp61 ((char *)(udm->pHeader) + udm->pHeader->dataHeader.headerSize);
311 int32_t headerSize=udata_swapDataHeader(ds, inData, length, outData, status); local
322 const uint8_t *inBytes =(const uint8_t *)inData+headerSize;
337 int32_t totalSize = headerSize + breakDataLength;
358 uint8_t *outBytes = (uint8_t *)outData + headerSize;
H A Dudataswp.c239 uint16_t headerSize, infoSize; local
262 headerSize=ds->readUInt16(pHeader->dataHeader.headerSize);
265 if( headerSize<sizeof(DataHeader) ||
267 headerSize<(sizeof(pHeader->dataHeader)+infoSize) ||
268 (length>=0 && length<headerSize)
270 udata_printError(ds, "udata_swapDataHeader(): header size mismatch - headerSize %d infoSize %d length %d\n",
271 headerSize, infoSize, length);
283 uprv_memcpy(outData, inData, headerSize);
290 /* swap headerSize */
364 uint16_t headerSize, infoSize; local
[all...]
H A Ducnvsel.cpp303 header.dataHeader.headerSize = (uint16_t)((sizeof(header) + 15) & ~15);
316 header.dataHeader.headerSize +
321 indexes[UCNVSEL_INDEX_SIZE] = totalSize - header.dataHeader.headerSize;
327 int32_t length = header.dataHeader.headerSize;
371 int32_t headerSize = udata_swapDataHeader(ds, inData, length, outData, status); local
398 length -= headerSize;
407 const uint8_t *inBytes = (const uint8_t *)inData + headerSize;
408 uint8_t *outBytes = (uint8_t *)outData + headerSize;
458 return headerSize + size;
531 if (length < (pHeader->dataHeader.headerSize
[all...]
H A Dusprep.cpp828 int32_t headerSize; local
839 headerSize=udata_swapDataHeader(ds, inData, length, outData, pErrorCode);
861 inBytes=(const uint8_t *)inData+headerSize;
862 outBytes=(uint8_t *)outData+headerSize;
867 length-=headerSize;
918 return headerSize+size;
H A Ducnv_bld.c1340 int32_t headerSize; local
1365 headerSize=udata_swapDataHeader(ds, inData, length, outData, pErrorCode);
1388 inBytes=(const uint8_t *)inData+headerSize;
1389 outBytes=(uint8_t *)outData+headerSize;
1398 length-=headerSize;
1694 return headerSize+(int32_t)staticDataSize+size;
/external/dexmaker/src/dx/java/com/android/dx/dex/file/
H A DUniformListItem.java160 offset += headerSize();
209 private int headerSize() { method in class:UniformListItem
/external/icu4c/tools/toolutil/
H A Dswapimpl.cpp78 int32_t headerSize=udata_swapDataHeader(ds, inData, length, outData, pErrorCode); local
102 const uint8_t *inBytes=reinterpret_cast<const uint8_t *>(inData)+headerSize;
103 uint8_t *outBytes=reinterpret_cast<uint8_t *>(outData)+headerSize;
106 length-=headerSize;
153 return headerSize+totalSize;
163 int32_t headerSize, i; local
169 headerSize=udata_swapDataHeader(ds, inData, length, outData, pErrorCode);
195 if(length>=0 && (length-headerSize)<(int32_t)sizeof(dataIndexes)) {
197 length-headerSize);
203 inData32=(const int32_t *)((const char *)inData+headerSize);
311 int32_t headerSize; local
413 int32_t headerSize; local
521 int32_t headerSize; local
645 int32_t headerSize; local
752 int32_t headerSize, i, swappedLength; local
[all...]
H A Dunewdata.c29 uint16_t headerSize; member in struct:UNewDataMemory
39 uint16_t headerSize, commentLength; local
108 headerSize=(uint16_t)(pInfo->size+4);
111 headerSize+=commentLength;
117 pData->headerSize=(uint16_t)((headerSize+15)&~0xf);
120 T_FileStream_write(pData->file, &pData->headerSize, 4);
131 headerSize&=0xf;
132 if(headerSize!=0) {
133 headerSize
[all...]
/external/skia/src/pdf/
H A DSkPDFDocument.cpp124 off_t fileOffset = headerSize();
237 size_t SkPDFDocument::headerSize() { function in class:SkPDFDocument
/external/jpeg/
H A Drdbmp.c253 INT32 headerSize; local
277 headerSize = (INT32) GET_4B(bmpinfoheader,0);
278 if (headerSize < 12 || headerSize > 64)
280 if (! ReadOK(source->pub.input_file, bmpinfoheader+4, headerSize-4))
283 switch ((int) headerSize) {
350 bPad = bfOffBits - (headerSize + 14);
/external/opencv/otherlibs/highgui/
H A Dgrfmt_bmp.cpp506 int headerSize = 14 /* fileheader */ + bitmapHeaderSize + paletteSize; local
513 m_strm.PutDWord( fileStep*height + headerSize ); // file size
515 m_strm.PutDWord( headerSize );
/external/qemu/distrib/jpeg-6b/
H A Drdbmp.c253 INT32 headerSize; local
277 headerSize = (INT32) GET_4B(bmpinfoheader,0);
278 if (headerSize < 12 || headerSize > 64)
280 if (! ReadOK(source->pub.input_file, bmpinfoheader+4, headerSize-4))
283 switch ((int) headerSize) {
350 bPad = bfOffBits - (headerSize + 14);
/external/srec/srec/include/
H A Dutteranc.h185 unsigned short headerSize; member in struct:_UttHeader
/external/icu4c/tools/icuswap/
H A Dicuswap.cpp340 int32_t headerSize; local
357 headerSize=udata_swapDataHeader(ds, inData, length, outData, pErrorCode);
408 inBytes=(const uint8_t *)inData+headerSize;
416 return headerSize+4;
424 return headerSize+offset+(uint32_t)itemLength;
430 length-=headerSize;
454 outBytes=(uint8_t *)outData+headerSize;
461 return headerSize+4;
633 uprv_memcpy((uint8_t *)outData+headerSize, outBytes, length);
637 return headerSize
[all...]
/external/opencv/
H A Dcvjni.h183 int headerSize = 14 /* fileheader */ + bitmapHeaderSize + paletteSize; local
186 int testSize = fileStep*height + headerSize;
188 sprintf(log_str, "fileStep*height + headerSize=%i", testSize);
195 m_strm->PutDWord( fileStep*height + headerSize ); // file size
197 m_strm->PutDWord( headerSize );
/external/webkit/Source/ThirdParty/ANGLE/src/compiler/
H A DPoolAlloc.h69 return size + 2 * guardBlockSize + headerSize();
74 return m + guardBlockSize + headerSize();
81 unsigned char* preGuard() const { return mem + headerSize(); }
96 inline static size_t headerSize() { return sizeof(TAllocation); } function in class:TAllocation
98 inline static size_t headerSize() { return 0; } function in class:TAllocation
/external/icu4c/i18n/
H A Duspoof_impl.cpp496 ((char *)(udm->pHeader) + udm->pHeader->dataHeader.headerSize);
865 int32_t headerSize=udata_swapDataHeader(ds, inData, length, outData, status); local
872 const uint8_t *inBytes =(const uint8_t *)inData+headerSize;
886 int32_t totalSize = headerSize + spoofDataLength;
907 uint8_t *outBytes = (uint8_t *)outData + headerSize;
/external/icu4c/test/cintltst/
H A Dudatatst.c354 uint16_t headerSize; member in struct:__anon6049
369 32, /* headerSize */
1204 uint16_t headerSize; member in struct:__anon6052
1214 32, /* headerSize */
/external/icu4c/tools/makeconv/
H A Dgencnvex.c117 int32_t length, top, headerSize; local
122 headerSize=0;
133 headerSize=MBCS_HEADER_V4_LENGTH*4+length;
138 header.flags=(uint32_t)((headerSize<<8)|MBCS_OUTPUT_EXT_ONLY);
284 return (uint32_t)(headerSize+top);
/external/srec/srec/EventLog/src/
H A Driff.c960 int headerSize = sizeof(RiffHeaderStruct); local
984 total_buflen = headerSize + num_bytes;
1039 memcpy(ptr, &header, headerSize);
1041 memcpy(ptr + headerSize, waveform, header.dataLength);
1043 short_byte_swap((short *)(ptr + headerSize), num_samples);
1057 memcpy(ptr, &header, headerSize);
1058 memcpy(ptr + headerSize, waveform, header.dataLength);
1060 ptr += headerSize + header.dataLength;
/external/webkit/Source/WebCore/platform/cf/
H A DBinaryPropertyList.cpp38 static const size_t headerSize = 8; member in namespace:WebCore
489 , m_offsetTableStart(headerSize + m_plan.byteCount() + m_plan.objectReferenceCount() * m_objectReferenceSize)
510 m_currentByte = m_buffer + headerSize;
518 memcpy(m_buffer, "bplist00", headerSize);

Completed in 531 milliseconds

12