Searched defs:py (Results 1 - 8 of 8) sorted by relevance

/vbox/src/VBox/Additions/common/VBoxGuestLib/
H A DVBoxGuestR3LibMouse.cpp41 * @param py Where to store the Y co-ordinate.
43 VBGLR3DECL(int) VbglR3GetMouseStatus(uint32_t *pfFeatures, uint32_t *px, uint32_t *py) argument
57 if (py)
58 *py = Req.pointerYPos;
H A DMouse.cpp65 * @param py Where to store the Y co-ordinate.
68 uint32_t *py)
91 if (py)
92 *py = Req.pointerYPos;
67 VbglGetMouseStatus(uint32_t *pfFeatures, uint32_t *px, uint32_t *py) argument
H A DVBoxGuestR3LibVideo.cpp434 * @param py where to store the virtual screen Y offset
440 unsigned *px, unsigned *py,
510 if (py)
511 *py = y;
437 VbglR3RetrieveVideoMode(unsigned cScreen, unsigned *pcx, unsigned *pcy, unsigned *pcBits, unsigned *px, unsigned *py, bool *pfEnabled) argument
/vbox/src/VBox/ValidationKit/testanalysis/
H A Dtst-a1.py43 from testanalysis import reader ## @todo fix testanalysis/__init__.py. namespace
/vbox/src/VBox/Main/src-client/
H A DDisplayImplLegacy.cpp53 static unsigned mapCoordsToScreen(DISPLAYFBINFO *pInfos, unsigned cInfos, int *px, int *py, int *pw, int *ph) argument
57 LogSunlover(("mapCoordsToScreen: %d,%d %dx%d\n", *px, *py, *pw, *ph));
62 && (pInfo->yOrigin <= *py && *py < pInfo->yOrigin + (int)pInfo->h))
66 *py -= pInfo->yOrigin;
67 LogSunlover((" -> %d,%d", *px, *py));
H A DDisplayImpl.cpp961 static void i_checkCoordBounds(int *px, int *py, int *pw, int *ph, int cx, int cy) argument
973 if (*py < 0)
975 *py += *ph; /* Compute xBottom, which is also the new height. */
977 *ph = (*py < 0)? 0: *py;
979 *py = 0;
988 if (*py + *ph > cy)
990 *ph = cy > *py? cy - *py: 0;
/vbox/src/VBox/Additions/WINNT/VBoxTray/
H A DVBoxDnD.cpp1095 static LONG py = p.y; local
1096 if (py <= 0)
1097 py = 1;
1099 rc = mouseMove(px, py, 0 /* dwMouseInputFlags */);
/vbox/src/VBox/Devices/PC/ipxe/src/drivers/net/ath/ath9k/
H A Dath9k_ar9003_eeprom.c71 int32_t *px, int32_t *py, uint16_t np);
3814 * from the np ordered pairs of data (px,py).
3817 * the returned y value is equal to the py for the lowest px.
3819 * the returned y value is equal to the py for the highest px.
3822 int32_t *px, int32_t *py, uint16_t np)
3842 hy = py[ip];
3851 ly = py[ip];
3821 ar9003_hw_power_interpolate(int32_t x, int32_t *px, int32_t *py, uint16_t np) argument

Completed in 89 milliseconds