/src/sys/net/npf/ |
npf_connkey.c | 90 unsigned isrc, idst; local in function:npf_connkey_setkey 93 isrc = NPF_SRC, idst = NPF_DST; 95 isrc = NPF_DST, idst = NPF_SRC; 103 k[1] = ((uint32_t)id[isrc] << 16) | id[idst]; 107 k[3] = ips[idst]->word32[0]; 112 memcpy(&k[2 + nwords], ips[idst], alen);
|
/src/sys/dev/ic/ |
dwc_mmc.c | 885 uint32_t idst, mint, imask; local in function:dwc_mmc_intr 888 idst = MMC_READ(sc, DWC_MMC_IDST); 890 if (!idst && !mint) { 894 MMC_WRITE(sc, DWC_MMC_IDST, idst); 900 device_printf(sc->sc_dev, "mmc intr idst=%08X mint=%08X\n", 901 idst, mint); 931 if (cmd != NULL && (idst & DWC_MMC_IDST_RECEIVE_INT) != 0) {
|
/src/sys/arch/arm/sunxi/ |
sunxi_mmc.c | 621 uint32_t idst, mint, imask; local in function:sunxi_mmc_intr 624 idst = MMC_READ(sc, SUNXI_MMC_IDST); 626 if (!idst && !mint) { 630 MMC_WRITE(sc, SUNXI_MMC_IDST, idst); 635 DPRINTF(sc->sc_dev, "mmc intr idst=%08X mint=%08X\n", 636 idst, mint); 665 if (cmd != NULL && (idst & SUNXI_MMC_IDST_RECEIVE_INT) != 0) {
|
/src/usr.sbin/syslogd/ |
syslogd.c | 1288 size_t idst = 0, isrc = 0, dstsize = INIT_BUFSIZE, i; local in function:copy_utf8_ascii 1293 if (dstsize < idst + 10) { 1305 dst[idst++] = '?'; 1311 dst[idst++] = ' '; 1314 dst[idst++] = '^'; 1315 dst[idst++] = p[isrc++] ^ 0100; 1318 dst[idst++] = p[isrc++]; 1320 dst[idst++] = '<'; 1321 idst += snprintf(&dst[idst], dstsize - idst, "U+%x" [all...] |