| /openbsd/src/sys/dev/tc/ |
| D | asc_tc.c | 51 struct asc_softc asc; member 121 struct asc_tc_softc *asc = (struct asc_tc_softc *)self; local 122 struct ncr53c9x_softc *sc = &asc->asc.sc_ncr53c9x; 128 asc->asc.sc_bst = ta->ta_memt; 129 asc->asc.sc_dmat = ta->ta_dmat; 130 if (bus_space_map(asc->asc.sc_bst, ta->ta_addr, 131 PMAZ_OFFSET_RAM + PMAZ_RAM_SIZE, 0, &asc->asc.sc_bsh)) { 135 asc->sc_base = (caddr_t)ta->ta_addr; /* XXX XXX XXX */ 187 struct asc_tc_softc *asc = (struct asc_tc_softc *)sc; local 189 asc->asc.sc_flags &= ~(ASC_DMAACTIVE|ASC_MAPLOADED); [all …]
|
| D | asc_tcds.c | 77 struct asc_softc asc; member 137 struct asc_tcds_softc *asc = (struct asc_tcds_softc *)self; local 138 struct ncr53c9x_softc *sc = &asc->asc.sc_ncr53c9x; 146 asc->asc.sc_bst = tcdsdev->tcdsda_bst; 147 asc->asc.sc_bsh = tcdsdev->tcdsda_bsh; 148 asc->sc_tcds = tcdsdev->tcdsda_sc; 156 asc->asc.sc_dmat = tcdsdev->tcdsda_dmat; 157 if ((error = bus_dmamap_create(asc->asc.sc_dmat, NBPG, 1, NBPG, 158 NBPG, BUS_DMA_NOWAIT, &asc->asc.sc_dmamap)) < 0) { 218 struct asc_tcds_softc *asc = (struct asc_tcds_softc *)sc; local [all …]
|
| D | asc.c | 81 struct asc_softc *asc = (struct asc_softc *)sc; local 84 v = bus_space_read_4(asc->sc_bst, asc->sc_bsh, 96 struct asc_softc *asc = (struct asc_softc *)sc; local 98 bus_space_write_4(asc->sc_bst, asc->sc_bsh,
|
| D | files.tc | 37 device asc: ncr53c9x, scsi 38 file dev/tc/asc.c asc 39 attach asc at tc with asc_tc 41 attach asc at tcds with asc_tcds
|
| D | bba.c | 634 bba_codec_dwrite(struct am7930_softc *asc, int reg, uint8_t val) in bba_codec_dwrite() argument 636 struct bba_softc *sc = (struct bba_softc *)asc; in bba_codec_dwrite() 647 bba_codec_dread(struct am7930_softc *asc, int reg) in bba_codec_dread() argument 649 struct bba_softc *sc = (struct bba_softc *)asc; in bba_codec_dread()
|
| D | tcdevs | 62 device PMAZ-AB asc 53c94 SCSI Controller 72 device PMAZ-AA asc 53c94 SCSI Controller
|
| /openbsd/src/sys/dev/pci/ |
| D | agp_ali.c | 99 struct agp_ali_softc *asc = (struct agp_ali_softc *)self; in agp_ali_attach() local 105 asc->asc_tag = pa->pa_tag; in agp_ali_attach() 106 asc->asc_pc = pa->pa_pc; in agp_ali_attach() 107 asc->asc_apsize = agp_ali_get_aperture(asc); in agp_ali_attach() 110 PCI_MAPREG_TYPE_MEM, &asc->asc_apaddr, NULL, NULL) != 0) { in agp_ali_attach() 116 gatt = agp_alloc_gatt(pa->pa_dmat, asc->asc_apsize); in agp_ali_attach() 123 asc->asc_apsize /= 2; in agp_ali_attach() 124 if (agp_ali_set_aperture(asc, asc->asc_apsize)) { in agp_ali_attach() 129 asc->gatt = gatt; in agp_ali_attach() 132 reg = pci_conf_read(asc->asc_pc, asc->asc_tag, AGP_ALI_ATTBASE); in agp_ali_attach() [all …]
|
| D | agp_apple.c | 98 struct agp_apple_softc *asc = (struct agp_apple_softc *)self; in agp_apple_attach() local 103 asc->asc_tag = pa->pa_tag; in agp_apple_attach() 104 asc->asc_pc = pa->pa_pc; in agp_apple_attach() 110 asc->asc_flags |= AGP_APPLE_ISU3; in agp_apple_attach() 121 asc->asc_apaddr = 0x00; in agp_apple_attach() 122 pci_conf_write(asc->asc_pc, asc->asc_tag, AGP_APPLE_APBASE, in agp_apple_attach() 123 asc->asc_apaddr); in agp_apple_attach() 129 asc->asc_apsize = 256 * M; in agp_apple_attach() 131 gatt = agp_alloc_gatt(pa->pa_dmat, asc->asc_apsize); in agp_apple_attach() 135 asc->asc_apsize /= 2; in agp_apple_attach() [all …]
|
| D | agp_amd.c | 44 #define READ2(off) bus_space_read_2(asc->iot, asc->ioh, off) 45 #define READ4(off) bus_space_read_4(asc->iot, asc->ioh, off) 46 #define WRITE2(off,v) bus_space_write_2(asc->iot, asc->ioh, off, v) 47 #define WRITE4(off,v) bus_space_write_4(asc->iot, asc->ioh, off, v) 172 struct agp_amd_softc *asc = (struct agp_amd_softc *)self; in agp_amd_attach() local 179 asc->asc_pc = pa->pa_pc; in agp_amd_attach() 180 asc->asc_tag = pa->pa_tag; in agp_amd_attach() 183 PCI_MAPREG_TYPE_MEM, &asc->asc_apaddr, NULL, NULL) != 0) { in agp_amd_attach() 189 PCI_MAPREG_TYPE_MEM, 0, &asc->iot, &asc->ioh, NULL, NULL, 0); in agp_amd_attach() 195 asc->asc_apsize = agp_amd_get_aperture(asc); in agp_amd_attach() [all …]
|
| /openbsd/src/sys/arch/arm64/dev/ |
| D | aplns.c | 181 struct nvme_ans_softc *asc = (struct nvme_ans_softc *)self; in nvme_ans_attach() local 182 struct nvme_softc *sc = &asc->asc_nvme; in nvme_ans_attach() 197 asc->asc_iot = faa->fa_iot; in nvme_ans_attach() 198 if (bus_space_map(asc->asc_iot, faa->fa_reg[1].addr, in nvme_ans_attach() 199 faa->fa_reg[1].size, 0, &asc->asc_ioh)) { in nvme_ans_attach() 212 asc->asc_node = faa->fa_node; in nvme_ans_attach() 213 asc->asc_sart = OF_getpropint(faa->fa_node, "apple,sart", 0); in nvme_ans_attach() 214 asc->asc_rtkit.rk_cookie = asc; in nvme_ans_attach() 215 asc->asc_rtkit.rk_dmat = faa->fa_dmat; in nvme_ans_attach() 216 asc->asc_rtkit.rk_map = nvme_ans_sart_map; in nvme_ans_attach() [all …]
|
| D | smmu_acpi.c | 61 struct smmu_acpi_softc *asc = (struct smmu_acpi_softc *)self; in smmu_acpi_attach() local 62 struct smmu_softc *sc = &asc->sc_smmu; in smmu_acpi_attach() 116 asc->sc_gih = acpi_intr_establish(girq->nsgirpt_gsiv, in smmu_acpi_attach() 120 if (asc->sc_gih == NULL) in smmu_acpi_attach()
|
| /openbsd/src/gnu/llvm/clang/lib/Analysis/ |
| D | CFG.cpp | 546 CFGBlock *VisitInitListExpr(InitListExpr *ILE, AddStmtChoice asc); 547 CFGBlock *VisitAddrLabelExpr(AddrLabelExpr *A, AddStmtChoice asc); 548 CFGBlock *VisitAttributedStmt(AttributedStmt *A, AddStmtChoice asc); 549 CFGBlock *VisitBinaryOperator(BinaryOperator *B, AddStmtChoice asc); 551 CFGBlock *VisitCallExpr(CallExpr *C, AddStmtChoice asc); 553 CFGBlock *VisitChooseExpr(ChooseExpr *C, AddStmtChoice asc); 556 AddStmtChoice asc); 559 AddStmtChoice asc); 561 CFGBlock *VisitCXXConstructExpr(CXXConstructExpr *C, AddStmtChoice asc); 562 CFGBlock *VisitCXXNewExpr(CXXNewExpr *DE, AddStmtChoice asc); [all …]
|
| /openbsd/src/usr.sbin/httpd/ |
| D | js.h.in | 5 const compare = (idx, asc) => (a, b) => ((v1, v2) => 7 )(rowValue(asc ? a : b, idx), rowValue(asc ? b : a, idx)); 17 .sort(compare(Array.from(th.parentNode.children).indexOf(th), this.asc = !this.asc))
|
| /openbsd/src/lib/libcrypto/pkcs12/ |
| D | p12_utl.c | 70 OPENSSL_asc2uni(const char *asc, int asclen, unsigned char **uni, int *unilen) in OPENSSL_asc2uni() argument 76 ulen = strlen(asc); in OPENSSL_asc2uni() 92 unitmp[i + 1] = *asc++; in OPENSSL_asc2uni()
|
| D | pkcs12.h | 190 unsigned char *OPENSSL_asc2uni(const char *asc, int asclen,
|
| /openbsd/src/regress/sbin/isakmpd/crypto/ |
| D | cryptotest.c | 60 static void asc2bin (u_int8_t *bin, u_int8_t *asc, u_int16_t len) in asc2bin() argument 64 for (i = 0; i < len; i += 2, asc += 2) in asc2bin() 66 *bin++ = hexchar2bin(asc); in asc2bin()
|
| /openbsd/src/games/phantasia/ |
| D | Makefile | 19 setup: phantglobs.o.bld setup.o monsters.asc ${DPADD} 24 ./setup -m ${.CURDIR}/monsters.asc
|
| /openbsd/src/share/man/man4/man4.alpha/ |
| D | Makefile | 3 MAN= apecs.4 asc.4 autoconf.4 bba.4 cia.4 intro.4 ioasic.4 irongate.4 \
|
| /openbsd/src/sys/scsi/ |
| D | scsi_base.c | 1818 asc2ascii(u_int8_t asc, u_int8_t ascq, char *result, size_t len) in asc2ascii() argument 1820 snprintf(result, len, "ASC 0x%02x ASCQ 0x%02x", asc, ascq); in asc2ascii() 1824 u_int8_t asc, ascq; member 2475 asc2ascii(u_int8_t asc, u_int8_t ascq, char *result, size_t len) in asc2ascii() argument 2480 switch (asc) { in asc2ascii() 2503 if (adesc[i].asc == asc && adesc[i].ascq == ascq) { in asc2ascii() 2510 snprintf(result, len, "ASC 0x%02x ASCQ 0x%02x", asc, ascq); in asc2ascii()
|
| /openbsd/src/gnu/llvm/compiler-rt/lib/hwasan/ |
| D | hwasan.cpp | 167 AllocatorStatCounters asc; in HwasanFormatMemoryUsage() local 168 GetAllocatorStats(asc); in HwasanFormatMemoryUsage() 176 sds.allocated, sds.n_uniq_ids, asc[AllocatorStatMapped]); in HwasanFormatMemoryUsage()
|
| /openbsd/src/sys/arch/sparc64/dev/ |
| D | psycho.c | 339 struct psycho_softc *asc = in psycho_attach() local 342 if (asc == NULL || asc == sc) in psycho_attach() 346 if (asc->sc_basepaddr != sc->sc_basepaddr) in psycho_attach() 351 osc = asc; in psycho_attach()
|
| /openbsd/src/gnu/llvm/clang/utils/analyzer/ |
| D | Dockerfile | 11 RUN wget -O - https://apt.kitware.com/keys/kitware-archive-latest.asc 2>/dev/null | gpg --dearmor -…
|
| /openbsd/src/sys/dev/usb/ |
| D | umassvar.h | 123 uByte asc; member
|
| /openbsd/src/etc/ |
| D | MAKEDEV.common | 149 target(all, asc, 0)dnl 434 __devitem(asc, asc*, ASC Audio device)dnl 435 _mkdev(asc, asc*, {-M asc$U major_asc_c 0-})dnl
|
| /openbsd/src/sys/arch/alpha/conf/ |
| D | RAMDISKBIG | 82 asc* at tcds? 83 asc* at tc?
|