Searched refs:cy (Results 1 - 25 of 104) sorted by relevance

12345

/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/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/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/ValidationKit/testmanager/webui/
H A Dwuihlpgraphbase.py102 def setHeight(self, cy):
104 self._cyGraph = 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/x11include/mesa-7.2/src/mesa/swrast/
H A Ds_aatritemp.h234 /* (cx,cy) = center of fragment */
235 const GLfloat cx = ix + 0.5F, cy = iy + 0.5F;
243 array->z[count] = (GLuint) solve_plane(cx, cy, zPlane);
246 array->rgba[count][RCOMP] = solve_plane_chan(cx, cy, rPlane);
247 array->rgba[count][GCOMP] = solve_plane_chan(cx, cy, gPlane);
248 array->rgba[count][BCOMP] = solve_plane_chan(cx, cy, bPlane);
249 array->rgba[count][ACOMP] = solve_plane_chan(cx, cy, aPlane);
252 array->index[count] = (GLint) solve_plane(cx, cy, iPlane);
303 /* (cx,cy) = center of fragment */
304 const GLfloat cx = ix + 0.5F, cy
[all...]
/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/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 Dvboxvideo.c321 pVBox->pScreens[0].aScreenLocation.cy = pMode->VDisplay;
375 pVBox->FBSize.cy = ch;
407 && pVBox->pScreens[cDisplay].aScreenLocation.cy)
410 pVBox->pScreens[cDisplay].aScreenLocation.cy,
448 pVBox->pScreens[cDisplay].aScreenLocation.cy = adjusted_mode->VDisplay;
581 pVBox->pScreens[iScreen].aPreferredSize.cy, TRUE, FALSE);
1061 unsigned cy = 0; local
1072 && pVBox->pScreens[i].paCrtcs->y + pVBox->pScreens[i].aPreferredSize.cy < VBOX_VIDEO_MAX_VIRTUAL)
1075 cy = max(cy, pVBo
[all...]
/vbox/src/VBox/Debugger/
H A DVBoxDbgGui.h127 * @param cy The height of the window the debugger is relative to.
129 void adjustRelativePos(int x, int y, unsigned cx, unsigned 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/Devices/Graphics/
H A DDevVGA-SVGA.h40 DECLCALLBACK(void) vmsvgaPortSetViewPort(PPDMIDISPLAYPORT pInterface, uint32_t uScreenId, uint32_t x, uint32_t y, uint32_t cx, uint32_t cy);
H A DDevVGA-SVGA3d-shared.cpp143 rectClient.bottom = pCS->cy;
146 pCS->cy = rectClient.bottom - rectClient.top;
160 pCS->cy,
170 pCS->y, pCS->cx, pCS->cy,pCS->hwndParent, pCS->hMenu, pCS->hInstance, GetLastError()));
197 rectClient.bottom = pCS->cy;
200 pCS->cy = rectClient.bottom - rectClient.top;
202 BOOL ret = SetWindowPos(hwnd, 0, pCS->x, pCS->y, pCS->cx, pCS->cy, SWP_NOZORDER | SWP_NOMOVE);
/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/WINNT/Graphics/Video/disp/xpdm/
H A DVBoxDispVrdpBmp.h48 uint16_t cy; member in struct:_VRDPBCHASH
/vbox/include/VBox/
H A Ddbggui.h55 DECLCALLBACKMEMBER(void, pfnAdjustRelativePos)(PDBGGUI pGui, int x, int y, unsigned cx, unsigned cy);
128 * @param cy The height of the window the debugger is relative to.
130 DBGDECL(void) DBGGuiAdjustRelativePos(PDBGGUI pGui, int x, int y, unsigned cx, unsigned cy);
/vbox/src/VBox/RDP/client-1.8.3/
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
H A Dproto.h56 uint8 *cache_get_desktop(uint32 offset, int cx, int cy, int bytes_per_pixel);
57 void cache_put_desktop(uint32 offset, int cx, int cy, int scanline, int bytes_per_pixel,
287 void ui_paint_bitmap(int x, int y, int cx, int cy, int width, int height, uint8 * data);
299 void ui_set_clip(int x, int y, int cx, int cy);
302 void ui_destblt(uint8 opcode, int x, int y, int cx, int cy);
303 void ui_patblt(uint8 opcode, int x, int y, int cx, int cy, BRUSH * brush, int bgcolour,
305 void ui_screenblt(uint8 opcode, int x, int y, int cx, int cy, int srcx, int srcy);
306 void ui_memblt(uint8 opcode, int x, int y, int cx, int cy, RD_HBITMAP src, int srcx, int srcy);
307 void ui_triblt(uint8 opcode, int x, int y, int cx, int cy, RD_HBITMAP src, int srcx, int srcy,
310 void ui_rect(int x, int y, int cx, int cy, in
[all...]
H A Dxwin.c234 #define FILL_RECTANGLE(x,y,cx,cy)\
236 XFillRectangle(g_display, g_wnd, g_gc, x, y, cx, cy); \
237 ON_ALL_SEAMLESS_WINDOWS(XFillRectangle, (g_display, sw->wnd, g_gc, x-sw->xoffset, y-sw->yoffset, cx, cy)); \
239 XFillRectangle(g_display, g_backstore, g_gc, x, y, cx, cy); \
242 #define FILL_RECTANGLE_BACKSTORE(x,y,cx,cy)\
244 XFillRectangle(g_display, g_ownbackstore ? g_backstore : g_wnd, g_gc, x, y, cx, cy); \
255 #define DRAW_ELLIPSE(x,y,cx,cy,m)\
260 XDrawArc(g_display, g_wnd, g_gc, x, y, cx, cy, 0, 360*64); \
261 ON_ALL_SEAMLESS_WINDOWS(XDrawArc, (g_display, sw->wnd, g_gc, x-sw->xoffset, y-sw->yoffset, cx, cy, 0, 360*64)); \
263 XDrawArc(g_display, g_backstore, g_gc, x, y, cx, cy,
1950 uint32 x, y, cx, cy; local
2791 ui_paint_bitmap(int x, int y, int cx, int cy, int width, int height, uint8 * data) argument
3157 ui_set_clip(int x, int y, int cx, int cy) argument
3183 ui_destblt(uint8 opcode, int x, int y, int cx, int cy) argument
3201 ui_patblt(uint8 opcode, int x, int y, int cx, int cy, BRUSH * brush, int bgcolour, int fgcolour) argument
3287 ui_screenblt(uint8 opcode, int x, int y, int cx, int cy, int srcx, int srcy) argument
3311 ui_memblt(uint8 opcode, int x, int y, int cx, int cy, RD_HBITMAP src, int srcx, int srcy) argument
3326 ui_triblt(uint8 opcode, int x, int y, int cx, int cy, RD_HBITMAP src, int srcx, int srcy, BRUSH * brush, int bgcolour, int fgcolour) argument
3375 ui_rect( int x, int y, int cx, int cy, int colour) argument
3501 ui_ellipse(uint8 opcode, uint8 fillmode, int x, int y, int cx, int cy, BRUSH * brush, int bgcolour, int fgcolour) argument
3588 ui_draw_glyph(int mixmode, int x, int y, int cx, int cy, RD_HGLYPH glyph, int srcx, int srcy, int bgcolour, int fgcolour) argument
3767 ui_desktop_save(uint32 offset, int x, int y, int cx, int cy) argument
3793 ui_desktop_restore(uint32 offset, int x, int y, int cx, int cy) argument
[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/Devices/Graphics/shaderlib/wine/include/
H A Dcommoncontrols.idl58 int cy;
149 [out] int* cy);
153 [in] int cy);
/vbox/src/VBox/HostServices/SharedOpenGL/render/
H A Drenderspu_cocoa_helper.h54 void cocoaViewSetSize(NativeNSViewRef pView, int cx, int cy);
/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/mp/wddm/
H A DVBoxMPVModes.cpp126 if (!pResolution->cx || !pResolution->cy)
184 rc = VBoxMPCmnRegSetDword(Registry, L"CustomYRes", pResolution->cy);
196 rc = VBoxMPCmnRegSetDword(Registry, keyname, pResolution->cy);
209 if (!pResolution->cx || !pResolution->cy)
234 || pResolution->cy > 0x7fff)
239 uint32_t cbSurfMem = pResolution->cx * pResolution->cy * 4;
243 if (!VBoxLikesVideoMode(u32Target, pResolution->cx, pResolution->cy, 32))
351 CustomYRes = pExt->aTargets[u32Target].Size.cy ? pExt->aTargets[u32Target].Size.cy : 600;

Completed in 101 milliseconds

12345