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

/external/skia/include/core/
H A DSkBitmap.h243 bool SK_WARN_UNUSED_RESULT tryAllocPixels(const SkImageInfo&, SkPixelRefFactory*, SkColorTable*);
246 if (!this->tryAllocPixels(info, factory, ctable)) {
259 bool SK_WARN_UNUSED_RESULT tryAllocPixels(const SkImageInfo& info, size_t rowBytes);
262 if (!this->tryAllocPixels(info, rowBytes)) {
267 bool SK_WARN_UNUSED_RESULT tryAllocPixels(const SkImageInfo& info) { function in class:SkBitmap
268 return this->tryAllocPixels(info, info.minRowBytes());
278 return this->tryAllocPixels(info);
370 bool SK_WARN_UNUSED_RESULT tryAllocPixels(SkColorTable* ctable = NULL) { function in class:SkBitmap
371 return this->tryAllocPixels(NULL, ctable);
396 bool SK_WARN_UNUSED_RESULT tryAllocPixels(Allocato
[all...]
/external/skia/src/core/
H A DSkBitmap.cpp278 bool SkBitmap::tryAllocPixels(Allocator* allocator, SkColorTable* ctable) { function in class:SkBitmap
289 bool SkBitmap::tryAllocPixels(const SkImageInfo& requestedInfo, size_t rowBytes) { function in class:SkBitmap
318 bool SkBitmap::tryAllocPixels(const SkImageInfo& requestedInfo, SkPixelRefFactory* factory, function in class:SkBitmap
886 if (!tmpDst.tryAllocPixels(alloc, ctable)) {
1057 if (!tmpBitmap.tryAllocPixels(allocator, nullptr)) {
1081 if (!tmpBitmap.tryAllocPixels(allocator, nullptr)) {

Completed in 99 milliseconds