| /src/sys/arch/arm/cortex/ | 
| gicv3_its.c | 182 gits_command_mapd(struct gicv3_its *its, uint32_t deviceid, uint64_t itt_addr, u_int size, bool v) 189 	 * Map a device table entry (DeviceID) to its associated ITT (ITT_addr).
 192 	cmd.dw[0] = GITS_CMD_MAPD | ((uint64_t)deviceid << 32);
 198 	DPRINTF(("ITS #%u: MAPD deviceid 0x%x itt_addr 0x%lx size %u valid %u\n",
 199 	    its->its_id, deviceid, itt_addr, size, v));
 205 gits_command_mapti(struct gicv3_its *its, uint32_t deviceid, uint32_t eventid, uint32_t pintid, uint16_t icid)
 210 	 * Map the event defined by EventID and DeviceID to its associated ITE, defined by ICID and pINTID
 211 	 * in the ITT associated with DeviceID.
 214 	cmd.dw[0] = GITS_CMD_MAPTI | ((uint64_t)deviceid << 32);
 218 	DPRINTF(("ITS #%u: MAPTI deviceid 0x%x eventid 0x%x pintid 0x%x icid 0x%x\n"
 [all...]
 | 
| /src/sys/dev/pci/ | 
| if_alc.c | 586 		if (vendor == ident->vendorid && devid == ident->deviceid) 627 		switch (sc->alc_ident->deviceid) {
 678 		switch (sc->alc_ident->deviceid) {
 829 	if (sc->alc_ident->deviceid == PCI_PRODUCT_ATTANSIC_AR8152_B) {
 837 	if (sc->alc_ident->deviceid == PCI_PRODUCT_ATTANSIC_AR8151 ||
 838 	    sc->alc_ident->deviceid == PCI_PRODUCT_ATTANSIC_AR8151_V2 ||
 839 	    sc->alc_ident->deviceid == PCI_PRODUCT_ATTANSIC_AR8152_B ||
 840 	    sc->alc_ident->deviceid == PCI_PRODUCT_ATTANSIC_AR8152_B2) {
 849 	if (sc->alc_ident->deviceid == PCI_PRODUCT_ATTANSIC_AR8151) {
 855 	if (sc->alc_ident->deviceid == PCI_PRODUCT_ATTANSIC_AR8131 |
 [all...]
 | 
| if_alcreg.h | 1434 	uint16_t	deviceid;  member in struct:alc_ident 
 | 
| /src/sys/arch/prep/prep/ | 
| residual.c | 183  * Count the number of a specific deviceid on the pnp tree. 192 	char deviceid[8];  local in function:count_pnp_devices
 198 		DEVICE_ID *id = &ppc_dev[i].DeviceId;
 200 		pnp_devid_to_string(id->DevId, deviceid);
 201 		if (strcmp(deviceid, devid) == 0)
 217 	char deviceid[8];  local in function:find_nth_pnp_device
 227 		DEVICE_ID *id = &ppc_dev[i].DeviceId;
 235 		pnp_devid_to_string(id->DevId, deviceid);
 236 		if (strcmp(deviceid, devid) == 0) {
 316 	char deviceid[9]  local in function:print_residual_device_info
 [all...]
 | 
| /src/sys/dev/ | 
| ipmivar.h | 134 	uint8_t		deviceid;  member in struct:ipmi_device_id 
 | 
| ipmi.c | 2098 	if (id.deviceid != 0) { 2100 			id.deviceid, (id.revision & 0xf),
 
 | 
| /src/sys/dev/pci/cxgb/ | 
| cxgb_main.c | 227     int vendorid, deviceid;  local in function:cxgb_get_ident 230     deviceid = PCI_PRODUCT(pci_conf_read(pa->pa_pc, pa->pa_tag, PCI_ID_REG));
 234             (id->device == deviceid)) {
 
 | 
| /src/usr.sbin/acpitools/acpidump/ | 
| acpi.c | 63 static void	acpi_print_pci(uint16_t vendorid, uint16_t deviceid, 273 acpi_print_pci(uint16_t vendorid, uint16_t deviceid,
 276 	if (vendorid == 0xffff && deviceid == 0xffff) {
 283 	printf("\t\tDevice=0x%x\n", deviceid);
 1314 	printf("\tDeviceId=0x%08x\n", grp->DeviceId);
 3330 		printf("\tDeviceId=0x%04x\n", (u_int)ctlreg->DeviceId);
 
 | 
| /src/sys/fs/nfs/client/ | 
| nfs_clstate.c | 4874  * Search for a devinfo by deviceid. If one is found, return it after 4878 nfscl_getdevinfo(struct nfsclclient *clp, uint8_t *deviceid,
 4884 		dip = nfscl_finddevinfo(clp, deviceid);
 4931  * Find a devinfo for this deviceid. Return NULL upon failure.
 4934 nfscl_finddevinfo(struct nfsclclient *clp, uint8_t *deviceid)
 4939 		if (NFSBCMP(dip->nfsdi_deviceid, deviceid, NFSX_V4DEVICEID)
 
 | 
| nfs_clrpcops.c | 4864 nfsrpc_getdeviceinfo(struct nfsmount *nmp, uint8_t *deviceid, int layouttype, 4881 	NFSBCOPY(deviceid, tl, NFSX_V4DEVICEID);
 4927 		NFSBCOPY(deviceid, ndi->nfsdi_deviceid, NFSX_V4DEVICEID);
 
 | 
| /src/sys/external/bsd/drm2/dist/drm/amd/include/ | 
| atomfirmware.h | 3164   uint16_t  deviceid;        //0x5A  member in struct:vfct_image_header 
 |