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

1 2 3 4 5

  /src/sys/external/bsd/drm2/include/drm/
drm_sysctl.h 33 const void *bp, *ep, *bd, *ed; member in struct:drm_sysctl_def
  /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/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/usb/
emdtv_ir.c 74 usb_endpoint_descriptor_t *ed; local
80 ed = usbd_interface2endpoint_descriptor(sc->sc_iface, 0);
81 if (ed == NULL)
92 status = usbd_open_pipe_intr(sc->sc_iface, ed->bEndpointAddress,
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...]
ualea.c 94 const usb_endpoint_descriptor_t *ed; local
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,
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...]
umodeswitch.c 70 usb_endpoint_descriptor_t *ed; local
89 ed = NULL;
91 ed = usbd_interface2endpoint_descriptor(iface, i);
92 if (ed == NULL)
94 if (UE_GET_DIR(ed->bEndpointAddress) != UE_DIR_OUT)
96 if ((ed->bmAttributes & UE_XFERTYPE) == UE_BULK)
103 err = usbd_open_pipe(iface, ed->bEndpointAddress,
107 __func__, ed->bEndpointAddress);
emdtv_dtv.c 86 usb_endpoint_descriptor_t *ed; local
96 ed = usbd_interface2endpoint_descriptor(sc->sc_iface, 3);
97 if (ed == NULL) {
101 sc->sc_isoc_maxpacketsize = UGETW(ed->wMaxPacketSize);
105 ed->bEndpointAddress);
107 ed->bEndpointAddress, USBD_EXCLUSIVE_USE|USBD_MPSAFE,
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...]
if_ncm.c 97 usb_endpoint_descriptor_t *ed; local
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...]
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;
if_kue.c 422 usb_endpoint_descriptor_t *ed; local
469 ed = usbd_interface2endpoint_descriptor(un->un_iface, i);
470 if (ed == NULL) {
474 if (UE_GET_DIR(ed->bEndpointAddress) == UE_DIR_IN &&
475 UE_GET_XFERTYPE(ed->bmAttributes) == UE_BULK) {
476 un->un_ed[USBNET_ENDPT_RX] = ed->bEndpointAddress;
477 } else if (UE_GET_DIR(ed->bEndpointAddress) == UE_DIR_OUT &&
478 UE_GET_XFERTYPE(ed->bmAttributes) == UE_BULK) {
479 un->un_ed[USBNET_ENDPT_TX] = ed->bEndpointAddress;
480 } else if (UE_GET_DIR(ed->bEndpointAddress) == UE_DIR_IN &
    [all...]
if_udav.c 165 usb_endpoint_descriptor_t *ed; local
213 ed = usbd_interface2endpoint_descriptor(un->un_iface, i);
214 if (ed == NULL) {
218 if ((ed->bmAttributes & UE_XFERTYPE) == UE_BULK &&
219 UE_GET_DIR(ed->bEndpointAddress) == UE_DIR_IN)
220 un->un_ed[USBNET_ENDPT_RX] = ed->bEndpointAddress;
221 else if ((ed->bmAttributes & UE_XFERTYPE) == UE_BULK &&
222 UE_GET_DIR(ed->bEndpointAddress) == UE_DIR_OUT)
223 un->un_ed[USBNET_ENDPT_TX] = ed->bEndpointAddress;
224 else if ((ed->bmAttributes & UE_XFERTYPE) == UE_INTERRUPT &
    [all...]
if_url.c 165 usb_endpoint_descriptor_t *ed; local
218 ed = usbd_interface2endpoint_descriptor(un->un_iface, i);
219 if (ed == NULL) {
224 if ((ed->bmAttributes & UE_XFERTYPE) == UE_BULK &&
225 UE_GET_DIR(ed->bEndpointAddress) == UE_DIR_IN)
226 un->un_ed[USBNET_ENDPT_RX] = ed->bEndpointAddress;
227 else if ((ed->bmAttributes & UE_XFERTYPE) == UE_BULK &&
228 UE_GET_DIR(ed->bEndpointAddress) == UE_DIR_OUT)
229 un->un_ed[USBNET_ENDPT_TX] = ed->bEndpointAddress;
230 else if ((ed->bmAttributes & UE_XFERTYPE) == UE_INTERRUPT &
    [all...]
uark.c 124 usb_endpoint_descriptor_t *ed; local
159 ed = usbd_interface2endpoint_descriptor(sc->sc_iface, i);
160 if (ed == NULL) {
167 if (UE_GET_DIR(ed->bEndpointAddress) == UE_DIR_IN &&
168 UE_GET_XFERTYPE(ed->bmAttributes) == UE_BULK)
169 ucaa.ucaa_bulkin = ed->bEndpointAddress;
170 else if (UE_GET_DIR(ed->bEndpointAddress) == UE_DIR_OUT &&
171 UE_GET_XFERTYPE(ed->bmAttributes) == UE_BULK)
172 ucaa.ucaa_bulkout = ed->bEndpointAddress;
  /src/external/gpl3/gcc.old/dist/gcc/d/dmd/
enum.h 79 EnumDeclaration *ed; member in class:EnumMember
  /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/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...]
ticket.c 415 EncryptedData ed; local
430 memset(&ed, 0, sizeof(ed));
435 &ed, &len);
439 free_EncryptedData(&ed);
448 free_EncryptedData(&ed);
454 &ed, &data);
455 free_EncryptedData(&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/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/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/tests/lib/libc/gen/
t_vis.c 148 } ed[] = { local
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);
  /src/sys/arch/hpcsh/dev/
pfckbd.c 395 uint8_t data[2], cd, dd, ed; local
415 ed = _reg_read_1(SH7709_PEDR) & ~PFCKBD_HITACHI_PEDR_SCN_MASK;
420 _reg_write_1(SH7709_PEDR, ed | scan[i].e);
450 uint8_t cd, dd, ed; local
465 ed = _reg_read_1(SH7709_PEDR) & ~PFCKBD_HITACHI_PEDR_SCN_MASK;
470 _reg_write_1(SH7709_PEDR, ed | poll.e);

Completed in 39 milliseconds

1 2 3 4 5