Searched defs:dc (Results 1 - 16 of 16) sorted by relevance

/vbox/src/VBox/Additions/WINNT/Graphics/Wine_new/d3d9/
H A Dsurface.c332 static HRESULT WINAPI d3d9_surface_GetDC(IDirect3DSurface9 *iface, HDC *dc) argument
337 TRACE("iface %p, dc %p.\n", iface, dc);
347 hr = wined3d_surface_getdc(surface->wined3d_surface, dc);
353 static HRESULT WINAPI d3d9_surface_ReleaseDC(IDirect3DSurface9 *iface, HDC dc) argument
358 TRACE("iface %p, dc %p.\n", iface, dc);
361 hr = wined3d_surface_releasedc(surface->wined3d_surface, dc);
/vbox/src/VBox/Devices/EFI/Firmware/StdLib/PosixLib/Glob/
H A Dglob.c727 Char *dc; local
756 for (sc = (u_char *) dp->FileName, dc = pathend;
757 dc <= pathlim && (*dc++ = *sc++) != EOS;)
763 if (dc > pathlim && *pathlim != EOS) {
783 error = glob2(pathbuf, --dc, pathlim, restpattern, pglob,
1009 char *dc; local
1017 for (dc = buf; len && (*dc++ = *str++) != EOS; len--)
/vbox/src/VBox/Devices/PC/
H A DDevDMA.cpp211 static void dmaClear(DMAControl *dc) argument
213 dc->u8Command = 0;
214 dc->u8Status = 0;
215 dc->u8Temp = 0;
216 dc->u8ModeCtr = 0;
217 dc->fHiByte = false;
218 dc->u8Mask = ~0;
222 static inline bool dmaReadBytePtr(DMAControl *dc) argument
226 bHighByte = !!dc->fHiByte;
227 dc
237 DMAControl *dc = (DMAControl *)pvUser; local
281 DMAControl *dc = (DMAControl *)pvUser; local
313 DMAControl *dc = (DMAControl *)pvUser; local
392 DMAControl *dc = (DMAControl *)pvUser; local
446 DMAControl *dc = (DMAControl *)pvUser; local
472 DMAControl *dc = (DMAControl *)pvUser; local
511 DMAControl *dc = (DMAControl *)pvUser; local
527 DMAControl *dc = (DMAControl *)pvUser; local
548 DMAControl *dc = &pThis->DMAC[ctlidx]; local
589 DMAControl *dc; local
672 DMAControl *dc = &pThis->DMAC[DMACH2C(uChannel)]; local
708 DMAControl *dc = &pThis->DMAC[DMACH2C(uChannel)]; local
752 DMAControl *dc = &pThis->DMAC[DMACH2C(uChannel)]; local
828 dmaSaveController(PSSMHANDLE pSSMHandle, DMAControl *dc) argument
856 dmaLoadController(PSSMHANDLE pSSMHandle, DMAControl *dc, int version) argument
[all...]
/vbox/src/VBox/Additions/WINNT/Graphics/Wine_new/wined3d/
H A Dswapchain.c221 TRACE("Destroying backup wined3d window %p, dc %p.\n", swapchain->backup_wnd, swapchain->backup_dc);
409 HDC dc; local
417 dc = GetDC(swapchain->win_handle);
419 dc = GetDC(swapchain->device_window);
421 SetDeviceGammaRamp(dc, (void *)ramp);
423 ReleaseDC(swapchain->win_handle, dc);
425 ReleaseDC(swapchain->device_window, dc);
434 HDC dc; local
439 dc = GetDC(swapchain->win_handle);
441 dc
[all...]
H A Dcontext.c736 static BOOL context_set_pixel_format(const struct wined3d_gl_info *gl_info, HDC dc, int format) argument
738 int current = GetPixelFormat(dc);
744 if (!SetPixelFormat(dc, format, NULL))
746 /* This may also happen if the dc belongs to a destroyed window. */
748 format, dc, GetLastError());
760 if (!GL_EXTCALL(wglSetPixelFormatWINE(dc, format)))
763 format, dc);
774 format, dc, current);
798 HDC dc; local
812 * a swapchain, so we can't use the swapchain to get a backup dc
853 context_restore_gl_context(const struct wined3d_gl_info *gl_info, HDC dc, HGLRC gl_ctx, int pf) argument
[all...]
H A Dutils.c3774 void wined3d_release_dc(HWND window, HDC dc) argument
3782 if (WindowFromDC(dc) != window)
3783 WARN("DC %p does not belong to window %p.\n", dc, window);
3784 else if (!ReleaseDC(window, dc))
3785 ERR("Failed to release device context %p, last error %#x.\n", dc, GetLastError());
H A Ddevice.c5491 struct wined3d_surface * CDECL wined3d_device_get_surface_from_dc(const struct wined3d_device *device, HDC dc) argument
5495 TRACE("device %p, dc %p.\n", device, dc);
5497 if (!dc)
5506 if (s->hDC == dc)
5508 TRACE("Found surface %p for dc %p.\n", s, dc);
H A Ddirectx.c291 HDC dc; member in struct:wined3d_fake_gl_ctx
311 wined3d_release_dc(ctx->wnd, ctx->dc);
326 if (!(new_ctx = gl_info->p_wglCreateContextAttribsARB(fake_gl_ctx->dc, NULL, ctx_attribs)))
333 if (!wglMakeCurrent(fake_gl_ctx->dc, new_ctx))
371 ctx->dc = GetDC(ctx->wnd);
372 if (!ctx->dc)
387 if (!(iPixelFormat = ChoosePixelFormat(ctx->dc, &pfd)))
393 DescribePixelFormat(ctx->dc, iPixelFormat, sizeof(pfd), &pfd);
394 SetPixelFormat(ctx->dc, iPixelFormat, &pfd);
398 if (!(ctx->gl_ctx = pVBoxCreateContext(ctx->dc, pHgsm
5145 wined3d_adapter_init_fb_cfgs(struct wined3d_adapter *adapter, HDC dc) argument
[all...]
H A Dsurface.c2213 * section and releasing the dc to allow the app to use it. The dib section
4244 HRESULT CDECL wined3d_surface_getdc(struct wined3d_surface *surface, HDC *dc) argument
4249 TRACE("surface %p, dc %p.\n", surface, dc);
4265 /* Create a DIB section if there isn't a dc yet. */
4342 *dc = surface->hDC;
4343 TRACE("Returning dc %p.\n", *dc);
4348 HRESULT CDECL wined3d_surface_releasedc(struct wined3d_surface *surface, HDC dc) argument
4350 TRACE("surface %p, dc
[all...]
/vbox/src/VBox/Additions/common/crOpenGL/
H A Ddri_util.c287 __DRIDrawableConfigEvent *dc, *last_dc; local
324 dc = (__DRIDrawableConfigEvent *) p;
325 if (dc->drawable == pdp->dri2.drawable_id)
326 last_dc = dc;
/vbox/src/VBox/Additions/WINNT/Graphics/Wine/wined3d/
H A Dcontext.c700 static BOOL context_set_pixel_format(const struct wined3d_gl_info *gl_info, HDC dc, int format) argument
702 int current = GetPixelFormat(dc);
708 if (!SetPixelFormat(dc, format, NULL))
711 format, dc, GetLastError());
723 if (!GL_EXTCALL(wglSetPixelFormatWINE(dc, format, NULL)))
726 format, dc);
737 format, dc, current);
755 ERR("Unexpected swapchain for dc %p window expected %p, but was %p.\n", swapchain->hDC, swapchain->win_handle, hWnd);
H A Ddirectx.c229 HDC dc; member in struct:wined3d_fake_gl_ctx
251 ReleaseDC(ctx->wnd, ctx->dc);
279 ctx->dc = GetDC(ctx->wnd);
280 if (!ctx->dc)
295 iPixelFormat = ChoosePixelFormat(ctx->dc, &pfd);
302 DescribePixelFormat(ctx->dc, iPixelFormat, sizeof(pfd), &pfd);
303 SetPixelFormat(ctx->dc, iPixelFormat, &pfd);
306 ctx->gl_ctx = pVBoxCreateContext(ctx->dc, pHgsmi);
319 if (!pwglMakeCurrent(ctx->dc, ctx->gl_ctx))
330 if (ctx->dc) ReleaseD
[all...]
H A Ddevice.c7157 static HRESULT WINAPI IWineD3DDeviceImpl_GetSurfaceFromDC(IWineD3DDevice *iface, HDC dc, IWineD3DSurface **surface) argument
7167 if (((IWineD3DSurfaceImpl *)resource)->hDC == dc)
7169 TRACE("Found surface %p for dc %p.\n", resource, dc);
/vbox/src/recompiler/target-i386/
H A Dtranslate.c8149 DisasContext dc1, *dc = &dc1; local
8168 dc->pe = (flags >> HF_PE_SHIFT) & 1;
8169 dc->code32 = (flags >> HF_CS32_SHIFT) & 1;
8170 dc->ss32 = (flags >> HF_SS32_SHIFT) & 1;
8171 dc->addseg = (flags >> HF_ADDSEG_SHIFT) & 1;
8172 dc->f_st = 0;
8173 dc->vm86 = (flags >> VM_SHIFT) & 1;
8175 dc->vme = !!(env->cr[4] & CR4_VME_MASK);
8176 dc->pvi = !!(env->cr[4] & CR4_PVI_MASK);
8181 && dc
[all...]
/vbox/src/VBox/Main/webservice/jaxlibs/
H A Djaxb-xjc.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/maven/ META-INF/maven/com. ...
H A Djaxb-impl.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/sun/ com/sun/xml/ com/sun/xml/bind/ ...

Completed in 138 milliseconds