Searched refs:stripByteCounts (Results 1 – 2 of 2) sorted by relevance
253 sp<TiffEntry> stripByteCounts = TiffWriter::uncheckedBuildEntry(TAG_STRIPBYTECOUNTS, LONG, in validateAndSetStripTags() local256 if (stripByteCounts == NULL) { in validateAndSetStripTags()273 if(addEntry(stripByteCounts) != OK) { in validateAndSetStripTags()305 sp<TiffEntry> stripByteCounts = getEntry(TAG_STRIPBYTECOUNTS); in setStripOffset() local306 if (stripByteCounts == NULL) { in setStripOffset()312 uint32_t byteCount = stripByteCounts->getCount(); in setStripOffset()319 const uint32_t* stripByteCountsArray = stripByteCounts->getData<uint32_t>(); in setStripOffset()347 sp<TiffEntry> stripByteCounts = getEntry(TAG_STRIPBYTECOUNTS); in getStripSize() local348 if (stripByteCounts == NULL) { in getStripSize()353 uint32_t count = stripByteCounts->getCount(); in getStripSize()[all …]
3498 long[] stripByteCounts = in handleThumbnailFromStrips() local3505 if (stripByteCounts == null || stripByteCounts.length == 0) { in handleThumbnailFromStrips()3509 if (stripOffsets.length != stripByteCounts.length) { in handleThumbnailFromStrips()3516 new byte[(int) Arrays.stream(stripByteCounts).sum()]; in handleThumbnailFromStrips()3523 int stripByteCount = (int) stripByteCounts[i]; in handleThumbnailFromStrips()