Searched defs:rowBytes (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/libs/hwui/
H A DGradientCache.cpp244 const GLsizei rowBytes = width * bytesPerPixel(); local
245 uint8_t pixels[rowBytes * texture->height];
286 memcpy(pixels + rowBytes, pixels, rowBytes);
H A DFontRenderer.cpp299 int srcStride = glyph.rowBytes();
369 int rowBytes = srcStride; local
374 while (--rowBytes >= 0) {
/frameworks/base/core/jni/
H A Dandroid_view_SurfaceControl.cpp165 ssize_t rowBytes = screenshot->getStride() * android::bytesPerPixel(screenshot->getFormat()); local
168 bitmap->setConfig(screenshotInfo, rowBytes);
/frameworks/base/core/jni/android/graphics/
H A DBitmap.cpp134 dst = (char*)dst + dstBitmap.rowBytes();
430 return bitmap->rowBytes();
479 const int rowBytes = p->readInt32(); local
493 bitmap->setConfig(config, width, height, rowBytes);
549 p->writeInt32(bitmap->rowBytes());
653 src = (void*)((const char*)src + bitmap->rowBytes());
H A DGraphics.cpp437 size_t rowBytes, jbyteArray storageObj, SkColorTable* ctable) :
438 SkMallocPixelRef(info, storage, rowBytes, ctable, (storageObj == NULL)),
456 size_t rowBytes, SkColorTable* ctable) :
457 SkMallocPixelRef(info, wrappedPixelRef.getAddr(), rowBytes, ctable, false),
578 bitmap->rowBytes(), arrayObj, ctable);
436 AndroidPixelRef(JNIEnv* env, const SkImageInfo& info, void* storage, size_t rowBytes, jbyteArray storageObj, SkColorTable* ctable) argument
455 AndroidPixelRef(AndroidPixelRef& wrappedPixelRef, const SkImageInfo& info, size_t rowBytes, SkColorTable* ctable) argument

Completed in 72 milliseconds