Home
last modified time | relevance | path

Searched refs:privates (Results 1 – 21 of 21) sorted by relevance

/OK3568_Linux_fs/external/xserver/include/
H A Dprivates.h119 dixGetPrivateAddr(PrivatePtr *privates, const DevPrivateKey key) in dixGetPrivateAddr() argument
122 return (char *) (*privates) + key->offset; in dixGetPrivateAddr()
133 dixGetPrivate(PrivatePtr *privates, const DevPrivateKey key) in dixGetPrivate() argument
136 return *(void **) dixGetPrivateAddr(privates, key); in dixGetPrivate()
144 dixSetPrivate(PrivatePtr *privates, const DevPrivateKey key, void *val) in dixSetPrivate() argument
147 *(void **) dixGetPrivateAddr(privates, key) = val; in dixSetPrivate()
161 dixLookupPrivate(PrivatePtr *privates, const DevPrivateKey key) in dixLookupPrivate() argument
164 return dixGetPrivateAddr(privates, key); in dixLookupPrivate()
166 return dixGetPrivate(privates, key); in dixLookupPrivate()
176 dixLookupPrivateAddr(PrivatePtr *privates, const DevPrivateKey key) in dixLookupPrivateAddr() argument
[all …]
H A DMakefile.am42 privates.h \
H A DMakefile.in162 pixmap.h pixmapstr.h privates.h property.h propertyst.h \
596 @XORG_TRUE@ privates.h \
H A Dmeson.build423 'privates.h',
/OK3568_Linux_fs/external/xserver/dix/
H A Dprivates.c130 typedef Bool (*FixupFunc) (PrivatePtr *privates, int offset, unsigned bytes);
135 dixReallocPrivates(PrivatePtr *privates, int old_offset, unsigned bytes) in dixReallocPrivates() argument
139 new_privates = realloc(*privates, old_offset + bytes); in dixReallocPrivates()
143 *privates = new_privates; in dixReallocPrivates()
148 dixMovePrivates(PrivatePtr *privates, int new_offset, unsigned bytes) in dixMovePrivates() argument
150 memmove((char *) *privates + bytes, *privates, new_offset - bytes); in dixMovePrivates()
151 memset(*privates, '\0', bytes); in dixMovePrivates()
440 _dixInitPrivates(PrivatePtr *privates, void *addr, DevPrivateType type) in _dixInitPrivates() argument
449 *privates = addr; in _dixInitPrivates()
457 _dixFiniPrivates(PrivatePtr privates, DevPrivateType type) in _dixFiniPrivates() argument
[all …]
H A Dmeson.build22 'privates.c',
H A DMakefile.am32 privates.c \
H A DMakefile.in123 pixmap.lo privates.lo property.lo ptrveloc.lo region.lo \
162 ./$(DEPDIR)/privates.Plo ./$(DEPDIR)/property.Plo \
634 privates.c \
748 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/privates.Plo@am__quote@ # am--include-marker
968 -rm -f ./$(DEPDIR)/privates.Plo
1046 -rm -f ./$(DEPDIR)/privates.Plo
/OK3568_Linux_fs/external/xserver/glamor/
H A Dglamor_font.c36 glamor_font_t *privates; in glamor_font_get() local
53 privates = FontGetPrivate(font, glamor_font_private_index); in glamor_font_get()
54 if (!privates) { in glamor_font_get()
55 privates = calloc(glamor_font_screen_count, sizeof (glamor_font_t)); in glamor_font_get()
56 if (!privates) in glamor_font_get()
58 xfont2_font_set_private(font, glamor_font_private_index, privates); in glamor_font_get()
61 glamor_font = &privates[screen->myNum]; in glamor_font_get()
177 glamor_font_t *privates = FontGetPrivate(font, glamor_font_private_index); in glamor_unrealize_font() local
181 if (!privates) in glamor_unrealize_font()
184 glamor_font = &privates[screen->myNum]; in glamor_unrealize_font()
[all …]
H A Dglamor_egl.c78 scrn->privates[xf86GlamorEGLPrivateIndex].ptr; in glamor_egl_get_screen_private()
963 scrn->privates[xf86GlamorEGLPrivateIndex].ptr = glamor_egl; in glamor_egl_init()
/OK3568_Linux_fs/external/xserver/hw/xfree86/ramdac/
H A Dxf86RamDac.c82 ((RamDacScreenRecPtr) (pScrn)->privates[RamDacGetScreenIndex()].ptr); in RamDacInit()
106 if (scrp->privates[RamDacHWPrivateIndex].ptr != NULL) in RamDacGetRec()
108 if (scrp->privates[RamDacScreenPrivateIndex].ptr != NULL) in RamDacGetRec()
111 scrp->privates[RamDacHWPrivateIndex].ptr = in RamDacGetRec()
113 scrp->privates[RamDacScreenPrivateIndex].ptr = in RamDacGetRec()
133 (pScrn)->privates[RamDacGetScreenIndex()].ptr); in RamDacFreeRec()
H A Dxf86RamDac.h63 #define RAMDACHWPTR(p) ((RamDacHWRecPtr)((p)->privates[RamDacGetHWIndex()].ptr))
69 #define RAMDACSCRPTR(p) ((RamDacScreenRecPtr)((p)->privates[RamDacGetScreenIndex()].ptr))->RamDacRec
/OK3568_Linux_fs/external/xserver/hw/dmx/glxProxy/
H A Dglxext.h48 __GLXvisualConfig * configs, void **privates);
/OK3568_Linux_fs/external/xserver/hw/xfree86/common/
H A Dxf86Helper.c188 pScrn->privates = xnfcalloc(sizeof(DevUnion), xf86ScrnInfoPrivateCount); in xf86AllocateScreen()
248 free(pScrn->privates); in xf86DeleteScreen()
290 nprivs = xnfreallocarray(pScr->privates, in xf86AllocateScrnInfoPrivateIndex()
294 pScr->privates = nprivs; in xf86AllocateScrnInfoPrivateIndex()
298 nprivs = xnfreallocarray(pScr->privates, in xf86AllocateScrnInfoPrivateIndex()
302 pScr->privates = nprivs; in xf86AllocateScrnInfoPrivateIndex()
H A Dxf86str.h625 DevUnion *privates; /* Other privates can hook in member
/OK3568_Linux_fs/external/xserver/hw/xfree86/vgahw/
H A DvgaHW.h34 #define VGAHWPTR(p) ((vgaHWPtr)((p)->privates[vgaHWGetIndex()].ptr))
H A DvgaHW.c80 #define VGAHWPTRLVAL(p) (p)->privates[vgaHWPrivateIndex].ptr
/OK3568_Linux_fs/external/xserver/hw/xfree86/modes/
H A Dxf86Crtc.h835 #define XF86_CRTC_CONFIG_PTR(p) ((xf86CrtcConfigPtr) ((p)->privates[xf86CrtcConfigPrivateIndex].ptr…
H A Dxf86Crtc.c67 scrn->privates[xf86CrtcConfigPrivateIndex].ptr = config; in xf86CrtcConfigInit()
/OK3568_Linux_fs/external/xserver/hw/xfree86/fbdevhw/
H A Dfbdevhw.c54 #define FBDEVHWPTRLVAL(p) (p)->privates[fbdevHWPrivateIndex].ptr
/OK3568_Linux_fs/external/xserver/
H A DChangeLog1379 Xorg: ../include/privates.h:121: dixGetPrivateAddr: Assertion
2196 Xorg: ../include/privates.h:121: dixGetPrivateAddr: Assertion `key->initialized' failed.
2205 …7ffff7fb57c1 in dixGetPrivateAddr (privates=0x555555ab1b60, key=0x555555855720 <rrPrivKeyRec>) at …
2206 …00007ffff7fb5822 in dixGetPrivate (privates=0x555555ab1b60, key=0x555555855720 <rrPrivKeyRec>) at …
2207 …07ffff7fb586a in dixLookupPrivate (privates=0x555555ab1b60, key=0x555555855720 <rrPrivKeyRec>) at …
4118 #7 dixGetPrivate () at ../include/privates.h:122
4119 #8 dixLookupPrivate () at ../include/privates.h:166
4505 xwayland: Remove xwl_present_window from privates on cleanup
4551 remove it from the window's privates, and `xwl_present_abort_vblank()`
4554 Remove `xwl_present_window` from window's privates on cleanup so that no
[all …]