Home
last modified time | relevance | path

Searched refs:newCache (Results 1 – 1 of 1) sorted by relevance

/frameworks/av/media/libheif/
DHeifDecoderImpl.cpp182 std::unique_ptr<uint8_t[]> newCache; in readAt() local
186 newCache.reset(new uint8_t[newCacheBufferSize]); in readAt()
187 dst = newCache.get(); in readAt()
223 if (newCache.get() != nullptr) { in readAt()
224 mCache.reset(newCache.release()); in readAt()
240 uint8_t* newCache = new uint8_t[newCacheBufferSize]; in readAt() local
241 memcpy(newCache, mCache.get(), mCachedSize); in readAt()
242 mCache.reset(newCache); in readAt()