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

/vbox/src/VBox/Frontends/VirtualBox/src/runtime/
H A DUIMultiScreenLayout.cpp232 quint64 usedBits = memoryRequirements(tmpMap); local
233 fSuccess = availBits >= usedBits;
238 msgCenter().cannotSwitchScreenInSeamless((((usedBits + 7) / 8 + _1M - 1) / _1M) * _1M);
240 fSuccess = msgCenter().cannotSwitchScreenInFullscreen((((usedBits + 7) / 8 + _1M - 1) / _1M) * _1M);
292 quint64 usedBits = 0; local
303 usedBits += screen.width() * /* display width */
308 usedBits += 4096 * 8; /* adapter info */
309 return usedBits;
/vbox/src/VBox/Frontends/VirtualBox/src/runtime/seamless/
H A DUIMachineLogicSeamless.cpp71 quint64 usedBits = m_pScreenLayout->memoryRequirements(); local
72 if (availBits < usedBits)
75 (((usedBits + 7) / 8 + _1M - 1) / _1M) * _1M);
/vbox/src/VBox/Frontends/VirtualBox/src/runtime/fullscreen/
H A DUIMachineLogicFullscreen.cpp73 quint64 usedBits = m_pScreenLayout->memoryRequirements(); local
74 if (availBits < usedBits)
76 if (!msgCenter().cannotEnterFullscreenMode(0, 0, 0, (((usedBits + 7) / 8 + _1M - 1) / _1M) * _1M))

Completed in 45 milliseconds