Home
last modified time | relevance | path

Searched refs:old_cs (Results 1 – 25 of 102) sorted by relevance

12345

/dports/multimedia/libva-vdpau-driver/libva-vdpau-driver-0.7.4/src/
H A Dvdpau_video_glx.c288 GLContextState old_cs, *new_cs; in vdpau_CreateSurfaceGLX() local
289 gl_get_current_context(&old_cs); in vdpau_CreateSurfaceGLX()
305 gl_set_current_context(&old_cs, NULL); in vdpau_CreateSurfaceGLX()
335 gl_set_current_context(&old_cs, NULL); in vdpau_DestroySurfaceGLX()
503 GLContextState old_cs; in vdpau_AssociateSurfaceGLX() local
515 gl_set_current_context(&old_cs, NULL); in vdpau_AssociateSurfaceGLX()
553 GLContextState old_cs; in vdpau_DeassociateSurfaceGLX() local
596 GLContextState old_cs; in vdpau_SyncSurfaceGLX() local
647 GLContextState old_cs; in vdpau_BeginRenderSurfaceGLX() local
694 GLContextState old_cs; in vdpau_EndRenderSurfaceGLX() local
[all …]
H A Dutils_glx.c419 GLContextState old_cs, tmp_cs; in gl_init_context() local
421 if (!gl_set_current_context(cs, &old_cs)) in gl_init_context()
433 gl_set_current_context(&old_cs, &tmp_cs); in gl_init_context()
466 gl_set_current_context(GLContextState *new_cs, GLContextState *old_cs) in gl_set_current_context() argument
474 if (old_cs) { in gl_set_current_context()
475 if (old_cs == new_cs) in gl_set_current_context()
477 gl_get_current_context(old_cs); in gl_set_current_context()
478 if (old_cs->display == new_cs->display && in gl_set_current_context()
479 old_cs->window == new_cs->window && in gl_set_current_context()
480 old_cs->context == new_cs->context) in gl_set_current_context()
H A Dutils_glx.h144 gl_set_current_context(GLContextState *new_cs, GLContextState *old_cs)
/dports/multimedia/gstreamer1-vaapi/gstreamer-vaapi-1.16.2/gst-libs/gst/vaapi/
H A Dgstvaapitexture_glx.c84 GLContextState old_cs; in destroy_objects() local
87 gl_set_current_context (texture->gl_context, &old_cs); in destroy_objects()
100 gl_set_current_context (&old_cs, NULL); in destroy_objects()
133 GLContextState old_cs; in create_objects() local
136 gl_get_current_context (&old_cs); in create_objects()
138 texture->gl_context = gl_create_context (dpy, DefaultScreen (dpy), &old_cs); in create_objects()
159 gl_set_current_context (&old_cs, NULL); in create_objects()
337 GLContextState old_cs; in gst_vaapi_texture_glx_put_surface_unlocked() local
355 !gl_set_current_context (texture->gl_context, &old_cs)) in gst_vaapi_texture_glx_put_surface_unlocked()
401 if (texture->gl_context && !gl_set_current_context (&old_cs, NULL)) in gst_vaapi_texture_glx_put_surface_unlocked()
H A Dgstvaapitexture_egl.c162 EglContextState old_cs; in do_create_texture() local
167 if (egl_context_set_current (texture->egl_context, TRUE, &old_cs)) { in do_create_texture()
169 egl_context_set_current (texture->egl_context, FALSE, &old_cs); in do_create_texture()
207 EglContextState old_cs; in do_destroy_texture() local
210 if (egl_context_set_current (texture->egl_context, TRUE, &old_cs)) { in do_destroy_texture()
212 egl_context_set_current (texture->egl_context, FALSE, &old_cs); in do_destroy_texture()
238 EglContextState old_cs; in do_upload_surface() local
243 if (egl_context_set_current (texture->egl_context, TRUE, &old_cs)) { in do_upload_surface()
246 egl_context_set_current (texture->egl_context, FALSE, &old_cs); in do_upload_surface()
H A Dgstvaapiwindow_egl.c211 EglContextState old_cs; in do_create_objects() local
216 if (egl_context_set_current (args->egl_context, TRUE, &old_cs)) { in do_create_objects()
219 egl_context_set_current (args->egl_context, FALSE, &old_cs); in do_create_objects()
266 EglContextState old_cs; in do_destroy_objects() local
272 if (egl_context_set_current (egl_context, TRUE, &old_cs)) { in do_destroy_objects()
274 egl_context_set_current (egl_context, FALSE, &old_cs); in do_destroy_objects()
354 EglContextState old_cs; in do_resize_window() local
357 if (egl_context_set_current (window->egl_window->context, TRUE, &old_cs)) { in do_resize_window()
360 egl_context_set_current (window->egl_window->context, FALSE, &old_cs); in do_resize_window()
483 EglContextState old_cs; in do_upload_surface() local
[all …]
H A Dgstvaapiwindow_glx.c176 GLContextState old_cs; in gst_vaapi_window_glx_ensure_context() local
183 if (!gl_set_current_context (priv->gl_context, &old_cs)) { in gst_vaapi_window_glx_ensure_context()
201 gl_set_current_context (&old_cs, NULL); in gst_vaapi_window_glx_ensure_context()
281 GLContextState old_cs; in gst_vaapi_window_glx_resize() local
288 if (gl_set_current_context (priv->gl_context, &old_cs)) { in gst_vaapi_window_glx_resize()
290 gl_set_current_context (&old_cs, NULL); in gst_vaapi_window_glx_resize()
H A Dgstvaapiutils_egl.c903 EglContextState * old_cs);
1015 EglContextState * old_cs) in egl_context_state_set_current() argument
1023 if (old_cs) { in egl_context_state_set_current()
1024 if (old_cs == new_cs) in egl_context_state_set_current()
1026 egl_context_state_get_current (old_cs); in egl_context_state_set_current()
1027 if (old_cs->display == new_cs->display && in egl_context_state_set_current()
1165 EglContextState * old_cs) in egl_context_set_current() argument
1180 } else if (old_cs) { in egl_context_set_current()
1181 new_cs = old_cs; in egl_context_set_current()
1182 old_cs = NULL; in egl_context_set_current()
[all …]
H A Dgstvaapiutils_glx.c438 gl_set_current_context (GLContextState * new_cs, GLContextState * old_cs) in gl_set_current_context() argument
446 if (old_cs) { in gl_set_current_context()
447 if (old_cs == new_cs) in gl_set_current_context()
449 gl_get_current_context (old_cs); in gl_set_current_context()
450 if (old_cs->display == new_cs->display && in gl_set_current_context()
451 old_cs->window == new_cs->window && old_cs->context == new_cs->context) in gl_set_current_context()
H A Dgstvaapiutils_glx.h103 gl_set_current_context (GLContextState * new_cs, GLContextState * old_cs);
H A Dgstvaapiutils_egl.h228 EglContextState * old_cs);
/dports/emulators/pcem/pcem_emulator-pcem-faf5d6423060/src/
H A Dx86_ops_call.h2 old_cs = CS; \
20 …PUSH_L(old_cs); if (cpu_state.abrt) { cgate16 = cgate32 = 0; return 1; } …
26 …PUSH_W(old_cs); if (cpu_state.abrt) { cgate16 = cgate32 = 0; return 1; } …
31 old_cs = CS; \
49 …PUSH_W(old_cs); if (cpu_state.abrt) { cgate16 = cgate32 = 0; return 1; } …
62 uint32_t old_cs, old_pc; in opCALL_far_w() local
78 uint32_t old_cs, old_pc; in opCALL_far_l() local
96 uint16_t old_cs, new_cs; in opFF_w_a16() local
173 uint16_t old_cs, new_cs; in opFF_w_a32() local
251 uint16_t old_cs, new_cs; in opFF_l_a16() local
[all …]
/dports/multimedia/libva/libva-2.13.0/va/glx/
H A Dva_glx_impl.c456 if (old_cs) { in gl_set_current_context()
457 if (old_cs == new_cs) in gl_set_current_context()
459 gl_get_current_context(old_cs); in gl_set_current_context()
462 old_cs->context == new_cs->context) in gl_set_current_context()
915 struct OpenGLContextState old_cs, *new_cs; in vaCreateSurfaceGLX_impl_libva() local
917 gl_get_current_context(&old_cs); in vaCreateSurfaceGLX_impl_libva()
918 new_cs = gl_create_context(ctx, &old_cs); in vaCreateSurfaceGLX_impl_libva()
931 gl_set_current_context(&old_cs, NULL); in vaCreateSurfaceGLX_impl_libva()
956 gl_set_current_context(&old_cs, NULL); in vaDestroySurfaceGLX_impl_libva()
1078 struct OpenGLContextState old_cs = {0}; in vaCopySurfaceGLX_impl_libva() local
[all …]
/dports/multimedia/libva-glx/libva-2.13.0/va/glx/
H A Dva_glx_impl.c456 if (old_cs) { in gl_set_current_context()
457 if (old_cs == new_cs) in gl_set_current_context()
459 gl_get_current_context(old_cs); in gl_set_current_context()
462 old_cs->context == new_cs->context) in gl_set_current_context()
915 struct OpenGLContextState old_cs, *new_cs; in vaCreateSurfaceGLX_impl_libva() local
917 gl_get_current_context(&old_cs); in vaCreateSurfaceGLX_impl_libva()
918 new_cs = gl_create_context(ctx, &old_cs); in vaCreateSurfaceGLX_impl_libva()
931 gl_set_current_context(&old_cs, NULL); in vaCreateSurfaceGLX_impl_libva()
956 gl_set_current_context(&old_cs, NULL); in vaDestroySurfaceGLX_impl_libva()
1078 struct OpenGLContextState old_cs = {0}; in vaCopySurfaceGLX_impl_libva() local
[all …]
/dports/lang/parrot/parrot-8.1.0/examples/compilers/
H A Djaphc.c173 PackFile_ByteCode *cur_cs, *old_cs; in japh_compiler() local
187 old_cs = Parrot_pf_switch_to_cs(interp, cur_cs, 0); in japh_compiler()
228 if (old_cs) { in japh_compiler()
230 (void)Parrot_pf_switch_to_cs(interp, old_cs, 0); in japh_compiler()
/dports/emulators/mess/mame-mame0226/src/devices/machine/
H A Dupd4701.cpp359 bool old_cs = m_cs; in read_xy() local
364 cs_w(old_cs); in read_xy()
/dports/emulators/mame/mame-mame0226/src/devices/machine/
H A Dupd4701.cpp359 bool old_cs = m_cs; in read_xy() local
364 cs_w(old_cs); in read_xy()
/dports/multimedia/v4l_compat/linux-5.13-rc2/drivers/spi/
H A Dspi-omap-uwire.c178 int old_cs; in uwire_chipselect() local
184 old_cs = (w >> 10) & 0x03; in uwire_chipselect()
185 if (value == BITBANG_CS_INACTIVE || old_cs != spi->chip_select) { in uwire_chipselect()
/dports/multimedia/libv4l/linux-5.13-rc2/drivers/spi/
H A Dspi-omap-uwire.c178 int old_cs; in uwire_chipselect() local
184 old_cs = (w >> 10) & 0x03; in uwire_chipselect()
185 if (value == BITBANG_CS_INACTIVE || old_cs != spi->chip_select) { in uwire_chipselect()
/dports/multimedia/v4l-utils/linux-5.13-rc2/drivers/spi/
H A Dspi-omap-uwire.c178 int old_cs; in uwire_chipselect() local
184 old_cs = (w >> 10) & 0x03; in uwire_chipselect()
185 if (value == BITBANG_CS_INACTIVE || old_cs != spi->chip_select) { in uwire_chipselect()
/dports/net/haproxy18/haproxy-1.8.30/src/
H A Dbackend.c1044 struct conn_stream *old_cs; in connect_server() local
1056 old_cs = srv_cs; in connect_server()
1057 if (old_cs) { in connect_server()
1112 if (old_cs && !(old_cs->conn->flags & CO_FL_PRIVATE)) { in connect_server()
1113 si_attach_cs(srv_cs->data, old_cs); in connect_server()
1122 if (old_cs && !old_cs->data) in connect_server()
1123 cs_destroy(old_cs); in connect_server()
/dports/x11-wm/fvwm2/fvwm-2.6.9/fvwm/
H A Dupdate.c414 int old_cs = t->icon_background_cs; in apply_window_updates() local
417 if ((old_cs < 0 && t->icon_background_cs >= 0) || in apply_window_updates()
418 (old_cs >= 0 && t->icon_background_cs < 0)) in apply_window_updates()
/dports/x11-wm/fvwm3/fvwm3-1.0.4/fvwm/
H A Dupdate.c414 int old_cs = t->icon_background_cs; in apply_window_updates() local
417 if ((old_cs < 0 && t->icon_background_cs >= 0) || in apply_window_updates()
418 (old_cs >= 0 && t->icon_background_cs < 0)) in apply_window_updates()
/dports/graphics/mupdf/mupdf-1.18.0-source/include/mupdf/pdf/
H A Dpage.h138 …ces *pdf_update_default_colorspaces(fz_context *ctx, fz_default_colorspaces *old_cs, pdf_obj *res);
/dports/shells/zsh/zsh-5.8.1/Src/Zle/
H A Dzle.h290 int old_cs, new_cs; /* old and new cursor positions */ member

12345