HomeSort by relevance Sort by last modified time
    Searched refs:fPixels (Results 1 - 6 of 6) sorted by null

  /external/skia/include/core/
SkBitmap.h 85 bool isNull() const { return NULL == fPixels && NULL == fPixelRef; }
124 void* getPixels() const { return fPixels; }
461 mutable void* fPixels;
641 SkASSERT(fPixels);
644 return (uint32_t*)((char*)fPixels + y * fRowBytes + (x << 2));
648 SkASSERT(fPixels);
651 return (uint16_t*)((char*)fPixels + y * fRowBytes + (x << 1));
655 SkASSERT(fPixels);
658 return (uint8_t*)fPixels + y * fRowBytes + x;
662 SkASSERT(fPixels);
    [all...]
SkPixelRef.h 43 void* pixels() const { return fPixels; }
146 void* fPixels;
  /external/skia/src/core/
SkPixelRef.cpp 13 fPixels = NULL;
25 fPixels = NULL;
40 fPixels = this->onLockPixels(&fColorTable);
50 fPixels = NULL;
SkBitmap.cpp 34 void* fPixels;
118 // leave fPixels as it is
122 fPixels = NULL;
137 SkTSwap<void*>(fPixels, other.fPixels);
266 fPixels = p;
270 fPixels = NULL;
321 fPixels = p;
354 fPixels = NULL;
559 uint8_t* p = (uint8_t*)fPixels;
    [all...]
  /development/ide/xcode/ports/
SkBitmap_Mac.cpp 107 if (fPixels == NULL || fWidth == 0 || fHeight == 0) {
  /external/skia/src/utils/mac/
SkBitmap_Mac.cpp 107 if (fPixels == NULL || fWidth == 0 || fHeight == 0) {

Completed in 33 milliseconds