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

/vbox/src/VBox/Additions/linux/drm/
H A Dvbox_mode.c640 size_t cbMask)
645 memcpy(dst + cbMask, src, width * height * 4);
664 size_t cbData, cbMask; local
685 cbMask = ((width + 7) / 8 * height + 3) & ~3;
686 cbData = width * height * 4 + cbMask;
699 copy_cursor_image(src, dst, width, height, cbMask);
639 copy_cursor_image(u8 *src, u8 *dst, int width, int height, size_t cbMask) argument
/vbox/src/VBox/Main/src-client/
H A DConsoleVRDPServer.cpp2957 size_t cbMask = (((width + 7) / 8) * height + 3) & ~3; local
2960 size_t cbDstMask = alpha? 0: cbMask;
2984 memcpy(pu8Data, pu8Shape + cbMask, cbData);
/vbox/include/VBox/
H A DVMMDev.h401 size_t cbMask = (width + 7) / 8 * height; local
403 return RT_MAX(cbBase + ((cbMask + 3) & ~3) + cbArgb,

Completed in 62 milliseconds