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

  /external/chromium_org/content/browser/renderer_host/
render_widget_host_browsertest.cc 33 const int row_bytes = bitmap.rowBytesAsPixels(); local
37 if (pixels[j * row_bytes + i] != SK_ColorRED) {
  /external/chromium_org/cc/scheduler/
texture_uploader_unittest.cc 135 const uint8* row_bytes = variable
137 EXPECT_EQ(0x1, row_bytes[0]);
138 EXPECT_EQ(0x2, row_bytes[width * bytes_per_pixel - 1]);
  /external/chromium_org/ui/gfx/
blit.cc 167 size_t row_bytes = dest_rect.width() * 4; local
173 row_bytes);
180 row_bytes);
189 row_bytes);
  /external/libpng/contrib/pngminus/
png2pnm.c 196 png_uint_32 row_bytes; local
314 /* row_bytes is the width x number of channels x (bit-depth / 8) */
315 row_bytes = png_get_rowbytes (png_ptr, info_ptr);
317 if ((png_pixels = (png_byte *) malloc (row_bytes * height * sizeof (png_byte))) == NULL) {
332 row_pointers[i] = png_pixels + i * row_bytes;
pnm2png.c 193 png_uint_32 row_bytes; local
332 /* row_bytes is the width x number of channels x (bit-depth / 8) */
333 row_bytes = width * channels * ((bit_depth <= 8) ? 1 : 2);
335 if ((png_pixels = (png_byte *) malloc (row_bytes * height * sizeof (png_byte))) == NULL)
423 row_pointers[i] = png_pixels + i * row_bytes;
  /external/chromium_org/cc/test/
layer_tree_pixel_test.cc 278 size_t row_bytes = size.width() * 4; local
279 size_t total_bytes = size.height() * row_bytes;
280 for (size_t dest_y = 0; dest_y < total_bytes; dest_y += row_bytes) {
282 size_t src_y = total_bytes - dest_y - row_bytes;
284 for (size_t x = 0; x < row_bytes; x += 4) {
335 size_t row_bytes = bitmap.width() * 4; local
336 size_t total_bytes = bitmap.height() * row_bytes;
341 for (size_t y = 0; y < total_bytes; y += row_bytes) {
343 size_t src_y = total_bytes - y - row_bytes;
345 for (size_t x = 0; x < row_bytes; x += 4)
    [all...]
  /external/chromium_org/media/base/
video_frame.cc 287 size_t y_stride = RoundUp(row_bytes(VideoFrame::kYPlane),
289 size_t uv_stride = RoundUp(row_bytes(VideoFrame::kUPlane),
356 int VideoFrame::row_bytes(size_t plane) const { function in class:media::VideoFrame
443 row_bytes(plane)));
video_util.cc 40 int bytes_to_copy_per_row = std::min(frame->row_bytes(plane), stride);
79 int y_row_bytes = frame->row_bytes(VideoFrame::kYPlane);
89 int u_row_bytes = frame->row_bytes(VideoFrame::kUPlane);
90 int v_row_bytes = frame->row_bytes(VideoFrame::kVPlane);
105 const int row_bytes = frame->row_bytes(plane); local
108 CHECK_GE(stride, row_bytes);
111 CHECK_LE(view_area.right(), row_bytes);
116 memset(ptr, fill_byte, row_bytes);
119 if (view_area.width() < row_bytes) {
    [all...]
  /external/chromium_org/third_party/mesa/src/src/glx/apple/
apple_glx_drawable.h 134 int row_bytes; member in struct:apple_glx_drawable
  /external/mesa3d/src/glx/apple/
apple_glx_drawable.h 134 int row_bytes; member in struct:apple_glx_drawable
  /external/chromium_org/third_party/libpng/
pngwutil.c 2152 png_uint_32 row_bytes = row_info->rowbytes; local
    [all...]
pngrutil.c 3212 png_size_t row_bytes; local
    [all...]
  /external/libpng/
pngwutil.c 2152 png_uint_32 row_bytes = row_info->rowbytes; local
    [all...]
pngrutil.c 3254 png_size_t row_bytes; local
    [all...]
  /external/qemu/distrib/libpng-1.2.19/
pngwutil.c 2116 png_uint_32 row_bytes = row_info->rowbytes; local
    [all...]
pngrutil.c 4020 png_uint_32 row_bytes; local
    [all...]
  /external/chromium_org/cc/output/
gl_renderer.cc 2431 size_t row_bytes = size.width() * 4; local
    [all...]

Completed in 908 milliseconds