Home
last modified time | relevance | path

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

/external/skia/src/core/
DSkYUVAPixmaps.cpp139 size_t SkYUVAPixmapInfo::computeTotalBytes(size_t planeSizes[kMaxPlanes]) const { in computeTotalBytes() function in SkYUVAPixmapInfo
146 return fYUVAInfo.computeTotalBytes(fRowBytes.data(), planeSizes); in computeTotalBytes()
196 SkData::MakeUninitialized(yuvaPixmapInfo.computeTotalBytes())); in Allocate()
203 if (yuvaPixmapInfo.computeTotalBytes() > data->size()) { in FromData()
261 SkASSERT(yuvaPixmapInfo.computeTotalBytes() <= fData->size()); in SkYUVAPixmaps()
DSkYUVAInfo.cpp323 size_t SkYUVAInfo::computeTotalBytes(const size_t rowBytes[kMaxPlanes], in computeTotalBytes() function in SkYUVAInfo
/external/skqp/include/core/
DSkYUVASizeInfo.h52 size_t computeTotalBytes() const { in computeTotalBytes() function
/external/skia/tests/
DYUVCacheTest.cpp49 size_t size = yuvaPixmapInfo.computeTotalBytes(); in DEF_TEST()
/external/skqp/tests/
DYUVTest.cpp65 size_t totalBytes = info.computeTotalBytes(); in codec_yuv()
/external/skia/include/core/
DSkYUVAInfo.h197 size_t computeTotalBytes(const size_t rowBytes[kMaxPlanes],
DSkYUVAPixmaps.h141 size_t computeTotalBytes(size_t planeSizes[kMaxPlanes] = nullptr) const;
/external/skia/src/image/
DSkImage_Lazy.cpp388 data.reset(SkResourceCache::NewCachedData(yuvaPixmapInfo.computeTotalBytes())); in getPlanes()