/src/sys/arch/playstation2/playstation2/ |
bus_space.c | 152 struct playstation2_bus_space *pbs = (void *)__UNCONST(t); local in function:bus_space_create 154 if (pbs == NULL) 155 pbs = kmem_zalloc(sizeof(*pbs), KM_NOSLEEP); 156 KDASSERT(pbs); 159 *pbs = _default_bus_space; 160 pbs->pbs_cookie = pbs; 164 pbs->pbs_base_addr = addr; /* no extent */ 166 pbs->pbs_extent = extent_create(name, addr, addr + size - 1 180 struct playstation2_bus_space *pbs = (void *)__UNCONST(t); local in function:bus_space_destroy 200 struct playstation2_bus_space *pbs = t; local in function:_default_map 238 struct playstation2_bus_space *pbs = t; local in function:_default_alloc 273 struct playstation2_bus_space *pbs = t; local in function:_default_free 283 struct playstation2_bus_space *pbs = t; local in function:_default_unmap [all...] |
/src/sys/arch/arm/fdt/ |
pcihost_fdt.c | 667 struct pcih_bus_space * const pbs = t; local in function:pcihost_bus_space_map 669 if ((pbs->flags & PCI_FLAGS_IO_OKAY) != 0) { 674 for (size_t i = 0; i < pbs->nranges; i++) { 675 const bus_addr_t rmin = pbs->ranges[i].bpci; 676 const bus_addr_t rmax = pbs->ranges[i].bpci - 1 + pbs->ranges[i].size; 678 return pbs->map(t, bpa - pbs->ranges[i].bpci + pbs->ranges[i].bbus, size, flag, bshp);
|
/src/sys/arch/riscv/fdt/ |
pcihost_fdt.c | 622 struct pcih_bus_space * const pbs = t; local in function:pcihost_bus_space_map 624 for (size_t i = 0; i < pbs->nranges; i++) { 625 const bus_addr_t rmin = pbs->ranges[i].bpci; 626 const bus_addr_t rmax = pbs->ranges[i].bpci - 1 + pbs->ranges[i].size; 628 return pbs->map(t, bpa - pbs->ranges[i].bpci + pbs->ranges[i].bbus, size, flag, bshp);
|
/src/sys/dev/tc/ |
stic.c | 866 uint32_t *pb, *pbs; local in function:stic_copyrows 901 pbs = (*si->si_pbuf_get)(si); 902 pb = pbs; 917 (*si->si_pbuf_post)(si, pbs); 927 uint32_t *pb, *pbs; local in function:stic_copycols 955 pbs = (*si->si_pbuf_get)(si); 956 pb = pbs; 970 (*si->si_pbuf_post)(si, pbs);
|