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

1234567891011>>

/xsrc/external/mit/MesaLib.old/dist/src/gallium/auxiliary/util/
H A Du_debug_refcnt.h45 debug_reference_descriptor get_desc, int change);
49 debug_reference_descriptor get_desc, int change)
52 debug_reference_slowpath(p, get_desc, change);
59 UNUSED debug_reference_descriptor get_desc, UNUSED int change)
48 debug_reference(const struct pipe_reference * p,debug_reference_descriptor get_desc,int change) argument
58 debug_reference(UNUSED const struct pipe_reference * p,UNUSED debug_reference_descriptor get_desc,UNUSED int change) argument
H A Du_ringbuffer.c19 cnd_t change; member in struct:util_ringbuffer
38 cnd_init(&ring->change);
50 cnd_destroy(&ring->change);
88 cnd_wait(&ring->change, &ring->mutex);
103 /* Signal change:
105 cnd_signal(&ring->change);
126 cnd_wait(&ring->change, &ring->mutex);
155 /* Signal change:
157 cnd_signal(&ring->change);
H A Du_debug_refcnt.c138 * Log a reference count change to the log file (if enabled).
145 * \param change the reference count change which must be +/-1 or 0 when
150 debug_reference_descriptor get_desc, int change)
152 assert(change >= -1);
153 assert(change <= 1);
185 /* this is here to provide a gradual change even if we don't see
188 for (i = 1; i <= refcnt - change; ++i) {
195 if (change) {
197 change >
149 debug_reference_slowpath(const struct pipe_reference * p,debug_reference_descriptor get_desc,int change) argument
[all...]
/xsrc/external/mit/MesaLib/dist/src/util/
H A Du_debug_refcnt.h45 debug_reference_descriptor get_desc, int change);
49 debug_reference_descriptor get_desc, int change)
52 debug_reference_slowpath(p, get_desc, change);
59 UNUSED debug_reference_descriptor get_desc, UNUSED int change)
48 debug_reference(const struct pipe_reference * p,debug_reference_descriptor get_desc,int change) argument
58 debug_reference(UNUSED const struct pipe_reference * p,UNUSED debug_reference_descriptor get_desc,UNUSED int change) argument
H A Du_debug_refcnt.c127 * Log a reference count change to the log file (if enabled).
134 * \param change the reference count change which must be +/-1 or 0 when
139 debug_reference_descriptor get_desc, int change)
141 assert(change >= -1);
142 assert(change <= 1);
174 /* this is here to provide a gradual change even if we don't see
177 for (i = 1; i <= refcnt - change; ++i) {
184 if (change) {
186 change >
138 debug_reference_slowpath(const struct pipe_reference * p,debug_reference_descriptor get_desc,int change) argument
[all...]
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/llvmpipe/
H A Dlp_scene_queue.c54 cnd_t change; member in struct:lp_scene_queue
80 cnd_init(&queue->change);
90 cnd_destroy(&queue->change);
105 cnd_wait(&queue->change, &queue->mutex);
115 cnd_signal(&queue->change);
130 cnd_wait(&queue->change, &queue->mutex);
134 cnd_signal(&queue->change);
/xsrc/external/mit/glu/dist/src/libnurbs/internals/
H A Dmonotonizer.cc125 int change; local in function:Subdivider::monotonize
131 change = 0;
133 /* check change relative to s axis, clear degenerate bit if needed */
138 change = 1;
143 change = 1;
149 change = 1;
154 /* check change relative to t axis, clear degenerate bit if needed */
159 change = 1;
164 change = 1;
170 change
[all...]
/xsrc/external/mit/xorg-server.old/dist/render/
H A Dglyphstr.h133 ResizeGlyphHash (GlyphHashPtr hash, CARD32 change, Bool global);
136 ResizeGlyphSet (GlyphSetPtr glyphSet, CARD32 change);
H A Dglyph.c428 ResizeGlyphHash (GlyphHashPtr hash, CARD32 change, Bool global) argument
439 tableEntries = hash->tableEntries + change;
471 ResizeGlyphSet (GlyphSetPtr glyphSet, CARD32 change) argument
473 return (ResizeGlyphHash (&glyphSet->hash, change, FALSE) &&
474 ResizeGlyphHash (&globalGlyphs[glyphSet->fdepth], change, TRUE));
/xsrc/external/mit/xorg-server/dist/render/
H A Dglyphstr.h115 ResizeGlyphSet(GlyphSetPtr glyphSet, CARD32 change);
H A Dglyph.c397 ResizeGlyphHash(GlyphHashPtr hash, CARD32 change, Bool global) argument
408 tableEntries = hash->tableEntries + change;
438 ResizeGlyphSet(GlyphSetPtr glyphSet, CARD32 change) argument
440 return (ResizeGlyphHash(&glyphSet->hash, change, FALSE) &&
441 ResizeGlyphHash(&globalGlyphs[glyphSet->fdepth], change, TRUE));
/xsrc/external/mit/xload/dist/
H A Dxload.c342 unsigned long new_leds, change, bit; local in function:SetLights
352 change = new_leds ^ current_leds;
357 if (change & bit)
/xsrc/external/mit/MesaLib/dist/docs/relnotes/
H A D10.4.2.rst36 Changes to state such as render targets change fragment shader
57 - r600g: fix regression since UCMP change
H A D10.3.7.rst36 Changes to state such as render targets change fragment shader
/xsrc/external/mit/xorg-server.old/dist/hw/xwin/
H A DXWin.rc58 /* Depth change */
67 CTEXT "Disruptive screen configuration change.", IDC_STATIC, 7, 40, 166, 8
/xsrc/external/mit/xorg-server/dist/hw/xwin/
H A DXWin.rc58 /* Depth change */
67 CTEXT "Disruptive screen configuration change.", IDC_STATIC, 7, 40, 166, 8
/xsrc/external/mit/libX11/dist/src/xkb/
H A DXKB.c532 req->change = XkbPCF_DetectableAutoRepeatMask;
566 req->change = 0;
599 req->change = XkbPCF_AutoResetControlsMask;
635 req->change = 0;
653 XkbSetPerClientControls(Display *dpy, unsigned change, unsigned *values) argument
662 (change & ~(XkbPCF_GrabsUseXKBStateMask |
671 req->change = change;
703 req->change = 0;
/xsrc/external/mit/freetype/dist/builds/unix/
H A Dftconfig.h.in23 * determined at compile time, and you should not need to change it to port
/xsrc/external/mit/MesaLib/dist/.gitlab-ci/piglit/
H A Drun_cl.sh73 echo Unexpected change in results:
/xsrc/external/mit/ctwm/dist/client/
H A DREADME.md32 : A small program to switch to a workspace or change a window's
/xsrc/external/mit/ctwm/dist/
H A Dewmh.c93 static void EwmhClientMessage_NET_WM_STATEchange(TwmWindow *twm_win, int change,
1061 * It can change 1 or 2 values represented in NET_WM_STATE.
1062 * The second change is allowed
1070 int change, change1, change2, newValue; local in function:EwmhClientMessage_NET_WM_STATE
1088 change = change1 | change2;
1101 newValue = change;
1107 newValue = ~twm_win->ewmhFlags & change;
1125 if(change == (EWMH_STATE_MAXIMIZED_VERT | EWMH_STATE_MAXIMIZED_HORZ) &&
1126 (newValue == 0 || newValue == change)) {
1127 EwmhClientMessage_NET_WM_STATEchange(twm_win, change, newValu
1144 EwmhClientMessage_NET_WM_STATEchange(TwmWindow * twm_win,int change,int newValue) argument
[all...]
/xsrc/external/mit/libXaw/dist/src/
H A DList.c403 * changex - allow the height or width to change?
407 * Resets the new list when important things change.
435 * w - widget to try change the size of
809 Bool change, width_req, height_req; local in function:XawListQueryGeometry
832 change = Layout(w, !width_req, !height_req, &new_width, &new_height);
839 if (change)
875 Bool change = False; local in function:Layout
893 change = True;
898 change = True;
903 * If both width and height are free to change th
[all...]
/xsrc/external/mit/xorg-server.old/dist/xkb/
H A DxkbActions.c600 "Attempt to change unknown pointer default (%d) ignored\n",
656 unsigned int change; local in function:_XkbFilterControls
666 change= XkbActionCtrls(&pAction->ctrls);
667 filter->priv = change;
672 filter->priv= (ctrls->enabled_ctrls&change);
673 change&= ~ctrls->enabled_ctrls;
676 if (change) {
680 ctrls->enabled_ctrls|= change;
700 XkbDDXAccessXBeep(kbd,_BEEP_FEATURE_ON,change);
704 change
[all...]
/xsrc/external/mit/xorg-server/dist/xkb/
H A DxkbActions.c627 ("Attempt to change unknown pointer default (%d) ignored\n",
681 unsigned int change; local in function:_XkbFilterControls
692 change = XkbActionCtrls(&pAction->ctrls);
693 filter->priv = change;
698 filter->priv = (ctrls->enabled_ctrls & change);
699 change &= ~ctrls->enabled_ctrls;
702 if (change) {
706 ctrls->enabled_ctrls |= change;
726 XkbDDXAccessXBeep(kbd, _BEEP_FEATURE_ON, change);
730 change
[all...]
/xsrc/external/mit/libepoxy/dist/
H A DREADME.md118 change the device or pixel format), then epoxy needs to be notified of
119 the change using the `epoxy_handle_external_wglMakeCurrent()` function.

Completed in 20 milliseconds

1234567891011>>