HomeSort by relevance Sort by last modified time
    Searched refs:minRowBytes (Results 1 - 25 of 51) sorted by null

1 2 3

  /external/chromium_org/third_party/skia/src/image/
SkImagePriv.h 30 return SkAlign4(info.minRowBytes());
SkSurface_Raster.cpp 95 fBitmap.setInfo(info, info.minRowBytes());
  /external/skia/src/image/
SkImagePriv.h 31 return SkAlign4(info.minRowBytes());
  /external/chromium_org/third_party/skia/tests/
BitmapTest.cpp 16 const size_t explicitRowBytes = info.minRowBytes() + 24;
20 REPORTER_ASSERT(reporter, info.minRowBytes() == bm.rowBytes());
22 REPORTER_ASSERT(reporter, info.minRowBytes() == bm.rowBytes());
25 REPORTER_ASSERT(reporter, info.minRowBytes() == bm.rowBytes());
37 REPORTER_ASSERT(reporter, info.minRowBytes() == bm.rowBytes());
40 REPORTER_ASSERT(reporter, info.minRowBytes() == bm.rowBytes());
43 bool success = bm.setInfo(info, info.minRowBytes() - 1); // invalid for 32bit
BitmapGetColorTest.cpp 40 bm.installPixels(info, storage, info.minRowBytes());
MallocPixelRefTest.cpp 28 SkMallocPixelRef::NewAllocate(info, info.minRowBytes() - 1, NULL));
33 size_t rowBytes = info.minRowBytes() - 1;
42 size_t rowBytes = info.minRowBytes() + 2;
50 size_t rowBytes = info.minRowBytes() + 7;
SurfaceTest.cpp 48 const size_t rowBytes = info.minRowBytes();
76 size_t rowBytes = info.minRowBytes();
92 const size_t rowBytes = info.minRowBytes();
151 REPORTER_ASSERT(reporter, info.minRowBytes() <= rowBytes);
212 REPORTER_ASSERT(reporter, requestInfo.minRowBytes() <= rowBytes);
  /external/chromium_org/cc/test/
skia_common.cc 21 bitmap.installPixels(info, buffer, info.minRowBytes());
  /external/chromium_org/third_party/skia/src/core/
SkMallocPixelRef.cpp 59 int32_t minRB = SkToS32(info.minRowBytes());
116 if ((rowBytes < info.minRowBytes())
142 SkASSERT(rowBytes >= info.minRowBytes());
165 SkASSERT(rowBytes >= info.minRowBytes());
SkImageGenerator.cpp 27 if (rowBytes < info.minRowBytes()) {
SkDevice.cpp 154 SkASSERT(rowBytes >= info.minRowBytes());
169 SkASSERT(rowBytes >= info.minRowBytes());
  /external/skia/tests/
BitmapGetColorTest.cpp 40 bm.installPixels(info, storage, info.minRowBytes());
MallocPixelRefTest.cpp 28 SkMallocPixelRef::NewAllocate(info, info.minRowBytes() - 1, NULL));
33 size_t rowBytes = info.minRowBytes() - 1;
44 size_t rowBytes = info.minRowBytes() + 2;
54 size_t rowBytes = info.minRowBytes() + 7;
SurfaceTest.cpp 47 info.minRowBytes());
71 size_t rowBytes = info.minRowBytes();
88 const size_t rowBytes = info.minRowBytes();
146 REPORTER_ASSERT(reporter, info.minRowBytes() <= rowBytes);
192 REPORTER_ASSERT(reporter, requestInfo.minRowBytes() <= rowBytes);
  /external/skia/src/core/
SkMallocPixelRef.cpp 60 int32_t minRB = SkToS32(info.minRowBytes());
117 if ((rowBytes < info.minRowBytes())
143 SkASSERT(rowBytes >= info.minRowBytes());
166 SkASSERT(rowBytes >= info.minRowBytes());
245 return SkMallocPixelRef::NewAllocate(info, info.minRowBytes(), ctable);
SkImageGenerator.cpp 27 if (rowBytes < info.minRowBytes()) {
SkDevice.cpp 84 SkASSERT(rowBytes >= info.minRowBytes());
99 SkASSERT(rowBytes >= info.minRowBytes());
  /external/chromium_org/cc/output/
software_output_device.cc 49 canvas_->readPixels(info, pixels, info.minRowBytes(), rect.x(), rect.y());
  /external/chromium_org/cc/resources/
ui_resource_bitmap.cc 69 SkMallocPixelRef::NewAllocate(info, info.minRowBytes(), NULL));
raster_worker_pool.cc 212 stride = info.minRowBytes();
236 const size_t dst_row_bytes = SkAlign4(dst_info.minRowBytes());
  /external/chromium_org/ui/ozone/platform/caca/
caca_window_manager.cc 76 info.minRowBytes(),
  /external/chromium_org/content/renderer/gpu/
compositor_software_output_device.cc 156 bitmap.installPixels(info, current->memory(), info.minRowBytes());
177 back_bitmap.installPixels(info, previous->memory(), info.minRowBytes());
  /external/chromium_org/content/browser/compositor/
software_output_device_win.cc 104 info, pixels, info.minRowBytes(), rect.x(), rect.y());
  /external/chromium_org/third_party/skia/include/core/
SkImageInfo.h 236 size_t minRowBytes() const {
  /external/chromium_org/third_party/skia/platform_tools/nacl/src/
nacl_debugger.cpp 171 fBitmap.installPixels(info, fImage.data(), info.minRowBytes());

Completed in 591 milliseconds

1 2 3