HomeSort by: relevance | last modified time | path
    Searched defs:privates (Results 1 - 14 of 14) sorted by relevancy

  /xsrc/external/mit/xorg-server/dist/glamor/
glamor_font.c 36 glamor_font_t *privates; local
53 privates = FontGetPrivate(font, glamor_font_private_index);
54 if (!privates) {
55 privates = calloc(glamor_font_screen_count, sizeof (glamor_font_t));
56 if (!privates)
58 xfont2_font_set_private(font, glamor_font_private_index, privates);
61 glamor_font = &privates[screen->myNum];
177 glamor_font_t *privates = FontGetPrivate(font, glamor_font_private_index); local
181 if (!privates)
184 glamor_font = &privates[screen->myNum]
    [all...]
  /xsrc/external/mit/libXfont/dist/src/fontfile/
catalogue.c 338 pointer *privates; member in struct:_LFWIData
353 data = malloc (sizeof *data + sizeof data->privates[0] * cat->fpeCount);
356 data->privates = (pointer *) (data + 1);
361 max, &data->privates[i], mark_aliases);
372 /* FIXME: we have no way to free the per-fpe privates. */;
405 data->privates[data->current]);
442 data->privates[data->current]);
  /xsrc/external/mit/libXfont2/dist/src/fontfile/
catalogue.c 339 pointer *privates; member in struct:_LFWIData
354 data = malloc (sizeof *data + sizeof data->privates[0] * cat->fpeCount);
357 data->privates = (pointer *) (data + 1);
362 max, &data->privates[i], mark_aliases);
373 /* FIXME: we have no way to free the per-fpe privates. */;
406 data->privates[data->current]);
443 data->privates[data->current]);
  /xsrc/external/mit/xf86-video-intel-old/dist/src/
i830_dri.c 91 I830DRI2BufferPrivatePtr privates; local
97 privates = xcalloc(count, sizeof *privates);
98 if (privates == NULL) {
147 buffers[i].driverPrivate = &privates[i];
149 privates[i].pPixmap = pPixmap;
150 privates[i].attachment = attachments[i];
173 I830DRI2BufferPrivatePtr privates; local
179 privates = xcalloc(1, sizeof *privates);
    [all...]
  /xsrc/external/mit/xorg-server.old/dist/dix/
privates.c 58 #include "privates.h"
89 typedef Bool (*FixupFunc)(PrivatePtr *privates, int offset, unsigned bytes);
92 dixReallocPrivates(PrivatePtr *privates, int old_offset, unsigned bytes)
96 new_privates = realloc(*privates, old_offset + bytes);
100 *privates = new_privates;
105 dixMovePrivates(PrivatePtr *privates, int new_offset, unsigned bytes)
107 memmove((char *) *privates + bytes, *privates, new_offset - bytes);
108 memset(*privates, '\0', bytes);
204 /* Move all existing keys up in the privates space to mak
308 PrivatePtr privates; local
    [all...]
  /xsrc/external/mit/xorg-server/dist/dix/
privates.c 58 #include "privates.h"
107 /* extension privates */
130 typedef Bool (*FixupFunc) (PrivatePtr *privates, int offset, unsigned bytes);
135 dixReallocPrivates(PrivatePtr *privates, int old_offset, unsigned bytes)
139 new_privates = realloc(*privates, old_offset + bytes);
143 *privates = new_privates;
148 dixMovePrivates(PrivatePtr *privates, int new_offset, unsigned bytes)
150 memmove((char *) *privates + bytes, *privates, new_offset - bytes);
151 memset(*privates, '\0', bytes)
475 PrivatePtr privates; local
698 PrivatePtr privates; local
    [all...]
  /xsrc/external/mit/xf86-video-amdgpu/dist/src/
amdgpu_dri2.c 106 struct dri2_buffer_priv *privates; local
185 privates = calloc(1, sizeof(struct dri2_buffer_priv));
186 if (!privates)
192 buffers->driverPrivate = privates;
195 privates->pixmap = pixmap;
196 privates->attachment = attachment;
197 privates->refcnt = 1;
650 /* Swap pixmap privates */
  /xsrc/external/mit/xf86-video-ati/dist/src/
radeon_dri2.c 87 struct dri2_buffer_priv *privates; local
102 privates = calloc(count, sizeof(struct dri2_buffer_priv));
103 if (privates == NULL) {
224 (*pScreen->DestroyPixmap)(privates[j].pixmap);
226 free(privates);
234 buffers[i].driverPrivate = &privates[i];
236 privates[i].pixmap = pixmap;
237 privates[i].attachment = attachments[i];
251 struct dri2_buffer_priv *privates; local
363 privates = calloc(1, sizeof(struct dri2_buffer_priv))
    [all...]
  /xsrc/external/mit/xf86-video-ati-kms/dist/src/
radeon_dri2.c 110 struct dri2_buffer_priv *privates; local
266 privates = calloc(1, sizeof(struct dri2_buffer_priv));
267 if (!privates)
273 buffers->driverPrivate = privates;
276 privates->pixmap = pixmap;
277 privates->attachment = attachment;
278 privates->refcnt = 1;
748 /* Swap pixmap privates */
  /xsrc/external/mit/xf86-video-intel/dist/src/uxa/
intel_dri.c 161 I830DRI2BufferPrivatePtr privates; local
168 privates = calloc(count, sizeof *privates);
169 if (privates == NULL) {
224 buffers[i].driverPrivate = &privates[i];
226 privates[i].refcnt = 1;
227 privates[i].pixmap = pixmap;
240 screen->DestroyPixmap(privates[i].pixmap);
241 free(privates);
274 I830DRI2BufferPrivatePtr privates; local
    [all...]
  /xsrc/external/mit/xf86-video-intel-2014/dist/src/uxa/
intel_dri.c 120 I830DRI2BufferPrivatePtr privates; local
127 privates = calloc(count, sizeof *privates);
128 if (privates == NULL) {
186 buffers[i].driverPrivate = &privates[i];
188 privates[i].refcnt = 1;
189 privates[i].pixmap = pixmap;
202 screen->DestroyPixmap(privates[i].pixmap);
203 free(privates);
236 I830DRI2BufferPrivatePtr privates; local
    [all...]
  /xsrc/external/mit/freetype/dist/include/freetype/
t1tables.h 308 PS_Private privates [T1_MAX_MM_DESIGNS + 1]; member in struct:PS_BlendRec_
  /xsrc/external/mit/xorg-server/dist/hw/xfree86/common/
xf86str.h 628 DevUnion *privates; /* Other privates can hook in member in struct:_ScrnInfoRec
  /xsrc/external/mit/xorg-server.old/dist/hw/xfree86/common/
xf86str.h 727 DevUnion * privates; /* Other privates can hook in member in struct:_ScrnInfoRec

Completed in 75 milliseconds