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

  /frameworks/base/libs/surfaceflinger/tests/resize/
resize.cpp 46 ssize_t bpr = info.s * bytesPerPixel(info.format); local
47 android_memset16((uint16_t*)info.bits, 0xF800, bpr*info.h);
51 android_memset16((uint16_t*)info.bits, 0x07E0, bpr*info.h);
  /system/core/libpixelflinger/
raster.cpp 110 const size_t bpr = cb->stride * fp->size; local
116 src += height * bpr;
117 dst += height * bpr;
119 dst -= bpr;
120 src -= bpr;
128 dst += bpr;
129 src += bpr;
135 dst += bpr;
136 src += bpr;
buffer.cpp 68 const int32_t bpr = -dst->stride * pixelFormat.size; local
69 dst->data += bpr * (dst->height-1);
  /external/webkit/WebKit/android/plugins/
ANPSurfaceInterface.cpp 131 ssize_t bpr = info.s * bytesPerPixel(info.format); local
136 bitmap->rowBytes = bpr;
  /frameworks/base/opengl/libagl/
TextureObjectManager.h 56 int format, int compressedFormat, int bpr);
TextureObjectManager.cpp 167 int format, int compressedFormat, int bpr)
169 const size_t size = h * bpr;
mipmap.cpp 46 const int bpr = w * pixelFormat.size; local
48 base->format, base->compressedFormat, bpr) != NO_ERROR) {
texture.cpp 384 const int32_t bpr = ((width * pixelFormat.size) + align) & ~align; local
385 const size_t size = bpr * height;
386 const int32_t stride = bpr / pixelFormat.size;
392 width, height, stride, formatIdx, compressedFormat, bpr);
403 width, height, stride, formatIdx, compressedFormat, bpr);
    [all...]
  /frameworks/base/libs/ui/
GraphicBufferMapper.cpp 136 size_t bpr = (w*bpp + (align-1)) & ~(align-1); local
137 size_t size = bpr * h;
138 size_t stride = bpr / bpp;
  /hardware/libhardware/modules/gralloc/
gralloc.cpp 227 size_t bpr = (w*bpp + (align-1)) & ~(align-1); local
228 size = bpr * h;
229 stride = bpr / bpp;
  /hardware/msm7k/libgralloc/
gralloc.cpp 498 size_t bpr = (w*bpp + (align-1)) & ~(align-1); local
499 size = bpr * h;
500 stride = bpr / bpp;
  /external/skia/src/images/
SkImageDecoder_libjpeg.cpp 296 INT32 const bpr = bm->rowBytes(); local
308 rowptr += bpr;
  /frameworks/base/core/jni/
android_view_Surface.cpp 320 ssize_t bpr = info.s * bytesPerPixel(info.format); local
321 bitmap.setConfig(convertPixelFormat(info.format), info.w, info.h, bpr); local

Completed in 1003 milliseconds