Home
last modified time | relevance | path

Searched refs:widthInBytes (Results 1 – 3 of 3) sorted by relevance

/external/mesa3d/src/mesa/swrast/
Ds_copypix.c452 GLuint pixelBytes, widthInBytes; in swrast_fast_copy_pixels() local
504 widthInBytes = width * pixelBytes; in swrast_fast_copy_pixels()
561 memmove(dstMap, srcMap, widthInBytes); in swrast_fast_copy_pixels()
/external/libvncserver/libvncserver/
Dmain.c360 int j,widthInBytes,bpp=screen->serverFormat.bitsPerPixel/8, in rfbDoCopyRegion() local
367 widthInBytes = (rect.x2-rect.x1)*bpp; in rfbDoCopyRegion()
372 memmove(out,in,widthInBytes); in rfbDoCopyRegion()
377 memmove(out,in,widthInBytes); in rfbDoCopyRegion()
/external/libvncserver/x11vnc/misc/enhanced_tightvnc_viewer/src/patches/
Dtight-vncviewer-full.patch6564 + int h, widthInBytes = width * Bpp;
6583 + if (widthInBytes > buflen || !buf) {
6587 + buflen = widthInBytes * 2;
6602 - int widthInBytes = width * myFormat.bitsPerPixel / 8;
6609 - memcpy(scr, buf, widthInBytes);
6610 - buf += widthInBytes;
6638 + memcpy(scr, buf, widthInBytes);
6717 + int widthInBytes = width * myFormat.bitsPerPixel / 8;
6728 + memcpy(scr, buf, widthInBytes);
6729 + buf += widthInBytes;
[all …]