/src/sys/ddb/ |
db_sym.c | 148 struct db_sift_args *dsa; local in function:db_sift 150 dsa = (struct db_sift_args*)arg; 152 find = dsa->symstr; /* String we're looking for. */ 166 if (dsa->mode=='F') /* ala ls -F */ 190 struct db_sift_args dsa; local in function:db_sifting 193 dsa.symstr = symstr; 194 dsa.mode = mode; 195 (*db_symformat->sym_forall)(NULL, db_sift, &dsa);
|
/src/sys/dev/ic/ |
esiopvar.h | 38 uint32_t dsa; /* DSA of the xfer. The first 2 bits holds flags */ member in struct:esiop_slot 80 /* DSA table descriptor for tags. Free tables are in a list */ 84 uint32_t tbl_dsa; /* DSA of base of this table */ 89 /* DSA table block descriptor. */ 106 struct esiop_dsatbl *lun_tagtbl; /* the tag DSA table */ 116 uint32_t lun_table_offset; /* pointer to our DSA table */ 126 offset = esiop_cmd->cmd_c.dsa - 142 struct tbl_list free_tagtbl; /* list of free tag DSA tables */ 143 struct tblblk_list tag_tblblk; /* tag DSA table blocks * [all...] |
esiop.c | 173 "size of tag DSA table different from the done ring\n"); 226 /* then the targets DSA table */ 346 /* write pointer of base of target DSA table */ 383 printf ("start script DSA 0x%lx DSP 0x%lx\n", \ 384 esiop_cmd->cmd_c.dsa, \ 440 "DSA=0x%x DSP=0x%lx\n", istat, tflags, 500 printf("single step dsp 0x%08x dsa 0x08%x\n", 528 printf(", DSP=0x%x DSA=0x%x: ", 554 "DSA=0x%x DSP=0x%lx\n", sist, sstat1, 574 printf("DSA=0x%x DSP=0x%lx\n" 1879 bus_addr_t dsa; local in function:esiop_morecbd [all...] |
siop.c | 280 printf ("start script DSA 0x%lx DSP 0x%lx\n", \ 281 siop_cmd->cmd_c.dsa, \ 305 bus_addr_t dsa; local in function:siop_intr 325 /* use DSA to find the current siop_cmd */ 327 dsa = bus_space_read_4(sc->sc_c.sc_rt, sc->sc_c.sc_rh, SIOP_DSA); 329 if (dsa >= cbdp->xferdma->dm_segs[0].ds_addr && 330 dsa < cbdp->xferdma->dm_segs[0].ds_addr + PAGE_SIZE) { 331 dsa -= cbdp->xferdma->dm_segs[0].ds_addr; 332 siop_cmd = &cbdp->cmds[dsa / sizeof(struct siop_xfer)]; 347 printf("siop_cmd (lun %d) for DSA 0x%x 1443 uint32_t dsa; local in function:siop_start 1624 bus_addr_t dsa; local in function:siop_morecbd [all...] |
osiop.c | 268 bus_addr_t dsa; local in function:osiop_attach 282 dsa = sc->sc_dsdma->dm_segs[0].ds_addr + acb->dsoffset; 283 acb->ds->id.addr = dsa + OSIOP_DSIDOFF; 284 acb->ds->cmd.addr = dsa + OSIOP_DSCMDOFF; 286 acb->ds->status.addr = dsa + OSIOP_DSSTATOFF; 288 acb->ds->msg.addr = dsa + OSIOP_DSMSGOFF; 290 acb->ds->msgin.addr = dsa + OSIOP_DSMSGINOFF; 292 acb->ds->extmsg.addr = dsa + OSIOP_DSEXTMSGOFF; 294 acb->ds->synmsg.addr = dsa + OSIOP_DSSYNMSGOFF; 892 printf("ACK! osiop was busy: script %p dsa %p active %d\n" [all...] |
siopvar_common.h | 81 bus_addr_t dsa; /* DSA value to load */ member in struct:siop_common_cmd
|
/src/sys/kern/ |
subr_disk.c | 662 struct disk_sectoralign * const dsa = data; local in function:disk_ioctl 665 dsa->dsa_alignment = MAX(1u, dk->dk_geom.dg_physsecsize / 667 dsa->dsa_firstaligned = dk->dk_geom.dg_alignedsec; 672 uint32_t r = offset % dsa->dsa_alignment; 674 if (r <= dsa->dsa_firstaligned) 675 dsa->dsa_firstaligned -= r; 677 dsa->dsa_firstaligned += dsa->dsa_alignment - r; 679 dsa->dsa_firstaligned %= dsa->dsa_alignment [all...] |
/src/usr.sbin/syslogd/ |
sign.c | 48 * 2. The draft only defines DSA signatures. I hope it will be extended 49 * to DSS, thus allowing DSA, RSA (ANSI X9.31) and ECDSA (ANSI X9.62) 56 * 2. check; definitely only DSA in this version. 62 * - cannot use OpenPGP keys, only PKIX or DSA due to OpenSSL capabilities 108 /* this is the place to add non-DSA key types and algorithms */ 198 DPRINTF(D_SIGN, "X.509 cert has no DSA key\n"); 232 DSA *dsa; local in function:sign_get_keys 235 "--> use DSA with type 'K'\n"); 240 if ((dsa = DSA_new()) == NULL) [all...] |
tls.c | 624 /* When using DSA keys the callback gets called twice. 2090 DSA *dsa; local in function:mk_x509_cert 2112 dsa = DSA_new(); 2113 if (dsa == NULL) { 2118 if (!DSA_generate_parameters_ex(dsa, bits, NULL, 0, NULL, NULL, NULL)) { 2122 if (!DSA_generate_key(dsa)) { 2126 if (!EVP_PKEY_assign_DSA(pk, dsa)) {
|
/src/sys/arch/bebox/stand/boot/ |
siop.c | 262 uint32_t dsa, irqcode; local in function:siop_intr 277 /* use DSA to find the current siop_cmd */ 278 dsa = readl(adp->addr + SIOP_DSA); 279 if (dsa >= local_to_PCI((u_long)adp->xfer) && 280 dsa < local_to_PCI((u_long)adp->xfer) + SIOP_TABLE_SIZE) { 281 dsa -= local_to_PCI((u_long)adp->xfer); 306 * first restore DSA, in case we were in a S/G 359 " sist=0x%x sstat1=0x%x DSA=0x%x DSP=0x%lx\n", 360 sist, sstat1, dsa, 384 "script interrupt 0x%x with invalid DSA\n" 627 uint32_t dsa, *script = adp->script; local in function:siop_start 704 uint32_t dsa, *scr; local in function:siop_xfer_setup [all...] |
/src/sys/arch/prep/stand/boot/ |
siop.c | 239 uint32_t dsa, irqcode; local in function:siop_intr 254 /* use DSA to find the current siop_cmd */ 255 dsa = readl(adp->addr + SIOP_DSA); 256 if (dsa >= local_to_PCI((u_long)adp->xfer) && 257 dsa < local_to_PCI((u_long)adp->xfer) + SIOP_TABLE_SIZE) { 258 dsa -= local_to_PCI((u_long)adp->xfer); 283 * first restore DSA, in case we were in a S/G 338 " sist=0x%x sstat1=0x%x DSA=0x%x DSP=0x%lx\n", 339 sist, sstat1, dsa, 363 "script interrupt 0x%x with invalid DSA\n" 606 uint32_t dsa, *script = adp->script; local in function:siop_start 683 uint32_t dsa, *scr; local in function:siop_xfer_setup [all...] |
/src/sys/dev/ |
cgd.c | 1149 struct disk_sectoralign *dsa = data; local in function:cgdioctl 1169 uint32_t r = offset % dsa->dsa_alignment; 1171 if (r < dsa->dsa_firstaligned) 1172 dsa->dsa_firstaligned = dsa->dsa_firstaligned 1175 dsa->dsa_firstaligned = (dsa->dsa_firstaligned 1176 + dsa->dsa_alignment) - r;
|
/src/sys/dev/dkwedge/ |
dk.c | 1797 struct disk_sectoralign *dsa = data; local in function:dkioctl 1800 error = VOP_IOCTL(sc->sc_parent->dk_rawvp, cmd, dsa, flag, 1805 r = sc->sc_offset % dsa->dsa_alignment; 1806 if (r < dsa->dsa_firstaligned) 1807 dsa->dsa_firstaligned = dsa->dsa_firstaligned - r; 1809 dsa->dsa_firstaligned = (dsa->dsa_firstaligned + 1810 dsa->dsa_alignment) - r; 1811 dsa->dsa_firstaligned %= dsa->dsa_alignment [all...] |