Home
last modified time | relevance | path

Searched refs:widthBytesLine (Results 1 – 5 of 5) sorted by relevance

/OK3568_Linux_fs/external/xserver/Xext/
H A Dxace.c230 long widthBytesLine, in XaceCensorImage() argument
282 widthBytesLine, (void *) pBuf); in XaceCensorImage()
303 memset(pBuf, 0, (int) (widthBytesLine * h)); in XaceCensorImage()
H A DpanoramiXprocs.c1953 long widthBytesLine, length; in PanoramiXGetImage() local
2028 widthBytesLine = PixmapBytePad(w, pDraw->depth); in PanoramiXGetImage()
2029 length = widthBytesLine * h; in PanoramiXGetImage()
2033 widthBytesLine = BitmapBytePad(w); in PanoramiXGetImage()
2036 length = widthBytesLine * h * Ones(planemask & (plane | (plane - 1))); in PanoramiXGetImage()
2042 if (widthBytesLine == 0 || h == 0) in PanoramiXGetImage()
2044 else if (widthBytesLine >= XINERAMA_IMAGE_BUFSIZE) in PanoramiXGetImage()
2047 linesPerBuf = XINERAMA_IMAGE_BUFSIZE / widthBytesLine; in PanoramiXGetImage()
2051 if (!(pBuf = xallocarray(linesPerBuf, widthBytesLine))) in PanoramiXGetImage()
2065 memset(pBuf, 0, nlines * widthBytesLine); in PanoramiXGetImage()
[all …]
H A Dxace.h103 long widthBytesLine,
H A Dshm.c791 long lenPer = 0, length, widthBytesLine; in ProcPanoramiXShmGetImage() local
848 widthBytesLine = PixmapBytePad(w, pDraw->depth); in ProcPanoramiXShmGetImage()
849 length = widthBytesLine * h; in ProcPanoramiXShmGetImage()
852 widthBytesLine = PixmapBytePad(w, 1); in ProcPanoramiXShmGetImage()
853 lenPer = widthBytesLine * h; in ProcPanoramiXShmGetImage()
895 widthBytesLine, isRoot); in ProcPanoramiXShmGetImage()
904 widthBytesLine, isRoot); in ProcPanoramiXShmGetImage()
/OK3568_Linux_fs/external/xserver/dix/
H A Ddispatch.c2080 long widthBytesLine, length; in DoGetImage() local
2157 widthBytesLine = PixmapBytePad(width, pDraw->depth); in DoGetImage()
2158 length = widthBytesLine * height; in DoGetImage()
2162 widthBytesLine = BitmapBytePad(width); in DoGetImage()
2165 length = widthBytesLine * height * in DoGetImage()
2173 if (widthBytesLine == 0 || height == 0) in DoGetImage()
2175 else if (widthBytesLine >= IMAGE_BUFSIZE) in DoGetImage()
2178 linesPerBuf = IMAGE_BUFSIZE / widthBytesLine; in DoGetImage()
2182 length = linesPerBuf * widthBytesLine; in DoGetImage()
2188 length -= widthBytesLine; in DoGetImage()
[all …]