/src/sys/arch/i386/stand/lib/ |
bootinfo_biosgeom.c | 68 struct biosdisk_extinfo ed; local in function:bi_getbiosgeom 84 if (set_geometry(&d, &ed)) 103 ed.size, ed.flags, ed.cyl, ed.head, ed.sec, 104 ed.totsec, ed.sbytes); 108 bibg->disk[nvalid].totsec = ed.totsec [all...] |
/src/sys/dev/mca/ |
ed_mca.c | 153 struct ed_softc *ed = device_private(self); local in function:ed_mca_attach 159 ed->sc_dev = self; 160 ed->edc_softc = sc; 161 ed->sc_devno = eda->edc_drive; 162 edc_add_disk(sc, ed); 164 bufq_alloc(&ed->sc_q, "disksort", BUFQ_SORT_RAWBLOCK); 165 mutex_init(&ed->sc_q_lock, MUTEX_DEFAULT, IPL_VM); 167 if (ed_get_params(ed, &drv_flags)) { 173 (u_int64_t) ed->sc_capacity * DEV_BSIZE); 176 ed->cyl, ed->heads, ed->sectors 211 struct ed_softc *ed; local in function:edmcastrategy 474 struct ed_softc *ed = device_lookup_private(&ed_cd, DISKUNIT(dev)); local in function:edmcaioctl 615 struct ed_softc *ed; \/* disk unit to do the I\/O *\/ local in function:edmcadump [all...] |
edc_mca.c | 37 * for MCA rev. 2.2 in hands, thanks to Scott Telford <st@epcc.ed.ac.uk>. 266 * Reset controller and attach individual disks. ed attach routine 345 edc_add_disk(struct edc_mca_softc *sc, struct ed_softc *ed) 347 sc->sc_ed[ed->sc_devno] = ed; 807 struct ed_softc *ed; local in function:edcworker 818 if ((ed = sc->sc_ed[i]) == NULL) { 824 mutex_enter(&ed->sc_q_lock); 825 if ((bp = bufq_get(ed->sc_q)) == NULL) { 826 mutex_exit(&ed->sc_q_lock) [all...] |
/src/distrib/utils/x_ed/ |
Makefile | 2 # Build an ed without crypt support 4 SRCDIR= ${.CURDIR}/../../../bin/ed 6 PROG= ed
|
/src/bin/ed/test/ |
ckscripts.sh | 4 # This script runs the .ed scripts generated by mkscripts.sh 9 ED=$1 10 [ ! -x $ED ] && { echo "$ED: cannot execute"; exit 1; } 22 for i in *.ed; do 25 base=`$ED - \!"echo $i" <<-EOF 28 if $base.ed; then
|
Makefile | 5 ED?= ../obj/ed 17 echo "building test scripts for $(ED) ..."; \ 18 ${HOST_SH} ${.CURDIR}/mkscripts.sh $(ED); \ 22 @echo testing $(ED) ... 23 @${HOST_SH} ckscripts.sh $(ED) 26 rm -f *.ed *.red *.[oz] *~
|
mkscripts.sh | 4 # This script generates ed test scripts (.ed) from .t files 7 ED=$1 8 [ ! -x $ED ] && { echo "$ED: cannot execute"; exit 1; } 16 # echo "$ED - <<\EOT" 21 # ) >$base.ed 22 # chmod +x $base.ed 24 # use of ed but the point is that it can be done... 25 base=`$ED - \!"echo $i" <<-EO [all...] |
/src/sys/external/bsd/drm2/include/drm/ |
drm_sysctl.h | 33 const void *bp, *ep, *bd, *ed; member in struct:drm_sysctl_def
|
/src/sys/dev/usb/ |
ubsa.c | 158 usb_endpoint_descriptor_t *ed; local in function:ubsa_attach 230 ed = usbd_interface2endpoint_descriptor(sc->sc_iface[0], i); 231 if (ed == NULL) { 237 if (UE_GET_DIR(ed->bEndpointAddress) == UE_DIR_IN && 238 UE_GET_XFERTYPE(ed->bmAttributes) == UE_INTERRUPT) { 239 sc->sc_intr_number = ed->bEndpointAddress; 240 sc->sc_isize = UGETW(ed->wMaxPacketSize); 241 } else if (UE_GET_DIR(ed->bEndpointAddress) == UE_DIR_IN && 242 UE_GET_XFERTYPE(ed->bmAttributes) == UE_BULK) { 243 ucaa.ucaa_bulkin = ed->bEndpointAddress [all...] |
if_cdce.c | 121 usb_endpoint_descriptor_t *ed; local in function:cdce_attach 211 ed = usbd_interface2endpoint_descriptor(un->un_iface, i); 212 if (!ed) { 217 if (UE_GET_DIR(ed->bEndpointAddress) == UE_DIR_IN && 218 UE_GET_XFERTYPE(ed->bmAttributes) == UE_BULK) { 219 un->un_ed[USBNET_ENDPT_RX] = ed->bEndpointAddress; 220 } else if (UE_GET_DIR(ed->bEndpointAddress) == UE_DIR_OUT && 221 UE_GET_XFERTYPE(ed->bmAttributes) == UE_BULK) { 222 un->un_ed[USBNET_ENDPT_TX] = ed->bEndpointAddress; 223 } else if (UE_GET_DIR(ed->bEndpointAddress) == UE_DIR_IN & [all...] |
auvitek.c | 96 usb_endpoint_descriptor_t *ed; local in function:auvitek_attach 155 ed = usbd_interface2endpoint_descriptor(sc->sc_isoc_iface, i); 156 if (ed == NULL) { 162 dir = UE_GET_DIR(ed->bEndpointAddress); 163 type = UE_GET_XFERTYPE(ed->bmAttributes); 167 sc->sc_ax.ax_endpt = ed->bEndpointAddress; 169 UE_GET_SIZE(UGETW(ed->wMaxPacketSize)) * 170 (UE_GET_TRANS(UGETW(ed->wMaxPacketSize)) + 1); 200 ed = usbd_interface2endpoint_descriptor(sc->sc_bulk_iface, i); 201 if (ed == NULL) [all...] |
if_upl.c | 149 usb_endpoint_descriptor_t *ed; local in function:upl_attach 188 ed = usbd_interface2endpoint_descriptor(un->un_iface, i); 189 if (ed == NULL) { 193 if (UE_GET_DIR(ed->bEndpointAddress) == UE_DIR_IN && 194 UE_GET_XFERTYPE(ed->bmAttributes) == UE_BULK) { 195 un->un_ed[USBNET_ENDPT_RX] = ed->bEndpointAddress; 196 } else if (UE_GET_DIR(ed->bEndpointAddress) == UE_DIR_OUT && 197 UE_GET_XFERTYPE(ed->bmAttributes) == UE_BULK) { 198 un->un_ed[USBNET_ENDPT_TX] = ed->bEndpointAddress;
|
if_ncm.c | 97 usb_endpoint_descriptor_t *ed; local in function:ncm_attach 178 ed = usbd_interface2endpoint_descriptor(un->un_iface, i); 179 if (!ed) { 184 if (UE_GET_DIR(ed->bEndpointAddress) == UE_DIR_IN && 185 UE_GET_XFERTYPE(ed->bmAttributes) == UE_BULK) { 186 un->un_ed[USBNET_ENDPT_RX] = ed->bEndpointAddress; 187 } else if (UE_GET_DIR(ed->bEndpointAddress) == UE_DIR_OUT && 188 UE_GET_XFERTYPE(ed->bmAttributes) == UE_BULK) { 189 un->un_ed[USBNET_ENDPT_TX] = ed->bEndpointAddress; 190 } else if (UE_GET_DIR(ed->bEndpointAddress) == UE_DIR_IN & [all...] |
uhmodem.c | 195 usb_endpoint_descriptor_t *ed; local in function:uhmodem_attach 282 ed = usbd_interface2endpoint_descriptor( 284 if (ed == NULL) { 291 if (UE_GET_DIR(ed->bEndpointAddress) == UE_DIR_IN && 292 UE_GET_XFERTYPE(ed->bmAttributes) == UE_INTERRUPT) { 293 sc->sc_intr_number = ed->bEndpointAddress; 294 sc->sc_isize = UGETW(ed->wMaxPacketSize); 295 } else if (UE_GET_DIR(ed->bEndpointAddress) == UE_DIR_IN && 296 UE_GET_XFERTYPE(ed->bmAttributes) == UE_BULK) { 297 ucaa.ucaa_bulkin = ed->bEndpointAddress 509 usb_endpoint_descriptor_t *ed; local in function:uhmodem_endpointhalt [all...] |
u3g.c | 353 usb_endpoint_descriptor_t *ed; local in function:u3g_attach 385 ed = usbd_interface2endpoint_descriptor(iface, n); 386 if (ed == NULL) { 393 if (UE_GET_DIR(ed->bEndpointAddress) == UE_DIR_IN && 394 UE_GET_XFERTYPE(ed->bmAttributes) == UE_INTERRUPT) { 395 intr_address = ed->bEndpointAddress; 396 intr_size = UGETW(ed->wMaxPacketSize); 398 if (UE_GET_DIR(ed->bEndpointAddress) == UE_DIR_IN && 399 UE_GET_XFERTYPE(ed->bmAttributes) == UE_BULK) { 400 ucaa.ucaa_bulkin = ed->bEndpointAddress 604 usb_endpoint_descriptor_t *ed; local in function:u3g_open [all...] |
ualea.c | 94 const usb_endpoint_descriptor_t *ed; local in function:ualea_attach 110 ed = usbd_interface2endpoint_descriptor(uiaa->uiaa_iface, 0); 111 if (ed == NULL) { 115 if (UE_GET_DIR(ed->bEndpointAddress) != UE_DIR_IN || 116 UE_GET_XFERTYPE(ed->bmAttributes) != UE_BULK) { 122 sc->sc_maxpktsize = UGETW(ed->wMaxPacketSize); 125 status = usbd_open_pipe(uiaa->uiaa_iface, ed->bEndpointAddress,
|
/src/sys/arch/i386/stand/efiboot/ |
efidisk_ll.c | 86 set_geometry(struct biosdisk_ll *d, struct biosdisk_extinfo *ed) 101 if (ed != NULL) { 102 ed->totsec = media->LastBlock + 1; 103 ed->sbytes = media->BlockSize; 104 ed->flags = 0; 106 ed->flags |= EXTINFO_REMOVABLE;
|
/src/sys/arch/mips/cavium/dev/ |
octeon_cop2var.h | 136 #define __octeon_cop2_aes_ed_16_au_vaddr64(ed, ED, au, AU) \ 138 octeon_cop2_aes_##ed##_16_##au##_vaddr64(uint64_t d, uint64_t s) \ 146 CNASM_MT2(tmp0, CVM_MT_AES_##ED##0, 0) \ 147 CNASM_MT2(tmp1, CVM_MT_AES_##ED##1, 0) \ 159 #define __octeon_cop2_aes_ed_16_au_ptr(ed, ED, au, AU, ptr) \ 161 octeon_cop2_aes_##ed##_16_##au(ptr d, ptr s) \ 163 octeon_cop2_aes_##ed##_16_##au##_vaddr64((intptr_t)d, (intptr_t)s); \ 166 #define __octeon_cop2_aes_ed_16_au(ed, ED, au, AU) [all...] |
/src/share/man/tools/ |
prnames | 20 ed - $file >> $TMPDIR/names$dir <<!
|
ckfrefs | 19 ed - $file >> $TMPDIR/fref$dir <<! 36 ed - fref$dir <<!
|
prsynops | 22 ed - $TMPDIR/tmp.$$ >> $TMPDIR/synops$dir <<!
|
/src/bin/ |
Makefile | 4 SUBDIR= cat chio chmod cp csh date dd df domainname echo ed expr getfacl \
|
/src/bin/ed/ |
Makefile | 5 PROG= ed 14 #LINKS= ${BINDIR}/ed ${BINDIR}/red 15 #MLINKS= ed.1 red.1
|
/src/sys/arch/mips/adm5120/ |
adm5120_extio.c | 128 extio_attach_args_create(struct extio_attach_args *ea, struct extiodev *ed, 131 ea->ea_name = ed->ed_name; 132 ea->ea_addr = ed->ed_addr; 133 ea->ea_irq = ed->ed_irq; 136 ea->ea_gpio_mask = ed->ed_gpio_mask; 137 ea->ea_cfio = ed->ed_cfio; 290 struct extiodev *ed; local in function:extio_attach 364 for (ed = extiodevs; ed->ed_name != NULL; ed++) [all...] |
/src/tests/lib/libc/gen/ |
t_vis.c | 148 } ed[] = { local in function:ATF_TC_BODY 157 for (size_t i = 0; i < __arraycount(ed); i++) { 158 ATF_REQUIRE(strunvis(uv, ed[i].e) == ed[i].error); 159 if (ed[i].error > 0) 160 ATF_REQUIRE(memcmp(ed[i].d, uv, ed[i].error) == 0);
|