Searched defs:tryAllocPixels (Results 1 - 2 of 2) sorted by relevance

/external/skia/include/core/
H A DSkBitmap.h247 bool SK_WARN_UNUSED_RESULT tryAllocPixels(const SkImageInfo&, SkPixelRefFactory*, SkColorTable*);
250 if (!this->tryAllocPixels(info, factory, ctable)) {
263 bool SK_WARN_UNUSED_RESULT tryAllocPixels(const SkImageInfo& info, size_t rowBytes);
266 if (!this->tryAllocPixels(info, rowBytes)) {
271 bool SK_WARN_UNUSED_RESULT tryAllocPixels(const SkImageInfo& info) { function in class:SkBitmap
272 return this->tryAllocPixels(info, info.minRowBytes());
282 return this->tryAllocPixels(info);
374 bool SK_WARN_UNUSED_RESULT tryAllocPixels(SkColorTable* ctable = NULL) { function in class:SkBitmap
375 return this->tryAllocPixels(NULL, ctable);
400 bool SK_WARN_UNUSED_RESULT tryAllocPixels(Allocato
[all...]
/external/skia/src/core/
H A DSkBitmap.cpp313 bool SkBitmap::tryAllocPixels(Allocator* allocator, SkColorTable* ctable) { function in class:SkBitmap
324 bool SkBitmap::tryAllocPixels(const SkImageInfo& requestedInfo, size_t rowBytes) { function in class:SkBitmap
353 bool SkBitmap::tryAllocPixels(const SkImageInfo& requestedInfo, SkPixelRefFactory* factory, function in class:SkBitmap
786 if (!tmpDst.tryAllocPixels(alloc, ctable.get())) {
890 if (!tmpBitmap.tryAllocPixels(allocator, nullptr)) {
914 if (!tmpBitmap.tryAllocPixels(allocator, nullptr)) {

Completed in 335 milliseconds