Searched refs:shiftPerPixel (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/third_party/skia/include/core/
H A DSkBitmap.h97 return fRowBytes >> this->shiftPerPixel();
104 int shiftPerPixel() const { return this->bytesPerPixel() >> 1; } function in class:SkBitmap
/external/skia/include/core/
H A DSkBitmap.h123 return fRowBytes >> this->shiftPerPixel();
130 int shiftPerPixel() const { return this->bytesPerPixel() >> 1; } function in class:SkBitmap
/external/chromium_org/third_party/skia/src/core/
H A DSkDraw.cpp225 int shiftPerPixel; local
228 shiftPerPixel = 2;
231 shiftPerPixel = 1;
234 shiftPerPixel = 0;
244 const int widthBytes = rect.width() << shiftPerPixel;
247 pixels += rect.fTop * rowBytes + (rect.fLeft << shiftPerPixel);
/external/skia/src/core/
H A DSkDraw.cpp224 int shiftPerPixel; local
227 shiftPerPixel = 2;
230 shiftPerPixel = 1;
233 shiftPerPixel = 0;
243 const int widthBytes = rect.width() << shiftPerPixel;
246 pixels += rect.fTop * rowBytes + (rect.fLeft << shiftPerPixel);

Completed in 2097 milliseconds