Home
last modified time | relevance | path

Searched refs:bsr (Results 1 – 9 of 9) sorted by relevance

/freebsd-13-stable/sys/dev/bhnd/
HDbhnd_subr.c1495 bhnd_service_registry_init(struct bhnd_service_registry *bsr) in bhnd_service_registry_init() argument
1497 STAILQ_INIT(&bsr->entries); in bhnd_service_registry_init()
1498 mtx_init(&bsr->lock, "bhnd_service_registry lock", NULL, MTX_DEF); in bhnd_service_registry_init()
1514 bhnd_service_registry_fini(struct bhnd_service_registry *bsr) in bhnd_service_registry_fini() argument
1519 mtx_lock(&bsr->lock); in bhnd_service_registry_fini()
1520 STAILQ_FOREACH_SAFE(entry, &bsr->entries, link, enext) { in bhnd_service_registry_fini()
1524 STAILQ_REMOVE(&bsr->entries, entry, bhnd_service_entry, link); in bhnd_service_registry_fini()
1528 if (!STAILQ_EMPTY(&bsr->entries)) { in bhnd_service_registry_fini()
1529 mtx_unlock(&bsr->lock); in bhnd_service_registry_fini()
1532 mtx_unlock(&bsr->lock); in bhnd_service_registry_fini()
[all …]
HDbhnd.h561 struct bhnd_service_registry *bsr);
563 struct bhnd_service_registry *bsr);
565 struct bhnd_service_registry *bsr,
570 struct bhnd_service_registry *bsr,
574 struct bhnd_service_registry *bsr,
577 struct bhnd_service_registry *bsr,
/freebsd-13-stable/sys/dev/firewire/
HDfwohci_pci.c254 sc->bsr = bus_alloc_resource_any(self, SYS_RES_MEMORY, &rid, RF_ACTIVE); in fwohci_pci_attach()
255 if (!sc->bsr) { in fwohci_pci_attach()
260 sc->bst = rman_get_bustag(sc->bsr); in fwohci_pci_attach()
261 sc->bsh = rman_get_bushandle(sc->bsr); in fwohci_pci_attach()
331 if (sc->bsr) in fwohci_pci_detach()
359 if (sc->bsr) { in fwohci_pci_detach()
360 bus_release_resource(self, SYS_RES_MEMORY, PCI_CBMEM, sc->bsr); in fwohci_pci_detach()
361 sc->bsr = NULL; in fwohci_pci_detach()
HDfwohcivar.h46 struct resource *bsr; member
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/CSKY/
HDCSKYInstrAlias.td19 def : InstAlias<"bsr $dst", (BSR32 call_symbol:$dst)>;
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/X86/
HDX86InstrMisc.td277 "bsr{w}\t{$src, $dst|$dst, $src}",
281 "bsr{w}\t{$src, $dst|$dst, $src}",
285 "bsr{l}\t{$src, $dst|$dst, $src}",
289 "bsr{l}\t{$src, $dst|$dst, $src}",
293 "bsr{q}\t{$src, $dst|$dst, $src}",
297 "bsr{q}\t{$src, $dst|$dst, $src}",
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/M68k/
HDM68kInstrControl.td240 : MxInst<(outs), (ins TARGET:$dst), "bsr."#TYPE.Prefix#"\t$dst"> {
/freebsd-13-stable/contrib/llvm-project/openmp/runtime/src/
HDz_Linux_asm.S1281 bsr %edi,%eax
/freebsd-13-stable/sys/dev/usb/controller/
HDxhci.c1320 uint8_t bsr, uint8_t slot_id) in xhci_cmd_set_address() argument
1332 if (bsr) in xhci_cmd_set_address()