/solaris-x11-s11/open-src/kernel/sys/drm/ |
H A D | drm_sun_workqueue.h | 33 #define INIT_WORK(work, func) \ 34 init_work((work), ((taskq_func_t)(func))) 37 void (*func) (void *); member in struct:work_struct 47 extern void init_work(struct work_struct *work, void (*func)(void *));
|
H A D | drm_sun_timer.h | 41 void (*func)(void *); member in struct:timer_list 51 extern void setup_timer(struct timer_list *timer, void (*func)(void *), void *arg);
|
H A D | drm_sun_pci.h | 50 int func; member in struct:pci_dev
|
/solaris-x11-s11/open-src/kernel/drm/src/ |
H A D | drm_sun_timer.c | 43 setup_timer(struct timer_list *timer, void (*func)(void *), void *arg) 45 timer->func = func; 69 timer->timer_id = timeout(timer->func, timer->arg, expires); 87 timer->timer_id = timeout(timer->func, timer->arg, expires);
|
H A D | drm_sun_workqueue.c | 39 ASSERT(work->func != NULL); 45 if ((ret = ddi_taskq_dispatch(wq->taskq, work->func, work, DDI_SLEEP)) 52 init_work(struct work_struct *work, void (*func)(void *)) 54 work->func = func;
|
H A D | drm_msg.c | 31 drm_debug_print(int cmn_err, const char *func, int line, const char *fmt, ...) argument 37 func, line, fmt);
|
H A D | drm_drv.c | 361 drm_ioctl_t *func; local 389 func = ioctl->func; 392 func = dev->driver->dma_ioctl; 394 if (!func) { 435 retcode = func(dev_id, dev, kdata, file_priv, mode, credp);
|
H A D | drm_ioctl.c | 106 dev->pdev->domain, dev->pdev->bus, dev->pdev->slot, dev->pdev->func);
|
H A D | drm_sun_pci.c | 77 /* bus, slot, func */ 86 pdev->func = (int)PCI_FUNC(regs[0]);
|
/solaris-x11-s11/open-src/lib/DPS/sun-src/libdpstk/ |
H A D | CSBwraps.psw | 130 defineps _DPSCDoRGBColorPalette(DPSContext ctxt; char *func; 138 steps div red green blue 4 -1 roll func setrgbcolor 147 defineps _DPSCDoCMYKColorPalette(DPSContext ctxt; char *func; 156 steps div cyan magenta yellow black 5 -1 roll func setcmykcolor 165 defineps _DPSCDoHSBColorPalette(DPSContext ctxt; char *func; 174 steps div hue sat bright 4 -1 roll func sethsbcolor 183 defineps _DPSCDoGrayColorPalette(DPSContext ctxt; char *func; 191 steps div gray exch func setgray 201 defineps _DPSCDoRGBPalette(DPSContext ctxt; char *func; 209 steps div func setrgbcolo [all...] |
/solaris-x11-s11/open-src/kernel/efb/src/ |
H A D | drm_msg.c | 12 drm_debug_print(int cmn_err, const char *func, int line, const char *fmt, ...) argument 18 func, line, fmt);
|
H A D | radeon_io32.h | 14 int func; member in struct:drm_radeon_init_32
|
H A D | drm_irq.c | 193 switch (ctl.func) { 343 * \param func Driver callback. 353 drm_locked_tasklet(drm_device_t *dev, void (*func)(drm_device_t *)) 362 dev->locked_tasklet_func = func;
|
H A D | efb_drv.c | 805 efb_wait_fifo(efb_private_t *efb_priv, int n, const char *func, int line) argument 832 func, line, n, regr(RBBM_STATUS)); 839 efb_wait_idle(efb_private_t *efb_priv, const char *func, int line) argument 853 if (efb_wait_fifo(efb_priv, 64, func, line) != DDI_SUCCESS) { 860 if (efb_wait_fifo(efb_priv, 64, func, line) != DDI_SUCCESS) { 886 func, line, regr(RBBM_STATUS)); 897 efb_wait_host_data(efb_private_t *efb_priv, const char *func, int line) argument 911 if (efb_wait_fifo(efb_priv, 64, func, line) != DDI_SUCCESS) { 918 if (efb_wait_fifo(efb_priv, 64, func, line) != DDI_SUCCESS) { 960 func, lin [all...] |
H A D | drm_pci.c | 54 pci_get_info(drm_device_t *softstate, int *bus, int *slot, int *func) argument 67 *func = (int)PCI_FUNCTION(regs_list[0]);
|
H A D | drm_drv.c | 50 drm_set_ioctl_desc(int n, drm_ioctl_t *func, int auth_needed, argument 53 drm_ioctls[n].func = func; 519 DRM_ERROR("drm_get_businfo: get bus slot func error "); 522 DRM_DEBUG("drm_get_businfo: pci bus: %d, pci slot :%d pci func %d",
|
H A D | drm_sunmod.c | 323 drm_ioctl_t *func; local 371 if (ioctl->func == NULL && nr >= DRM_COMMAND_BASE) { 382 func = ioctl->func; 383 if (func == NULL) { 400 retval = func(dp, arg, fpriv, mode);
|
H A D | drmP.h | 312 int (*func)(DRM_IOCTL_ARGS); member in struct:drm_ioctl_desc 732 void drm_locked_tasklet(drm_device_t *, void(*func)(drm_device_t *)); 826 extern void drm_debug_print(int cmn_err, const char* func, int line,
|
H A D | radeon_drm.h | 569 } func; member in struct:drm_radeon_init 600 } func; member in struct:drm_radeon_fullscreen
|
/solaris-x11-s11/open-src/app/gfx-utils/sun-src/fbconf_xorg/xf86/ |
H A D | Configint.h | 107 #define HANDLE_RETURN(f,func)\ 108 if ((ptr->f=func) == NULL)\ 114 #define HANDLE_LIST(field,func,type)\ 116 type p = func ();\
|
/solaris-x11-s11/open-src/app/gfx-utils/sun-src/gfx_common/vts/include/ |
H A D | gfx_vts.h | 52 const char *func, /* Name of function to report */
|
/solaris-x11-s11/open-src/kernel/i915/src/ |
H A D | i915_drv.h | 404 #define DEV_INFO_FOR_EACH_FLAG(func, sep) \ 405 func(is_mobile) sep \ 406 func(is_i85x) sep \ 407 func(is_i915g) sep \ 408 func(is_i945gm) sep \ 409 func(is_g33) sep \ 410 func(need_gfx_hws) sep \ 411 func(is_g4x) sep \ 412 func(is_pineview) sep \ 413 func(is_broadwate [all...] |
H A D | i915_drm.h | 52 } func; member in struct:_drm_i915_init 259 [DRM_IOCTL_NR(ioctl) - DRM_COMMAND_BASE] = {.cmd = ioctl, .flags = _flags, .func = _func, .copyin32 = _copyin32, .copyout32 = _copyout32} 262 [DRM_IOCTL_NR(ioctl) - DRM_COMMAND_BASE] = {.cmd = ioctl, .flags = _flags, .func = _func, .copyin32 = NULL, .copyout32 = NULL}
|
/solaris-x11-s11/open-src/app/gfx-utils/sun-src/gfx_common/vts/ |
H A D | gfx_vts.c | 80 const char *func, /* Name of function to report */ 88 fprintf(stderr, "%s: ", func); 78 TraceMessage( int flags, const char *func, const char *format, ...) argument
|
/solaris-x11-s11/open-src/lib/libdga/sun-src/ |
H A D | dga.h | 186 #define DGA_CASTFUNC(func) ((DgaDrawUpdateFunc)(func))
|