Searched defs:cbAndRow (Results 1 - 1 of 1) sorted by relevance

/vbox/src/VBox/Main/src-client/
H A DConsoleVRDPServer.cpp206 const uint32_t cbAndRow = (width + 7) / 8; local
207 const uint8_t maskLastByte = (uint8_t)( 0xFF << (cbAndRow * 8 - width) );
209 Assert(cbAndRow > 0);
214 for (y = 0; y < height && ySkipAnd == ~(uint32_t)0; y++, pu8And += cbAndRow)
217 for (x = 0; x < cbAndRow - 1; x++)
229 if ((pu8And[cbAndRow - 1] & maskLastByte) != maskLastByte)
252 for (y = ySkipAnd; y < height; y++, pu8And += cbAndRow)

Completed in 58 milliseconds