Searched refs:width_bytes (Results 1 – 5 of 5) sorted by relevance
/external/mesa3d/src/egl/drivers/dri2/ |
D | platform_drm.c | 526 int x_bytes, width_bytes; in swrast_put_image2() local 543 width_bytes = width * (bpp >> 3); in swrast_put_image2() 554 memcpy(dst, src, width_bytes); in swrast_put_image2() 575 int x_bytes, width_bytes; in swrast_get_image() local 588 width_bytes = width * (bpp >> 3); in swrast_get_image() 591 stride = width_bytes; in swrast_get_image() 600 memcpy(dst, src, width_bytes); in swrast_get_image()
|
/external/webrtc/modules/desktop_capture/ |
D | desktop_capturer_differ_wrapper.cc | 37 const int width_bytes = width * DesktopFrame::kBytesPerPixel; in PartialBlockDifference() local 39 if (memcmp(old_buffer, new_buffer, width_bytes) != 0) { in PartialBlockDifference()
|
/external/libgav1/libgav1/src/dsp/arm/ |
D | intrapred_directional_neon.cc | 1173 const int width_bytes = width * sizeof(top[0]); in DirectionalIntraPredictorZone1_NEON() local 1176 memcpy(dst, top_ptr, width_bytes); in DirectionalIntraPredictorZone1_NEON() 1177 memcpy(dst + stride, top_ptr + 1, width_bytes); in DirectionalIntraPredictorZone1_NEON() 1178 memcpy(dst + 2 * stride, top_ptr + 2, width_bytes); in DirectionalIntraPredictorZone1_NEON() 1179 memcpy(dst + 3 * stride, top_ptr + 3, width_bytes); in DirectionalIntraPredictorZone1_NEON() 1438 const int width_bytes = width * sizeof(left[0]); in DirectionalIntraPredictorZone3_NEON() local 1442 memcpy(dst, left_ptr, width_bytes); in DirectionalIntraPredictorZone3_NEON() 1443 memcpy(dst + stride, left_ptr + 1, width_bytes); in DirectionalIntraPredictorZone3_NEON() 1444 memcpy(dst + 2 * stride, left_ptr + 2, width_bytes); in DirectionalIntraPredictorZone3_NEON() 1445 memcpy(dst + 3 * stride, left_ptr + 3, width_bytes); in DirectionalIntraPredictorZone3_NEON()
|
/external/crosvm/gpu_display/src/ |
D | lib.rs | 100 let width_bytes = width.checked_mul(self.bytes_per_pixel)?; in sub_region() localVariable 104 .checked_add(width_bytes)?; in sub_region()
|
/external/mesa3d/src/mesa/drivers/dri/i965/ |
D | intel_mipmap_tree.c | 2778 const unsigned width_bytes = _mesa_format_row_stride(mt->format, map->w); in intel_miptree_map_movntdqa() local 2780 map->stride = ALIGN(misalignment + width_bytes, 16); in intel_miptree_map_movntdqa() 2792 _mesa_streaming_load_memcpy(dst_ptr, src_ptr, width_bytes); in intel_miptree_map_movntdqa()
|