Searched refs:ed (Results 1 - 25 of 69) sorted by relevance

123

/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/libexif-0.6.19/test/
H A Dtest-mem.c33 ExifData *ed; local
41 ed = exif_data_new ();
42 exif_data_set_data_type (ed, EXIF_DATA_TYPE_UNCOMPRESSED_CHUNKY);
45 exif_data_fix (ed);
47 exif_data_dump (ed);
50 exif_data_save_data (ed, &eb, &ebs);
51 exif_data_unref (ed);
61 ed = exif_loader_get_data (loader);
63 exif_data_dump (ed);
64 exif_data_unref (ed);
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/usb/host/
H A Dfhci-mem.c34 static void init_ed(struct ed *ed) argument
36 memset(ed, 0, sizeof(*ed));
37 INIT_LIST_HEAD(&ed->td_list);
38 INIT_LIST_HEAD(&ed->node);
65 struct ed *fhci_get_empty_ed(struct fhci_hcd *fhci)
67 struct ed *ed; local
70 ed
83 fhci_recycle_empty_ed(struct fhci_hcd *fhci, struct ed *ed) argument
89 fhci_td_fill(struct fhci_hcd *fhci, struct urb *urb, struct urb_priv *urb_priv, struct ed *ed, u16 index, enum fhci_ta_type type, int toggle, u8 *data, u32 len, u16 interval, u16 start_frame, bool ioc) argument
[all...]
H A Dfhci-q.c62 void fhci_add_tds_to_ed(struct ed *ed, struct td **td_list, int number) argument
68 list_add_tail(&td->node, &ed->td_list);
70 if (ed->td_head == NULL)
71 ed->td_head = td_list[0];
74 static struct td *peek_td_from_ed(struct ed *ed) argument
78 if (!list_empty(&ed->td_list))
79 td = list_entry(ed->td_list.next, struct td, node);
111 struct td *fhci_remove_td_from_ed(struct ed *e argument
144 fhci_move_td_from_ed_to_done_list(struct fhci_usb *usb, struct ed *ed) argument
169 struct ed *ed = urb_priv->ed; local
220 struct ed *ed = td->ed; local
269 fhci_del_ed_list(struct fhci_hcd *fhci, struct ed *ed) argument
[all...]
H A Dohci-q.c88 /* search for the right schedule branch to use for a periodic ed.
125 static void periodic_link (struct ohci_hcd *ohci, struct ed *ed) argument
130 (ed->hwINFO & cpu_to_hc32 (ohci, ED_ISO)) ? "iso " : "",
131 ed, ed->branch, ed->load, ed->interval);
133 for (i = ed->branch; i < NUM_INTS; i += ed
165 ed_schedule(struct ohci_hcd *ohci, struct ed *ed) argument
254 periodic_unlink(struct ohci_hcd *ohci, struct ed *ed) argument
302 ed_deschedule(struct ohci_hcd *ohci, struct ed *ed) argument
392 struct ed *ed; local
465 start_ed_unlink(struct ohci_hcd *ohci, struct ed *ed) argument
789 struct ed *ed = td->ed; local
899 struct ed *ed, **last; local
1075 struct ed *ed = td->ed; local
[all...]
H A Dohci-mem.c46 sizeof (struct ed),
118 static struct ed *
122 struct ed *ed; local
124 ed = dma_pool_alloc (hc->ed_cache, mem_flags, &dma);
125 if (ed) {
126 memset (ed, 0, sizeof (*ed));
127 INIT_LIST_HEAD (&ed->td_list);
128 ed
134 ed_free(struct ohci_hcd *hc, struct ed *ed) argument
[all...]
H A Dfhci-sched.c48 struct ed *ed; local
65 ed = td->ed;
66 if (ed->mode == FHCI_TF_ISO) {
67 if (ed->td_list.next->next != &ed->td_list) {
69 list_entry(ed->td_list.next->next, struct td,
87 ed->state = FHCI_ED_HALTED;
122 fhci_move_td_from_ed_to_done_list(usb, ed);
159 add_packet(struct fhci_usb *usb, struct ed *ed, struct td *td) argument
284 struct ed *ed; local
638 struct ed *ed; local
703 struct ed *ed = urb->ep->hcpriv; local
[all...]
H A Dohci-hcd.c146 struct ed *ed; local
157 /* every endpoint has a ed, locate and maybe (re)initialize it */
158 if (! (ed = ed_get (ohci, urb->ep, urb->dev, pipe, urb->interval)))
162 switch (ed->type) {
200 urb_priv->ed = ed;
227 /* schedule the ed if needed */
228 if (ed->state == ED_IDLE) {
229 retval = ed_schedule (ohci, ed);
319 struct ed *ed = ep->hcpriv; local
406 check_ed(struct ohci_hcd *ohci, struct ed *ed) argument
441 struct ed *ed = ohci->periodic[i]; local
840 struct ed *ed = ohci->ed_to_check; local
937 struct ed *ed = priv->ed; local
[all...]
H A Dohci-dbg.c343 const struct ed *ed, int verbose)
345 u32 tmp = hc32_to_cpu (ohci, ed->hwINFO);
348 ohci_dbg (ohci, "%s, ed %p state 0x%x type %s; next ed %08x\n",
350 ed, ed->state, edstring (ed->type),
351 hc32_to_cpup (ohci, &ed->hwNextED));
367 tmp = hc32_to_cpup (ohci, &ed
342 ohci_dump_ed(const struct ohci_hcd *ohci, const char *label, const struct ed *ed, int verbose) argument
441 show_list(struct ohci_hcd *ohci, char *buf, size_t count, struct ed *ed) argument
529 struct ed **seen, *ed; local
[all...]
H A Dfhci.h347 struct ed { struct
373 struct ed *ed; /* a handle to the corresponding ED */ member in struct:td
415 struct ed *ed; member in struct:urb_priv
539 void fhci_recycle_empty_ed(struct fhci_hcd *fhci, struct ed *ed);
540 struct ed *fhci_get_empty_ed(struct fhci_hcd *fhci);
542 struct urb_priv *urb_priv, struct ed *ed, u1
[all...]
H A Dohci.h25 struct ed { struct
47 struct ed *ed_next; /* on schedule or rm_list */
48 struct ed *ed_prev; /* for non-interrupt EDs */
122 struct ed *ed; member in struct:td
327 struct ed *ed; member in struct:urb_priv
363 struct ed *ed_rm_list; /* to be removed */
365 struct ed *ed_bulktail; /* last in bulk list */
366 struct ed *ed_controltai
[all...]
H A Dfhci-hcd.c171 struct ed *ed; local
172 struct ed *next_ed;
176 list_for_each_entry_safe(ed, next_ed, &fhci->empty_eds, node) {
177 list_del(&ed->node);
178 kfree(ed);
227 struct ed *ed; local
229 ed = kmalloc(sizeof(*ed), GFP_KERNE
514 struct ed *ed; local
[all...]
H A Dohci-hub.c120 static inline struct ed *find_head (struct ed *ed) argument
123 while (ed->ed_prev)
124 ed = ed->ed_prev;
125 return ed;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/libexif-0.6.19/contrib/examples/
H A Dthumbnail.c25 ExifData *ed; local
31 ed = exif_loader_get_data(l);
36 if (ed) {
38 if (ed->data && ed->size) {
49 fwrite(ed->data, 1, ed->size, thumb);
62 exif_data_unref(ed);
H A Dphotographer.c70 ExifData *ed; local
81 ed = exif_data_new_from_file(argv[1]);
82 if (!ed) {
90 show_tag(ed, EXIF_IFD_0, EXIF_TAG_ARTIST);
91 show_tag(ed, EXIF_IFD_0, EXIF_TAG_XP_AUTHOR);
92 show_tag(ed, EXIF_IFD_0, EXIF_TAG_COPYRIGHT);
95 show_tag(ed, EXIF_IFD_EXIF, EXIF_TAG_USER_COMMENT);
96 show_tag(ed, EXIF_IFD_0, EXIF_TAG_IMAGE_DESCRIPTION);
97 show_tag(ed, EXIF_IFD_1, EXIF_TAG_IMAGE_DESCRIPTION);
103 entry = exif_content_get_entry(ed
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/dist/
H A Ds_crypto26 echo 'q') | ed $f
36 echo 'q') | ed $f
46 echo 'q') | ed $f
59 echo 'q') | ed $f
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libkqueue-1.0.6/src/linux/
H A Dproc.c121 struct evfilt_data *ed; local
124 if ((ed = calloc(1, sizeof(*ed))) == NULL)
126 filt->kf_data = ed;
128 pthread_mutex_init(&ed->wait_mtx, NULL);
129 pthread_cond_init(&ed->wait_cond, NULL);
135 if (pthread_create(&ed->wthr_id, NULL, wait_thread, filt) != 0)
144 free(ed);
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/test/scr030/
H A Dchk.build55 echo q) | ed Makefile > /dev/null
63 echo q) | ed Makefile > /dev/null
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/libkqueue-1.0.6/src/posix/
H A Dproc.c108 struct evfilt_data *ed; local
110 if ((ed = calloc(1, sizeof(*ed))) == NULL)
115 if (pthread_create(&ed->wthr_id, NULL, wait_thread, filt) != 0)
121 free(ed);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/s390/include/asm/
H A Dnmi.h22 __u32 ed : 1; /* 05 external damage */ member in struct:mci
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/amule/wxWidgets-2.8.12/contrib/src/stc/scintilla/src/
H A DEditor.h551 AutoSurface(Editor *ed) : surf(0) { argument
552 if (ed->wMain.GetID()) {
555 surf->Init(ed->wMain.GetID());
556 surf->SetUnicodeMode(SC_CP_UTF8 == ed->CodePage());
557 surf->SetDBCSMode(ed->CodePage());
561 AutoSurface(SurfaceID sid, Editor *ed) : surf(0) { argument
562 if (ed->wMain.GetID()) {
565 surf->Init(sid, ed->wMain.GetID());
566 surf->SetUnicodeMode(SC_CP_UTF8 == ed->CodePage());
567 surf->SetDBCSMode(ed
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/libexif-0.6.19/libexif/
H A Dexif-loader.c393 ExifData *ed; local
399 ed = exif_data_new_mem (loader->mem);
400 exif_data_log (ed, loader->log);
401 exif_data_load_data (ed, loader->buf, loader->bytes_read);
403 return ed;
/netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/minidlna/minidlna/
H A Dmetadata.c411 ExifData *ed; local
438 ed = exif_loader_get_data(l);
440 if( !ed )
443 e = exif_content_get_entry (ed->ifd[EXIF_IFD_EXIF], EXIF_TAG_DATE_TIME_ORIGINAL);
444 if( e || (e = exif_content_get_entry(ed->ifd[EXIF_IFD_EXIF], EXIF_TAG_DATE_TIME_DIGITIZED)) ) {
463 e = exif_content_get_entry (ed->ifd[EXIF_IFD_0], EXIF_TAG_MAKE);
467 e = exif_content_get_entry (ed->ifd[EXIF_IFD_0], EXIF_TAG_MODEL);
478 if( ed->size )
481 if( ed->size > 12000 )
483 imsrc = image_new_from_jpeg(NULL, 0, (char *)ed
[all...]
H A Dupnphttp.c1295 ExifData *ed; local
1325 ed = exif_loader_get_data(l);
1328 if( !ed || !ed->size )
1331 if( ed )
1332 exif_data_unref(ed);
1344 ed->size, date);
1357 send_data(h, (char *)ed->data, ed->size);
1359 exif_data_unref(ed);
1385 ExifData *ed; local
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/um/sys-x86_64/
H A Dsignal.c237 struct exec_domain *ed = current_thread_info()->exec_domain; local
238 if (unlikely(ed && ed->signal_invmap && sig < 32))
239 sig = ed->signal_invmap[sig];
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/ia64/include/asm/
H A Dkvm.h106 unsigned long ed : 1; /* 52 */ member in struct:thash_data::__anon9243::__anon9244

Completed in 539 milliseconds

123