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

  /frameworks/native/services/surfaceflinger/tests/resize/
resize.cpp 52 ssize_t bpr = outBuffer.stride * bytesPerPixel(outBuffer.format); local
53 android_memset16((uint16_t*)outBuffer.bits, 0xF800, bpr*outBuffer.height);
57 android_memset16((uint16_t*)outBuffer.bits, 0x07E0, bpr*outBuffer.height);
  /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);
  /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);
  /frameworks/native/opengl/libagl/
TextureObjectManager.h 56 int format, int compressedFormat, int bpr);
TextureObjectManager.cpp 162 int format, int compressedFormat, int bpr)
164 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 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...]
  /hardware/libhardware/modules/gralloc/
gralloc.cpp 226 size_t bpr = (w*bpp + (align-1)) & ~(align-1); local
227 size = bpr * h;
228 stride = bpr / bpp;
  /hardware/samsung_slsi/exynos5/gralloc/
gralloc.cpp 132 size_t size, bpr, alignment = 0; local
176 bpr = ALIGN(w*bpp, 64);
179 size = bpr * (h + 2);
181 size = bpr * vstride;
182 *stride = bpr / bpp;
  /frameworks/base/core/jni/
android_view_Surface.cpp 231 ssize_t bpr = outBuffer.stride * bytesPerPixel(outBuffer.format); local
232 bitmap.setInfo(info, bpr);
  /external/chromium_org/third_party/skia/src/images/
SkImageDecoder_libjpeg.cpp 648 INT32 const bpr = bm->rowBytes(); local
662 rowptr += bpr;
871 INT32 const bpr = bitmap.rowBytes(); local
888 rowptr += bpr;
    [all...]
  /external/skia/src/images/
SkImageDecoder_libjpeg.cpp 648 INT32 const bpr = bm->rowBytes(); local
662 rowptr += bpr;
871 INT32 const bpr = bitmap.rowBytes(); local
888 rowptr += bpr;
    [all...]
  /frameworks/base/libs/input/
SpriteController.cpp 208 ssize_t bpr = outBuffer.stride * bytesPerPixel(outBuffer.format); local
210 outBuffer.bits, bpr); local
  /device/generic/goldfish/opengl/system/gralloc/
gralloc.cpp 271 size_t bpr = (w*bpp + (align-1)) & ~(align-1); local
272 ashmem_size += (bpr * h);
273 stride = bpr / bpp;

Completed in 960 milliseconds