/vbox/src/VBox/Additions/haiku/VBoxTray/ |
H A D | VBoxDisplay.cpp | 131 uint32_t cx, cy, cBits, iDisplay; local 132 int rc2 = VbglR3GetDisplayChangeRequest(&cx, &cy, &cBits, &iDisplay, NULL, NULL, NULL, NULL, true); 133 LogFlow(("rc2=%d screen %d size changed (%d, %d, %d)\n", rc2, iDisplay, cx, cy, cBits)); 142 mode.timing.h_display = cx; 145 mode.virtual_width = cx; 149 {0, cx, 0, 0, cBits * cx / 8, cy, 0, 0, cBits * cy / 8, 0}, 151 cx, cy, 0, 0, 0
|
/vbox/src/VBox/Additions/x11/x11include/mesa-7.2/src/mesa/math/ |
H A D | m_clip_tmp.h | 58 const GLfloat cx = from[0]; local 65 mask = (((cw < cx) << CLIP_RIGHT_SHIFT)); 66 mask |= (((cw < -cx) << CLIP_LEFT_SHIFT)); 73 if (-cx + cw < 0) mask |= CLIP_RIGHT_BIT; 74 if ( cx + cw < 0) mask |= CLIP_LEFT_BIT; 92 vProj[i][0] = cx * oow; 133 const GLfloat cx = from[0]; local 140 mask = (((cw < cx) << CLIP_RIGHT_SHIFT)); 141 mask |= (((cw < -cx) << CLIP_LEFT_SHIFT)); 148 if (-cx 184 const GLfloat cx = from[0], cy = from[1], cz = from[2]; local 217 const GLfloat cx = from[0], cy = from[1]; local [all...] |
/vbox/src/VBox/Debugger/ |
H A D | VBoxDbg.cpp | 192 * @param cx The width of the window the debugger is relative to. 195 DBGDECL(void) DBGGuiAdjustRelativePos(PDBGGUI pGui, int x, int y, unsigned cx, unsigned cy) argument 199 pGui->pVBoxDbgGui->adjustRelativePos(x, y, cx, cy);
|
H A D | VBoxDbgGui.cpp | 236 VBoxDbgGui::adjustRelativePos(int x, int y, unsigned cx, unsigned cy) argument 239 if (cx < 640) 240 cx = m_cx; 242 const bool fResize = cx != m_cx || cy != m_cy; 247 m_cx = cx;
|
/vbox/src/VBox/Main/src-all/ |
H A D | DisplayPNGUtil.cpp | 70 int DisplayMakePNG(uint8_t *pu8Data, uint32_t cx, uint32_t cy, argument 81 if (!fLimitSize || (cx < kMaxSizePNG && cy < kMaxSizePNG)) 85 cbBitmap = cx * 4 * cy; 86 cxBitmap = cx; 92 if (cx > cy) 95 cyBitmap = (kMaxSizePNG * cy) / cx; 100 cxBitmap = (kMaxSizePNG * cx) / cy; 113 int srcW = cx; 115 int iDeltaLine = cx * 4; 129 LogFlowFunc(("%dx%d -> %dx%d\n", cx, c [all...] |
/vbox/src/VBox/Additions/haiku/VBoxMouse/ |
H A D | VBoxMouse.cpp | 265 uint32_t cx, cy, fFeatures; local 283 rc = VbglR3GetMouseStatus(&fFeatures, &cx, &cy); 287 float x = cx * 1.0 / 65535; 290 _debugPrintf("VBoxMouse: at %d,%d %f,%f\n", cx, cy, x, y);
|
/vbox/src/VBox/Additions/WINNT/Graphics/Video/disp/xpdm/ |
H A D | VBoxDispVrdpBmp.h | 45 uint16_t cx; member in struct:_VRDPBCHASH
|
/vbox/src/VBox/Devices/PC/BIOS/ |
H A D | invop.c | 52 uint16_t cx; /* 832h */ member in struct:tag_ldall_286 101 parm [cx] nomemory modify nomemory; 114 "test cx, 1" \ 118 "test cx, 2" \
|
/vbox/src/VBox/Devices/PC/ipxe/src/arch/i386/firmware/pcbios/ |
H A D | bios_console.c | 69 int cx = ( params[1] - 1 ); local 72 if ( cx < 0 ) 73 cx = 0; 81 "d" ( ( cy << 8 ) | cx ) ); 183 "movw $0x0001, %%cx\n\t"
|
/vbox/src/VBox/Devices/PC/ipxe/src/arch/i386/include/ |
H A D | registers.h | 20 * This type encapsulates a 16-bit register such as %ax, %bx, %cx, 100 uint16_t cx; member in union:i386_regs::__anon15051
|
/vbox/src/VBox/Devices/PC/ipxe/src/interface/efi/ |
H A D | efi_console.c | 70 int cx = ( params[1] - 1 ); local 73 if ( cx < 0 ) 74 cx = 0; 78 conout->SetCursorPosition ( conout, cx, cy );
|
/vbox/src/VBox/Additions/x11/VBoxClient/ |
H A D | display.cpp | 49 unsigned cx; member in struct:screenInformation 148 static void updateScreenInformation(struct DISPLAYSTATE *pState, unsigned cx, unsigned cy, unsigned cBPP, unsigned iDisplay, argument 164 pState->paScreenInformation[iDisplay].cx = cx; 184 && pState->paScreenInformation[i].cx != 0 && pState->paScreenInformation[i].cy != 0) 185 paSizeHints[i] = (pState->paScreenInformation[i].cx & 0x8fff) << 16 | (pState->paScreenInformation[i].cy & 0x8fff); 186 else if (pState->paScreenInformation[i].cx != 0 && pState->paScreenInformation[i].cy != 0) 208 && pState->paScreenInformation[0].cx > 0 && pState->paScreenInformation[0].cy > 0) 211 pState->pcszXrandr, pState->paScreenInformation[0].cx, pState->paScreenInformation[0].cy); 279 unsigned cx local 307 uint32_t cx = 0, cy = 0, cBPP = 0, iDisplay = 0, x = 0, y = 0; local [all...] |
/vbox/src/VBox/Additions/x11/vboxmouse/ |
H A D | vboxmouse.c | 68 uint32_t cx, cy, fFeatures; local 80 && RT_SUCCESS(VbglR3GetMouseStatus(&fFeatures, &cx, &cy)) 86 cx = (cx * screenInfo.screens[0]->width) / 65535; 90 xf86PostMotionEvent(pInfo->dev, 1, 0, 2, cx, cy);
|
/vbox/src/VBox/Additions/common/VBoxGuestLib/ |
H A D | VBoxGuestR3LibVideo.cpp | 95 * @param cx Pointer width. 100 VBGLR3DECL(int) VbglR3SetPointerShape(uint32_t fFlags, uint32_t xHot, uint32_t yHot, uint32_t cx, uint32_t cy, const void *pvImg, size_t cbImg) argument 103 size_t cbReq = vmmdevGetMousePointerReqSize(cx, cy); 114 pReq->width = cx; 280 * @param cx the width of the mode being queried 284 VBGLR3DECL(bool) VbglR3HostLikesVideoMode(uint32_t cx, uint32_t cy, uint32_t cBits) argument 292 req.width = cx; 355 * @param cx mode width 362 VBGLR3DECL(int) VbglR3SaveVideoMode(unsigned cScreen, unsigned cx, unsigned cy, argument 378 RTStrPrintf(szModeParms, sizeof(szModeParms), "%ux%ux%u,%ux%u,%u", cx, c 456 unsigned cx, cy, cBits; local [all...] |
/vbox/src/VBox/Additions/common/VBoxVideo/ |
H A D | Modesetting.cpp | 130 * @param cx the horizontal panning offset 135 uint16_t fFlags, uint16_t cx, 156 VBoxVideoCmnPortWriteUshort(VBE_DISPI_IOPORT_DATA, cx); 311 p->cx = cWidth; 133 VBoxVideoSetModeRegisters(uint16_t cWidth, uint16_t cHeight, uint16_t cVirtWidth, uint16_t cBPP, uint16_t fFlags, uint16_t cx, uint16_t cy) argument
|
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/md/windows/ |
H A D | w16thred.c | 366 mov cx, cxByteCount local
|
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.16.0/ |
H A D | xf86int10.h | 35 int cx; member in struct:__anon6948
|
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.17.1/ |
H A D | xf86int10.h | 35 int cx; member in struct:__anon7259
|
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.3.0.0/ |
H A D | xf86int10.h | 35 int cx; member in struct:__anon7622
|
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.4.2/ |
H A D | xf86int10.h | 35 int cx; member in struct:__anon7987
|
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.5.3/ |
H A D | xf86int10.h | 35 int cx; member in struct:__anon8305
|
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.6.5/ |
H A D | xf86int10.h | 35 int cx; member in struct:__anon8618
|
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.7.7/ |
H A D | xf86int10.h | 35 int cx; member in struct:__anon8938
|
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.8.0/ |
H A D | xf86int10.h | 35 int cx; member in struct:__anon9255
|
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.9.0/ |
H A D | xf86int10.h | 35 int cx; member in struct:__anon9576
|