Searched refs:space (Results 1 - 21 of 21) sorted by relevance

/solaris-x11-s11/open-src/lib/DPS/sun-src/libdps/
H A Ddpssimpint.h47 DPSSpace space; member in struct:_t_DPSPrivContextRec
H A Ddpsint.h90 extern boolean DPSKnownSpace(DPSSpace space);
94 extern void DPSPrivateDestroySpace(DPSSpace space);
113 DPSSpace space);
H A DdpsXint.h50 DPSSpace space; member in struct:_t_DPSPrivContextRec
99 boolean creator; /* Did this app. create the space? */
H A DdpsXclient.c109 ss = (DPSPrivSpace)c->space;
241 /* update space's name map.
242 space->lastNameIndex is the highest index known to be known to the
243 server for this space.
247 if (((DPSPrivSpace)(c->space))->lastNameIndex < c->lastNameIndex)
248 ((DPSPrivSpace)(c->space))->lastNameIndex = c->lastNameIndex;
329 DPSPrivSpace s = (DPSPrivSpace) c->space;
335 /* Don't free the space's wh out from under it */
339 void DPSPrivateDestroySpace(DPSSpace space) argument
341 DPSPrivSpace ss = (DPSPrivSpace) space;
518 XDPSCreateSimpleContext( Display *dpy, Drawable draw, GC gc, int x, int y, DPSTextProc textProc, DPSErrorProc errorProc, DPSSpace space) argument
545 XDPSCreateContext( Display *dpy, Drawable draw, GC gc, int x, int y, unsigned int eventmask, XStandardColormap *grayramp, XStandardColormap *ccube, int actual, DPSTextProc textProc, DPSErrorProc errorProc, DPSSpace space) argument
575 XDPSCreateSecureContext( Display *dpy, Drawable draw, GC gc, int x, int y, unsigned int eventmask, XStandardColormap *grayramp, XStandardColormap *ccube, int actual, DPSTextProc textProc, DPSErrorProc errorProc, DPSSpace space) argument
[all...]
H A DdpsXpriv.c420 SpaceXID space; local
430 newWh->cxid = XDPSLCreateContextFromID (wh->dpy, cid, &space);
431 DPSAssertWarn (space == sxid, ctxt, "attempting context from context ID from different space");
H A Ddpsclient.c152 if (ctxt != dummyCtx && ctxt->space != NIL)
153 ((DPSPrivContext)ctxt)->lastNameIndex = ((DPSPrivSpace)(ctxt->space))->lastNameIndex;
413 boolean DPSKnownSpace(DPSSpace space) argument
415 DPSPrivSpace ss, s = (DPSPrivSpace) space;
666 DPSPrivSpace s = (DPSPrivSpace) ctxt->space;
981 DPSPrivSpace ss = (DPSPrivSpace)(c->space);
1012 static void procDestroySpace(DPSSpace space) argument
1014 DPSPrivSpace ns, prevS, ss = (DPSPrivSpace)space;
1031 DPSPrivateDestroySpace(space);
2332 /* handle the case where another context in another space ha
2605 DPSCreateContext( char *wh, DPSTextProc textProc, DPSErrorProc errorProc, DPSSpace space) argument
[all...]
H A DdpsXcmu.c1533 int *space,
1536 if (map->blue_max == 0) map->red_max = *space - 1;
1538 if (map->red_max > *space - 1) map->red_max = *space - 1;
1539 if (map->green_max > *space - 1) map->green_max = *space - 1;
1540 if (map->blue_max > *space - 1) map->blue_max = *space - 1;
1544 (map->blue_max + 1) > *space) {
1556 *space
1531 ShrinkMapToFit( XStandardColormap *map, int *space, XVisualInfo *vinfo) argument
[all...]
/solaris-x11-s11/open-src/lib/DPS/sun-src/include/DPS/
H A DColorSB.h162 extern Boolean CSBSetColor(Widget w, CSBColorSpace space, double c1,
165 extern void CSBGetColor(Widget w, CSBColorSpace space, float *c1,
H A DdpsXclient.h78 in a space which was created by another client. Such
134 DPSSpace space);
144 'space' determines the execution space of the new context. A null
145 space causes a new one to be created. */
154 DPSSpace space);
179 DPSSpace space);
267 /* Create a space record for a "sxid" shared by another client. */
275 /* Get the XID for the given space record. Retunr its 'dpy' */
283 /* Get the space recor
[all...]
H A DColorSBP.h153 typedef Boolean (*CSBSetColorProc) (Widget w, CSBColorSpace space, double c1,
156 typedef void (*CSBGetColorProc) (Widget w, CSBColorSpace space, float *c1,
H A Ddpsfriends.h201 /* This routine is called if the context's space's name map is
236 struct _t_DPSSpaceRec *space
265 /* A DPSSpaceRec provides a representation of a space.
282 DPSSpace space; member in struct:_t_DPSContextRec
301 The 'space' field is the space to which the context belongs. The
H A Ddpsclient.h320 /* Calls DPSDestroyContext for each of the contexts in the space, then
321 sends a request to the server to terminate the space, then frees the
388 #define DPSSpaceFromContext(ctxt) ((ctxt)->space)
390 /* Extract space handle from context. */
/solaris-x11-s11/open-src/kernel/i915/src/
H A Dintel_ringbuffer.c52 int space = (ring->head & HEAD_ADDR) - (ring->tail + I915_RING_FREE_SPACE); local
53 if (space < 0)
54 space += ring->size;
55 return space;
472 ring->space = ring_space(ring);
1420 ring->space = ring_space(ring);
1421 if (ring->space >= n)
1426 int space; local
1431 space = request->tail - (ring->tail + I915_RING_FREE_SPACE);
1432 if (space <
[all...]
H A Dintel_ringbuffer.h99 int space; member in struct:intel_ring_buffer
H A Di915_dma.c146 ring->space = ring->head - (ring->tail + I915_RING_FREE_SPACE);
147 if (ring->space < 0)
148 ring->space += ring->size;
/solaris-x11-s11/open-src/app/gfx-utils/sun-src/fbconf_xorg/xf86/
H A DScreen.c567 const char *space; /* Ptr to "" or " " separator */ local
570 space = "";
573 fprintf(cf, "%s\"%s\"", space, mptr->mode_name);
574 space = " ";
/solaris-x11-s11/open-src/kernel/efb/src/
H A Dradeon_drv.h86 * located in the card's address space
185 int space; member in struct:drm_radeon_ring_buffer
1150 if (dev_priv->ring.space <= (n) * sizeof (u32)) { \
1154 _nr = n; dev_priv->ring.space -= (n) * sizeof (u32); \
H A Dradeon_cp.c1409 * but the ring can be in either AGP or PCI space for the ring
2176 ring->space = (head - ring->tail) * sizeof (u32);
2177 if (ring->space <= 0)
2178 ring->space += ring->size;
2179 if (ring->space > n)
/solaris-x11-s11/open-src/lib/libXaw4/sun-src/
H A DXaw3_1TextAction.c1224 XawTextPosition startPos, endPos, space, eol; local
1244 space= SrcScan(ctx->text.source, eol, XawstWhiteSpace, XawsdRight, 1,TRUE);
1247 if (eol == space)
1250 len = (int) (space - eol);
1251 buf = _XawTextGetText(ctx, eol, space);
/solaris-x11-s11/open-src/lib/DPS/sun-src/libdpstk/
H A DColorSB.c243 static Boolean SetColor (Widget w, CSBColorSpace space, double c1, double c2, double c3, double c4, Bool setSpace);
255 static void GetColor (Widget w, CSBColorSpace space, float *c1, float *c2, float *c3, float *c4);
3291 CSBColorSpace space,
3299 switch (space) {
3327 UpdateColorSpaces(csb, space);
3332 if (setSpace) XtVaSetValues(w, XtNcurrentSpace, space, NULL);
3339 CSBColorSpace space,
3346 csb_class.set_color) (w, space, c1, c2, c3, c4, setSpace);
3351 CSBColorSpace space,
3356 switch (space) {
3289 SetColor( Widget w, CSBColorSpace space, double c1, double c2, double c3, double c4, Bool setSpace) argument
3337 CSBSetColor( Widget w, CSBColorSpace space, double c1, double c2, double c3, double c4, Bool setSpace) argument
3349 GetColor( Widget w, CSBColorSpace space, float *c1, float *c2, float *c3, float *c4) argument
3379 CSBGetColor( Widget w, CSBColorSpace space, float *c1, float *c2, float *c3, float *c4) argument
[all...]
/solaris-x11-s11/open-src/lib/libXaw5/sun-src/
H A DTextAction.c1939 XawTextPosition startPos, endPos, space, eol; local
1968 space= SrcScan(ctx->text.source, eol, XawstWhiteSpace,XawsdRight,1, TRUE);
1971 if (eol == space)
1974 len = (int) (space - eol);
1975 buf = _XawTextGetText(ctx, eol, space);

Completed in 107 milliseconds