Searched refs:where (Results 1 - 6 of 6) sorted by relevance
/solaris-x11-s11/open-src/kernel/sys/drm/ |
H A D | drm_sun_pci.h | 73 extern void pci_read_config_byte(struct pci_dev *dev, int where, u8 *val); 74 extern void pci_read_config_word(struct pci_dev *dev, int where, u16 *val); 75 extern void pci_read_config_dword(struct pci_dev *dev, int where, u32 *val); 76 extern void pci_write_config_byte(struct pci_dev *dev, int where, u8 val); 77 extern void pci_write_config_word(struct pci_dev *dev, int where, u16 val); 78 extern void pci_write_config_dword(struct pci_dev *dev, int where, u32 val);
|
/solaris-x11-s11/open-src/kernel/drm/src/ |
H A D | drm_sun_pci.c | 149 void pci_read_config_byte(struct pci_dev *pdev, int where, u8 *val) argument 151 *val = pci_config_get8(pdev->pci_cfg_acc_handle, where); 154 void pci_read_config_word(struct pci_dev *pdev, int where, u16 *val) argument 156 *val = pci_config_get16(pdev->pci_cfg_acc_handle, where); 159 void pci_read_config_dword(struct pci_dev *pdev, int where, u32 *val) argument 161 *val = pci_config_get32(pdev->pci_cfg_acc_handle, where); 164 void pci_write_config_byte(struct pci_dev *pdev, int where, u8 val) argument 166 pci_config_put8(pdev->pci_cfg_acc_handle, where, val); 169 void pci_write_config_word(struct pci_dev *pdev, int where, u16 val) argument 171 pci_config_put16(pdev->pci_cfg_acc_handle, where, va 174 pci_write_config_dword(struct pci_dev *pdev, int where, u32 val) argument [all...] |
/solaris-x11-s11/open-src/lib/DPS/sun-src/libdps/ |
H A D | psdataops.psw | 251 where b
|
H A D | dpsdataops.psw | 252 where b
|
/solaris-x11-s11/open-src/kernel/i915/src/ |
H A D | i915_dma.c | 287 * that tells us where the next instruction to check is. Any illegal 1159 int i915_bridge_dev_read_config_word(struct drm_i915_bridge_dev *bridge_dev, int where, u16 *val) argument 1161 u16 data = (u16)where; 1171 int i915_bridge_dev_write_config_word(struct drm_i915_bridge_dev *bridge_dev, int where, u16 val) argument 1173 u32 data = (u16)where << 16 | val; 1259 * tiny window where we will loose hotplug notifactions.
|
H A D | i915_drv.h | 941 * This is important for lock-free wait paths, where no contended lock 1222 * being released or under memory pressure (where we attempt to 1610 extern int i915_bridge_dev_read_config_word(struct drm_i915_bridge_dev *bridge_dev, int where, u16 *val); 1611 extern int i915_bridge_dev_write_config_word(struct drm_i915_bridge_dev *bridge_dev, int where, u16 val); 1892 const char *where, uint32_t mark);
|
Completed in 28 milliseconds