Searched defs:cy (Results 1 - 25 of 42) sorted by relevance

12

/vbox/src/VBox/Additions/haiku/VBoxTray/
H A DVBoxDisplay.cpp131 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));
143 mode.timing.v_display = cy;
146 mode.virtual_height = cy;
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 Dm_clip_tmp.h59 const GLfloat cy = from[1]; local
67 mask |= (((cw < cy) << CLIP_TOP_SHIFT));
68 mask |= (((cw < -cy) << CLIP_BOTTOM_SHIFT));
75 if (-cy + cw < 0) mask |= CLIP_TOP_BIT;
76 if ( cy + cw < 0) mask |= CLIP_BOTTOM_BIT;
93 vProj[i][1] = cy * oow;
134 const GLfloat cy = from[1]; local
142 mask |= (((cw < cy) << CLIP_TOP_SHIFT));
143 mask |= (((cw < -cy) << CLIP_BOTTOM_SHIFT));
150 if (-cy
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 DVBoxDbg.cpp193 * @param cy The height 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 DVBoxDbgGui.cpp236 VBoxDbgGui::adjustRelativePos(int x, int y, unsigned cx, unsigned cy) argument
242 const bool fResize = cx != m_cx || cy != m_cy;
248 m_cy = cy;
/vbox/src/VBox/Main/src-all/
H A DDisplayPNGUtil.cpp70 int DisplayMakePNG(uint8_t *pu8Data, uint32_t cx, uint32_t cy, argument
81 if (!fLimitSize || (cx < kMaxSizePNG && cy < kMaxSizePNG))
85 cbBitmap = cx * 4 * cy;
87 cyBitmap = cy;
92 if (cx > cy)
95 cyBitmap = (kMaxSizePNG * cy) / cx;
100 cxBitmap = (kMaxSizePNG * cx) / cy;
114 int srcH = cy;
129 LogFlowFunc(("%dx%d -> %dx%d\n", cx, cy, cxBitmap, cyBitmap));
/vbox/src/VBox/Additions/haiku/VBoxMouse/
H A DVBoxMouse.cpp265 uint32_t cx, cy, fFeatures; local
283 rc = VbglR3GetMouseStatus(&fFeatures, &cx, &cy);
288 float y = cy * 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 DVBoxDispVrdpBmp.h48 uint16_t cy; member in struct:_VRDPBCHASH
/vbox/src/VBox/Devices/PC/ipxe/src/arch/i386/firmware/pcbios/
H A Dbios_console.c70 int cy = ( params[0] - 1 ); local
74 if ( cy < 0 )
75 cy = 0;
81 "d" ( ( cy << 8 ) | cx ) );
/vbox/src/VBox/Devices/PC/ipxe/src/interface/efi/
H A Defi_console.c71 int cy = ( params[0] - 1 ); local
75 if ( cy < 0 )
76 cy = 0;
78 conout->SetCursorPosition ( conout, cx, cy );
/vbox/src/VBox/Additions/x11/VBoxClient/
H A Ddisplay.cpp50 unsigned cy; member in struct:screenInformation
148 static void updateScreenInformation(struct DISPLAYSTATE *pState, unsigned cx, unsigned cy, unsigned cBPP, unsigned iDisplay, argument
165 pState->paScreenInformation[iDisplay].cy = cy;
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 = 0, cy 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 Dvboxmouse.c68 uint32_t cx, cy, fFeatures; local
80 && RT_SUCCESS(VbglR3GetMouseStatus(&fFeatures, &cx, &cy))
87 cy = (cy * screenInfo.screens[0]->height) / 65535;
90 xf86PostMotionEvent(pInfo->dev, 1, 0, 2, cx, cy);
/vbox/src/VBox/Additions/common/VBoxGuestLib/
H A DVBoxGuestR3LibVideo.cpp96 * @param cy Pointer height.
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);
115 pReq->height = cy;
281 * @param cy the height of the mode being queried
284 VBGLR3DECL(bool) VbglR3HostLikesVideoMode(uint32_t cx, uint32_t cy, uint32_t cBits) argument
293 req.height = cy;
356 * @param cy mode height
362 VBGLR3DECL(int) VbglR3SaveVideoMode(unsigned cScreen, unsigned cx, unsigned cy, argument
378 RTStrPrintf(szModeParms, sizeof(szModeParms), "%ux%ux%u,%ux%u,%u", cx, cy,
456 unsigned cx, cy, cBits; local
[all...]
/vbox/src/VBox/Additions/common/VBoxVideo/
H A DModesetting.cpp131 * @param cy the vertical panning offset
136 uint16_t cy)
159 VBoxVideoCmnPortWriteUshort(VBE_DISPI_IOPORT_DATA, cy);
312 p->cy = cHeight;
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/VBox/RDP/client-1.8.3/
H A Dcache.c362 cache_get_desktop(uint32 offset, int cx, int cy, int bytes_per_pixel) argument
364 int length = cx * cy * bytes_per_pixel;
380 cache_put_desktop(uint32 offset, int cx, int cy, int scanline, int bytes_per_pixel, uint8 * data) argument
382 int length = cx * cy * bytes_per_pixel;
390 while (cy--)
H A Dorders.h72 sint16 cy; member in struct:_DESTBLT_ORDER
83 sint16 cy; member in struct:_PATBLT_ORDER
97 sint16 cy; member in struct:_SCREENBLT_ORDER
124 sint16 cy; member in struct:_RECT_ORDER
149 sint16 cy; member in struct:_TRIBLT_ORDER
169 sint16 cy; member in struct:_MEMBLT_ORDER
/vbox/src/VBox/Additions/x11/vboxvideo/
H A Dgetmode.c61 * cx and cy.
64 const char *pszName, unsigned cx, unsigned cy)
73 sprintf(szName, "%ux%u", cx, cy);
76 TRACE_LOG("pszName=%s, cx=%u, cy=%u\n", pszName, cx, cy);
93 m->VDisplay = cy;
135 unsigned cx = 0, cy = 0, cIndex = 0; local
149 if (sscanf(pScrn->display->modes[i], "%ux%u", &cx, &cy) == 2)
152 vboxFillDisplayMode(pScrn, pMode, pScrn->display->modes[i], cx, cy);
169 pVBox->pScreens[i].aPreferredSize.cy
63 vboxFillDisplayMode(ScrnInfoPtr pScrn, DisplayModePtr m, const char *pszName, unsigned cx, unsigned cy) argument
[all...]
H A Dpointer.c365 unsigned short cx, cy; local
416 for (cy = 0; cy < h; cy++)
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/wine/
H A Dwindef16.h135 INT16 cy; member in struct:__anon14241
/vbox/src/VBox/GuestHost/OpenGL/include/
H A Dcr_vreg.h136 int32_t cy = pRect->yBottom - pRect->yTop; local
140 pRect->yBottom = cy + y;
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/include/wine/
H A Dwindef16.h135 INT16 cy; member in struct:__anon1565
/vbox/src/VBox/Devices/Graphics/
H A DDevVGA.h306 uint32_t cy; member in struct:__anon13211::__anon13212
692 uint32_t cy, uint32_t cBPP,
H A DDevVGA-SVGA.cpp515 * @param cy The height of the new viewport rectangle
518 DECLCALLBACK(void) vmsvgaPortSetViewPort(PPDMIDISPLAYPORT pInterface, uint32_t uScreenId, uint32_t x, uint32_t y, uint32_t cx, uint32_t cy) argument
522 Log(("vmsvgaPortSetViewPort: screen %d (%d,%d)(%d,%d)\n", uScreenId, x, y, cx, cy));
527 pThis->svga.viewport.cy = RT_MIN(cy, (uint32_t)pThis->svga.uHeight);
583 *pu32 = pThis->pDrv->cy;
761 *pu32 = RT_MAX(0x100000, (uint32_t)pThis->pDrv->cy * pThis->pDrv->cbScanline);
764 Log(("h=%d w=%d bpp=%d\n", pThis->pDrv->cy, pThis->pDrv->cx, pThis->pDrv->cBits));
1006 && pThis->svga.viewport.cy == 0)
1009 pThis->svga.viewport.cy
[all...]
H A DDevVGA_VBVA.cpp2506 LogRelFlowFunc(("VBVA_REPORT_INPUT_MAPPING: x=%u, y=%u, cx=%u, cy=%u\n", (unsigned)pReport->x, (unsigned)pReport->y,
2507 (unsigned)pReport->cx, (unsigned)pReport->cy));
2508 pVGAState->pDrv->pfnVBVAInputMappingUpdate(pVGAState->pDrv, pReport->x, pReport->y, pReport->cx, pReport->cy);
2624 static int vbvaSendModeHintWorker(PVGASTATE pThis, uint32_t cx, uint32_t cy, argument
2637 pCtx->aModeHints[iDisplay].cy = cy;
2651 uint32_t cy, uint32_t cBPP,
2662 rc = vbvaSendModeHintWorker(pThis, cx, cy, cBPP, iDisplay, dx, dy, fEnabled,
2650 vbvaPortSendModeHint(PPDMIDISPLAYPORT pInterface, uint32_t cx, uint32_t cy, uint32_t cBPP, uint32_t iDisplay, uint32_t dx, uint32_t dy, uint32_t fEnabled, uint32_t fNotifyGuest) argument
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/
H A Dwindef.h359 LONG cy; member in struct:tagSIZE
/vbox/src/VBox/Devices/VMMDev/
H A DVMMDev.cpp3082 vmmdevIPort_RequestDisplayChange(PPDMIVMMDEVPORT pInterface, uint32_t cx, uint32_t cy, uint32_t cBits, uint32_t idxDisplay, argument
3096 && (!cy || pRequest->lastReadDisplayChangeRequest.yres == cy)
3103 if (!cx && !cy && !cBits)
3109 Log3(("vmmdevIPort_RequestDisplayChange: same=%d. new: cx=%d, cy=%d, cBits=%d, idxDisplay=%d.\
3110 old: cx=%d, cy=%d, cBits=%d, idxDisplay=%d. \n \
3112 fSameResolution, cx, cy, cBits, idxDisplay, pRequest->lastReadDisplayChangeRequest.xres,
3119 pRequest->displayChangeRequest.yres = cy;
3132 cx, cy, cBits, xOrigin, yOrigin, fEnabled, fChangeOrigin, idxDisplay));
3549 /*cx=*/0, /*cy
[all...]

Completed in 140 milliseconds

12