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 …]
3494 long[] stripByteCounts = in handleThumbnailFromStrips() local3501 if (stripByteCounts == null) { in handleThumbnailFromStrips()3508 new byte[(int) Arrays.stream(stripByteCounts).sum()]; in handleThumbnailFromStrips()3514 int stripByteCount = (int) stripByteCounts[i]; in handleThumbnailFromStrips()