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

  /frameworks/native/services/surfaceflinger/tests/resize/
resize.cpp 51 ssize_t bpr = info.s * bytesPerPixel(info.format); local
52 android_memset16((uint16_t*)info.bits, 0xF800, bpr*info.h);
56 android_memset16((uint16_t*)info.bits, 0x07E0, bpr*info.h);
  /sdk/emulator/opengl/host/libs/Translator/GLcommon/
TextureUtils.cpp 63 const int32_t bpr = ((width * 3) + align) & ~align; local
64 const size_t size = bpr * height;
67 int res = etc1_decode_image((const etc1_byte*)data, pOut, width, height, 3, bpr);
  /external/webkit/Source/WebKit/android/plugins/
ANPSurfaceInterface.cpp 131 ssize_t bpr = info.s * bytesPerPixel(info.format); local
136 bitmap->rowBytes = bpr;
  /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;
  /frameworks/native/opengl/libagl/
mipmap.cpp 46 const int bpr = w * pixelFormat.size; local
48 base->format, base->compressedFormat, bpr) != NO_ERROR) {
texture.cpp 379 const int32_t bpr = ((width * pixelFormat.size) + align) & ~align; local
380 const size_t size = bpr * height;
381 const int32_t stride = bpr / pixelFormat.size;
387 width, height, stride, formatIdx, compressedFormat, bpr);
398 width, height, stride, formatIdx, compressedFormat, bpr);
    [all...]
  /system/core/libpixelflinger/
buffer.cpp 68 const int32_t bpr = -dst->stride * pixelFormat.size; local
69 dst->data += bpr * (dst->height-1);
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;
  /frameworks/base/services/input/
SpriteController.cpp 206 ssize_t bpr = surfaceInfo.s * bytesPerPixel(surfaceInfo.format); local
208 surfaceInfo.w, surfaceInfo.h, bpr);
  /hardware/msm7k/libgralloc/
gralloc.cpp 498 size_t bpr = (w*bpp + (align-1)) & ~(align-1); local
499 size = bpr * h;
500 stride = bpr / bpp;
  /sdk/emulator/opengl/system/gralloc/
gralloc.cpp 207 size_t bpr = (w*bpp + (align-1)) & ~(align-1); local
208 ashmem_size += (bpr * h);
209 stride = bpr / bpp;
  /external/skia/src/images/
SkImageDecoder_libjpeg.cpp 347 INT32 const bpr = bm->rowBytes(); local
359 rowptr += bpr;
639 INT32 const bpr = bitmap->rowBytes(); local
654 rowptr += bpr;
    [all...]
  /frameworks/base/core/jni/
android_view_Surface.cpp 387 ssize_t bpr = info.s * bytesPerPixel(info.format); local
388 bitmap.setConfig(convertPixelFormat(info.format), info.w, info.h, bpr); local
572 ssize_t bpr = s * android::bytesPerPixel(f); local
575 bitmap->setConfig(convertPixelFormat(f), w, h, bpr); local

Completed in 304 milliseconds