/src/sys/dev/mca/ |
com_mca.c | 219 int pos2; local in function:ibm_modem_getcfg 222 pos2 = mca_conf_read(ma->ma_mc, ma->ma_slot, 2); 231 snum = (pos2 & 0x0e) >> 1; 245 int pos2, pos3, pos4; local in function:neocom1_getcfg 248 pos2 = mca_conf_read(ma->ma_mc, ma->ma_slot, 2); 263 * POS register 4: (adf pos2) 270 *irqp = neotech_irq[(pos2 & 0x06) >> 1]; 282 int snum, pos2; local in function:ibm_mpcom_getcfg 284 pos2 = mca_conf_read(ma->ma_mc, ma->ma_slot, 2); 295 if (pos2 & 0x10) [all...] |
if_ne_mca.c | 139 int pos2, iobase, irq; local in function:ne_mca_attach 144 pos2 = mca_conf_read(ma->ma_mc, ma->ma_slot, 2); 161 iobase = ne_mca_iobase[(pos2 & 0x0e) >> 1]; 162 irq = ne_mca_irq[(pos2 & 0x60) >> 5];
|
if_tra_mca.c | 130 int pos2; local in function:tiara_mca_attach 134 pos2 = mca_conf_read(ma->ma_mc, ma->ma_slot, 2); 152 * POS register 4: (adf pos2) not used 160 iobase = 0x1200 + ((pos2 & 0xf0) << 1); 161 irq = tiara_irq[((pos2 & 0x0c) >> 2)]; 184 iobase = smc_iobase[((pos2 & 0x0e) >> 1)]; 185 if ((pos2 & 0x80) != 0) 186 irq = smc_irq[((pos2 & 0x70) >> 4)];
|
esp_mca.c | 143 int pos2, pos3, pos5; local in function:esp_mca_attach 177 pos2 = mca_conf_read(ma->ma_mc, ma->ma_slot, 2); 181 iobase = ncrmca_iobase[(pos2 & 0x0e) >> 1]; 182 irq = 3 + 2 * ((pos2 & 0x30) >> 4);
|
if_elmc_mca.c | 107 int pos2, pos3, i, revision; local in function:elmc_mca_attach 112 pos2 = mca_conf_read(ma->ma_mc, ma->ma_slot, 2); 134 iobase = ELMC_IOADDR_BASE + (0x1000 * ((pos2 & 0x6) >> 1)); 148 pbram_addr = ELMC_MADDR_BASE + (((pos2 & 0x18) >> 3) * 0x8000); 255 (pos2 & 0x20) ? "ex" : "in");
|
if_le_mca.c | 134 int i, pos2, pos3, pos4, irq, membase; local in function:le_mca_attach 165 * POS register 4: (adf pos2) 178 pos2 = mca_conf_read(ma->ma_mc, ma->ma_slot, 2); 179 irq = (pos2 & (1<<4)) ? 11 : 10; 180 membase = 0xc0000 + ((pos2 & 0x0e) >> 1) * 0x4000; 198 pos2 = mca_conf_read(ma->ma_mc, ma->ma_slot, 2); 199 if ((pos2 & 0x01) == 0) { 201 mca_conf_write(ma->ma_mc, ma->ma_slot, 2, pos2 | 0x01);
|
if_we_mca.c | 159 int pos2, pos3, pos5; local in function:we_mca_attach 163 pos2 = mca_conf_read(ma->ma_mc, ma->ma_slot, 2); 224 iobase = 0x200 + (((pos2 & 0x0e) >> 1) * 0x020); 230 iobase = 0x800 + (((pos2 & 0xf0) >> 4) * 0x1000);
|
edc_mca.c | 147 int pos2, pos3, pos4; local in function:edc_mca_attach 155 pos2 = mca_conf_read(ma->ma_mc, ma->ma_slot, 2); 177 * POS register 4: (adf pos2) 199 iobase = (pos2 & IO_IS_ALT) ? ESDIC_IOALT : ESDIC_IOPRM; 200 drq = (pos2 & DRQ_MASK) >> 2; 219 (pos2 & FAIRNESS_ENABLE) ? "On" : "Off",
|
/src/sys/external/bsd/drm2/dist/drm/radeon/ |
radeon_rs600.c | 76 u32 pos1, pos2; local in function:avivo_is_counter_moving 79 pos2 = RREG32(AVIVO_D1CRTC_STATUS_POSITION + crtc_offsets[crtc]); 81 if (pos1 != pos2)
|
radeon_evergreen.c | 1366 u32 pos1, pos2; local in function:dce4_is_counter_moving 1369 pos2 = RREG32(EVERGREEN_CRTC_STATUS_POSITION + crtc_offsets[crtc]); 1371 if (pos1 != pos2)
|
/src/sys/fs/udf/ |
udf_allocation.c | 367 uint32_t *pos1, *pos2; local in function:udf_calc_freespace 394 pos2 = &lvid->tables[0] + num_vpart + vpart; 397 *sizeblks += udf_rw32(*pos2);
|