HomeSort by relevance Sort by last modified time
    Searched refs:bpr (Results 1 - 12 of 12) 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);
  /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;
  /frameworks/base/core/jni/
android_view_Surface.cpp 324 ssize_t bpr = outBuffer.stride * bytesPerPixel(outBuffer.format); local
325 bitmap.setInfo(info, bpr);
  /frameworks/base/libs/input/
SpriteController.cpp 212 ssize_t bpr = outBuffer.stride * bytesPerPixel(outBuffer.format); local
214 outBuffer.bits, bpr); local
  /external/skia/src/images/
SkImageDecoder_libjpeg.cpp 671 INT32 const bpr = bm->rowBytes(); local
686 rowptr += bpr;
1106 INT32 const bpr = bitmap.rowBytes(); local
    [all...]
  /device/generic/goldfish/opengl/system/gralloc/
gralloc.cpp 268 size_t bpr = (w*bpp + (align-1)) & ~(align-1); local
269 ashmem_size += (bpr * h);
270 stride = bpr / bpp;

Completed in 1610 milliseconds