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

/vbox/src/VBox/ValidationKit/testmanager/htdocs/css/
H A Dcommon.css59 margin: 0px 0 10px 0;
75 margin-bottom: 10px;
107 height: 92px;
115 height: 64px;
116 width: 64px;
122 height: 92px;
124 left: 118px;
134 right: 10px;
140 width: 110px;
[all...]
H A Ddetails.css60 border-spacing: 1px;
61 border-width: 1px;
75 padding-bottom: 3px;
76 padding-top: 3px;
77 padding-left: 2px;
78 padding-right: 2px;
79 border-width: 1px;
102 padding-bottom: 1px;
103 padding-top: 1px;
104 padding-left: 1px;
[all...]
H A Dtooltip.css36 border: 2px solid black;
37 padding-left: 2px;
38 padding-right: 2px;
39 padding-top: 2px;
40 padding-bottom: 2px
61 border-bottom: 1px solid #c8c8c8;
62 border-radius: 3px;
93 border: 1px dotted black;
H A Dgraphwiz.css47 padding-left: 3px;
48 padding-right: 3px;
49 padding-top: 3px;
50 padding-bottom: 3px;
51 margin-left: 1px;
52 margin-right: 1px;
53 margin-top: 3px;
54 margin-bottom: 3px;
/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/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/HostServices/SharedOpenGL/render/
H A Drenderspu_cocoa_helper.h55 void cocoaViewGetGeometry(NativeNSViewRef pView, int *px, int *py, int *pcx, int *pcy);
H A Drenderspu_cocoa_helper.m3058 void cocoaViewGetGeometry(NativeNSViewRef pView, int *px, int *py, int *pcx, int *pcy)
3060 COCOA_LOG_FLOW(("cocoaViewGetGeometry: pView=%p px=%p py=%p pcx=%p pcy=%p\n",
3061 (void *)pView, (void *)px, (void *)py, (void *)pcx, (void *)pcy));
3085 *px = frame.origin.x;
3091 COCOA_LOG_FLOW(("cocoaViewGetGeometry: returns *px=%d, *py=%d, *pcx=%d, *pcy=%d\n", *px, *py, *pcx, *pcy));
/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/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/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/VBox/Additions/x11/x11include/mesa-7.2/src/mesa/swrast/
H A Dswrast.h100 GLint px, GLint py,
/vbox/include/VBox/
H A DVBoxGuestLib.h403 DECLVBGL(int) VbglGetMouseStatus(uint32_t *pfFeatures, uint32_t *px, uint32_t *py);
468 VBGLR3DECL(int) VbglR3GetMouseStatus(uint32_t *pfFeatures, uint32_t *px, uint32_t *py);
510 unsigned *px, unsigned *py,
/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/Additions/x11/x11include/xorg-server-1.1.0/
H A DPs.h588 int px, int py);
/vbox/src/VBox/Additions/x11/x11include/xorg-server-1.0.1/
H A DPs.h588 int px, int py);
/vbox/src/VBox/Devices/Graphics/shaderlib/wine/include/
H A Dd3drm.h91 D3DVALUE px, D3DVALUE py, D3DVALUE pz, D3DVALUE nx, D3DVALUE ny, D3DVALUE nz,
230 D3DVALUE px, D3DVALUE py, D3DVALUE pz, D3DVALUE nx, D3DVALUE ny, D3DVALUE nz,
372 STDMETHOD(CreateShadow)(THIS_ IUnknown *object, IDirect3DRMLight *light, D3DVALUE px, D3DVALUE py, D3DVALUE pz,
H A Dd3drmobj.h2147 D3DVALUE px, D3DVALUE py, D3DVALUE pz, D3DVALUE nx, D3DVALUE ny, D3DVALUE nz) PURE;
2206 D3DVALUE px, D3DVALUE py, D3DVALUE pz, D3DVALUE nx, D3DVALUE ny, D3DVALUE nz) PURE;
2212 STDMETHOD(GetPlane)(THIS_ D3DVALUE *px, D3DVALUE *py, D3DVALUE *pz,
2214 STDMETHOD(SetPlane)(THIS_ D3DVALUE px, D3DVALUE py, D3DVALUE pz,
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/include/
H A Dd3drm.h80 STDMETHOD(CreateShadow)(THIS_ LPDIRECT3DRMVISUAL, LPDIRECT3DRMLIGHT, D3DVALUE px, D3DVALUE py, D3DVALUE pz,
215 STDMETHOD(CreateShadow)(THIS_ LPDIRECT3DRMVISUAL, LPDIRECT3DRMLIGHT, D3DVALUE px, D3DVALUE py, D3DVALUE pz,
352 STDMETHOD(CreateShadow)(THIS_ LPUNKNOWN, LPDIRECT3DRMLIGHT, D3DVALUE px, D3DVALUE py, D3DVALUE pz,
H A Dd3drmobj.h2109 D3DVALUE px, D3DVALUE py, D3DVALUE pz, D3DVALUE nx, D3DVALUE ny, D3DVALUE nz) PURE;
2168 D3DVALUE px, D3DVALUE py, D3DVALUE pz, D3DVALUE nx, D3DVALUE ny, D3DVALUE nz) PURE;
2174 STDMETHOD(GetPlane)(THIS_ LPD3DVALUE px, LPD3DVALUE py, LPD3DVALUE pz,
2176 STDMETHOD(SetPlane)(THIS_ D3DVALUE px, D3DVALUE py, D3DVALUE pz,
/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 164 milliseconds