Lines Matching refs:width
19 int i,j,k,l,width,height,paddedWidth;
53 /* get width & height */
54 sscanf(buffer,"%d %d",&width,&height);
55 rfbLog("Got width %d and height %d.\n",width,height);
59 width=1+((width-1)|7);
62 paddedWidth = width;
63 if(width&3)
64 paddedWidth+=4-(width&3);
82 fread(rfbScreen->frameBuffer,width*bitsPerPixelInFile/8,height,in);
98 for(i=width-1;i>=0;i--)
101 rfbScreen->frameBuffer[(j*width+i)*3+k];
102 for(i=width*4;i<paddedWidth*4;i++)
111 for(i=width-1;i>=0;i-=8) {
112 l=(unsigned char)rfbScreen->frameBuffer[(j*width+i)/8];