Searched defs:px (Results 1 - 11 of 11) sorted by relevance

/vbox/src/VBox/Devices/Storage/
H A Dswab.h38 static __inline__ __u16 __swab16p(const __u16 *px) argument
40 __u16 x = *px;
44 static __inline__ __u32 __swab32p(const __u32 *px) argument
46 __u32 x = *px;
51 static __inline__ __u64 __swab64p(const __u64 *px) argument
53 __u64 x = *px;
/vbox/src/VBox/Additions/common/VBoxGuestLib/
H A DVBoxGuestR3LibMouse.cpp40 * @param px Where to store the X co-ordinate.
43 VBGLR3DECL(int) VbglR3GetMouseStatus(uint32_t *pfFeatures, uint32_t *px, uint32_t *py) argument
55 if (px)
56 *px = Req.pointerXPos;
H A DMouse.cpp64 * @param px Where to store the X co-ordinate.
67 DECLVBGL(int) VbglGetMouseStatus(uint32_t *pfFeatures, uint32_t *px, argument
89 if (px)
90 *px = Req.pointerXPos;
H A DVBoxGuestR3LibVideo.cpp433 * @param px where to store the virtual screen X offset
440 unsigned *px, unsigned *py,
508 if (px)
509 *px = x;
437 VbglR3RetrieveVideoMode(unsigned cScreen, unsigned *pcx, unsigned *pcy, unsigned *pcBits, unsigned *px, unsigned *py, bool *pfEnabled) argument
/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));
61 if ( (pInfo->xOrigin <= *px && *px < pInfo->xOrigin + (int)pInfo->w)
65 *px -= pInfo->xOrigin;
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
964 if (*px < 0)
966 *px += *pw; /* Compute xRight which is also the new width. */
968 *pw = (*px < 0)? 0: *px;
970 *px = 0;
983 if (*px + *pw > cx)
985 *pw = cx > *px? cx - *px: 0;
/vbox/src/VBox/Additions/WINNT/VBoxTray/
H A DVBoxDnD.cpp1092 static LONG px = p.x; local
1093 if (px <= 0)
1094 px = 1;
1099 rc = mouseMove(px, py, 0 /* dwMouseInputFlags */);
/vbox/src/libs/xpcom18a4/nsprpub/pr/src/malloc/
H A Dprmalloc.c251 static struct pgfree *px; variable in typeref:struct:pgfree
610 if (!px)
611 px = (struct pgfree*)delay_free;
964 if (!px)
965 px = (struct pgfree*)_PR_UnlockedMalloc(sizeof *pt);
967 px->page = ptr;
968 px->end = tail;
969 px->size = l;
971 px->next = free_list.next;
972 px
[all...]
/vbox/src/VBox/ExtPacks/VNC/
H A DVBoxVNC.cpp703 uint16_t px = lsb << 8 | msb; local
705 r = (px >> 7) & 0xf8;
706 g = (px >> 2) & 0xf8;
707 b = (px << 3) & 0xf8;
712 uint16_t px = lsb << 8 | msb; local
714 r = (px >> 8) & 0xf8;
715 g = (px >> 3) & 0xfc;
716 b = (px << 3) & 0xf8;
/vbox/src/VBox/Devices/PC/ipxe/src/util/
H A Dnrv2b.c555 const unsigned char *px; local
570 px = bx;
584 do {} while (++p1 < px && *p1 == *++p2);
/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).
3816 * If the specified x value is less than any of the px,
3817 * the returned y value is equal to the py for the lowest px.
3818 * If the specified x value is greater than any of the 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)
3835 dx = x - px[ip];
3841 hx = px[ip];
3850 lx = px[i
3821 ar9003_hw_power_interpolate(int32_t x, int32_t *px, int32_t *py, uint16_t np) argument
[all...]

Completed in 148 milliseconds