HomeSort by: relevance | last modified time | path
    Searched refs:ed (Results 1 - 25 of 235) sorted by relevancy

1 2 3 4 5 6 7 8 910

  /src/external/ibm-public/postfix/dist/mantools/
hchangered 35 '; echo '1,$p') | ed - $1 | perl -e '
  /src/sys/arch/i386/stand/lib/
bootinfo_biosgeom.c 68 struct biosdisk_extinfo ed; local
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
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
474 struct ed_softc *ed = device_lookup_private(&ed_cd, DISKUNIT(dev)); local
615 struct ed_softc *ed; \/* disk unit to do the I\/O *\/ local
    [all...]
  /src/distrib/utils/x_ed/
Makefile 2 # Build an ed without crypt support
4 SRCDIR= ${.CURDIR}/../../../bin/ed
6 PROG= ed
  /src/external/bsd/libarchive/dist/libarchive/test/
test_write_format_mtree_preset_digests.c 53 struct expected_digests ed; local
58 assertEqualInt(ARCHIVE_OK, archive_md5_final(&expectedMd5Ctx, ed.md5));
64 assertEqualInt(ARCHIVE_OK, archive_rmd160_final(&expectedRmd160Ctx, ed.rmd160));
70 assertEqualInt(ARCHIVE_OK, archive_sha1_final(&expectedSha1Ctx, ed.sha1));
76 assertEqualInt(ARCHIVE_OK, archive_sha256_final(&expectedSha256Ctx, ed.sha256));
82 assertEqualInt(ARCHIVE_OK, archive_sha384_final(&expectedSha384Ctx, ed.sha384));
88 assertEqualInt(ARCHIVE_OK, archive_sha512_final(&expectedSha512Ctx, ed.sha512));
112 assert(memcmp(archive_entry_digest(entry, ARCHIVE_ENTRY_DIGEST_MD5), ed.md5, sizeof(ed.md5)) == 0);
116 assert(memcmp(archive_entry_digest(entry, ARCHIVE_ENTRY_DIGEST_RMD160), ed.rmd160, sizeof(ed.rmd160)) == 0)
143 struct expected_digests ed; local
234 struct expected_digests ed; local
327 struct expected_digests ed; local
420 struct expected_digests ed; local
520 struct expected_digests ed; local
620 struct expected_digests ed; local
711 struct expected_digests ed; local
811 struct expected_digests ed; local
911 struct expected_digests ed; local
1004 struct expected_digests ed; local
1104 struct expected_digests ed; local
1204 struct expected_digests ed; local
1299 struct expected_digests ed; local
1401 struct expected_digests ed; local
1503 struct expected_digests ed; local
1599 struct expected_digests ed; local
1702 struct expected_digests ed; local
1805 struct expected_digests ed; local
1904 struct expected_digests ed; local
2010 struct expected_digests ed; local
    [all...]
  /src/crypto/external/bsd/heimdal/dist/lib/krb5/
keytab_any.c 131 struct any_cursor_extra_data *ed; local
137 ed = (struct any_cursor_extra_data *)c->data;
138 for (ed->a = a; ed->a != NULL; ed->a = ed->a->next) {
139 ret = krb5_kt_start_seq_get(context, ed->a->kt, &ed->cursor);
143 if (ed->a == NULL) {
159 struct any_cursor_extra_data *ed; local
190 struct any_cursor_extra_data *ed; local
    [all...]
  /src/bin/ed/test/
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] *~
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
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
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
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
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
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;
  /src/external/cddl/osnet/dist/tools/ctf/cvt/
merge.c 223 equiv_intrinsic(tdesc_t *stdp, tdesc_t *ttdp, equiv_data_t *ed __unused)
245 equiv_plain(tdesc_t *stdp, tdesc_t *ttdp, equiv_data_t *ed)
247 return (equiv_node(stdp->t_tdesc, ttdp->t_tdesc, ed));
251 equiv_function(tdesc_t *stdp, tdesc_t *ttdp, equiv_data_t *ed)
260 if (!equiv_node(fn1->fn_ret, fn2->fn_ret, ed))
264 if (!equiv_node(fn1->fn_args[i], fn2->fn_args[i], ed))
272 equiv_array(tdesc_t *stdp, tdesc_t *ttdp, equiv_data_t *ed)
276 if (!equiv_node(ar1->ad_contents, ar2->ad_contents, ed) ||
277 !equiv_node(ar1->ad_idxtype, ar2->ad_idxtype, ed))
287 equiv_su(tdesc_t *stdp, tdesc_t *ttdp, equiv_data_t *ed)
408 equiv_data_t *ed = arg; local
443 equiv_data_t ed; local
495 equiv_data_t ed; local
    [all...]
  /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/external/bsd/elftoolchain/dist/libdwarf/
libdwarf_elf_access.c 136 Dwarf_Elf_Data *ed; local
153 ed = &e->eo_data[ndx];
155 if (ed->ed_alloc != NULL)
156 *ret_data = ed->ed_alloc;
158 if (ed->ed_data == NULL) {
163 *ret_data = ed->ed_data->d_buf;
  /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 <<!
  /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/external/bsd/mdocml/dist/
dba_array.c 37 int32_t ed; /* Entries deleted. */ member in struct:dba_array
54 array->ed = 0;
135 array->ed++;
160 assert(array->ed == 0);
167 dba_int_write(array->eu - array->ed);
168 return dba_skip(nmemb, array->eu - array->ed);
  /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
364 for (ed = extiodevs; ed->ed_name != NULL; ed++)
    [all...]
  /src/external/gpl2/xcvs/dist/diff/
build_diff.com 11 $ CC ed.c
18 dir.obj,io.obj,util.obj,context.obj,ed.obj,ifdef.obj,normal.obj,-

Completed in 30 milliseconds

1 2 3 4 5 6 7 8 910