Searched refs:width_bytes (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/third_party/webrtc/modules/desktop_capture/
H A Ddiffer_block.cc24 int width_bytes = kBlockSize * kBytesPerPixel; local
27 if (memcmp(image1, image2, width_bytes) != 0)
H A Ddiffer.cc125 int width_bytes = width * bytes_per_pixel_; local
127 if (memcmp(prev_buffer, curr_buffer, width_bytes) != 0)
/external/qemu/distrib/sdl-1.2.15/src/video/riscos/
H A DSDL_riscosFullScreenVideo.c410 int width_bytes; local
417 width_bytes = rects->w;
423 width_bytes += extra;
425 if (width_bytes & 3) width_bytes += 4 - (width_bytes & 3);
426 src_skip_bytes = pitch - width_bytes;
428 RISCOS_Put32(to, (width_bytes >> 2), pitch, (int)rects->h, from, src_skip_bytes);
440 int width_bytes; local
447 width_bytes
[all...]
/external/chromium_org/pdf/
H A Ddraw_utils.cc190 base::CheckedNumeric<int32_t> width_bytes = src_rc.width(); local
191 width_bytes *= 4;
193 memcpy(dest_origin_pixel, src_origin_pixel, width_bytes.ValueOrDie());

Completed in 236 milliseconds