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

12

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/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-WNDR4500v2-V1.0.0.60_1.0.38/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-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/usb/host/
H A Dohci-q.c94 /* search for the right schedule branch to use for a periodic ed.
131 static void periodic_link (struct ohci_hcd *ohci, struct ed *ed) argument
136 (ed->hwINFO & cpu_to_hc32 (ohci, ED_ISO)) ? "iso " : "",
137 ed, ed->branch, ed->load, ed->interval);
139 for (i = ed->branch; i < NUM_INTS; i += ed
171 ed_schedule(struct ohci_hcd *ohci, struct ed *ed) argument
259 periodic_unlink(struct ohci_hcd *ohci, struct ed *ed) argument
307 ed_deschedule(struct ohci_hcd *ohci, struct ed *ed) argument
397 struct ed *ed; local
470 start_ed_unlink(struct ohci_hcd *ohci, struct ed *ed) argument
792 struct ed *ed = td->ed; local
910 struct ed *ed, **last; local
1074 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 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
405 show_list(struct ohci_hcd *ohci, char *buf, size_t count, struct ed *ed) argument
502 struct ed **seen, *ed; local
[all...]
H A Dohci-hcd.c126 struct ed *ed; local
137 /* every endpoint has a ed, locate and maybe (re)initialize it */
138 if (! (ed = ed_get (ohci, ep, urb->dev, pipe, urb->interval)))
142 switch (ed->type) {
181 urb_priv->ed = ed;
215 /* schedule the ed if needed */
216 if (ed->state == ED_IDLE) {
217 retval = ed_schedule (ohci, ed);
303 struct ed *ed = ep->hcpriv; local
787 struct ed *ed = priv->ed; local
[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 Dohci-hub.c134 static inline struct ed *find_head (struct ed *ed) argument
137 while (ed->ed_prev)
138 ed = ed->ed_prev;
139 return ed;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/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-WNDR4500v2-V1.0.0.60_1.0.38/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-WNDR4500v2-V1.0.0.60_1.0.38/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-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/s390/
H A Ds390mach.h21 __u32 ed : 1; /* 05 external damage */ member in struct:mci
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/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-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/minidlna.07.26/
H A Dmetadata.c489 ExifData *ed; local
516 ed = exif_loader_get_data(l);
518 if( !ed )
521 e = exif_content_get_entry (ed->ifd[EXIF_IFD_EXIF], EXIF_TAG_DATE_TIME_ORIGINAL);
522 if( e || (e = exif_content_get_entry(ed->ifd[EXIF_IFD_EXIF], EXIF_TAG_DATE_TIME_DIGITIZED)) ) {
541 e = exif_content_get_entry (ed->ifd[EXIF_IFD_0], EXIF_TAG_MAKE);
545 e = exif_content_get_entry (ed->ifd[EXIF_IFD_0], EXIF_TAG_MODEL);
556 if( ed->size )
559 if( ed->size > 12000 )
561 imsrc = image_new_from_jpeg(NULL, 0, (char *)ed
[all...]
H A Dupnphttp.c1350 ExifData *ed; local
1380 ed = exif_loader_get_data(l);
1383 if( !ed || !ed->size )
1386 if( ed )
1387 exif_data_unref(ed);
1399 ed->size, date);
1412 send_data(h, (char *)ed->data, ed->size, 0);
1414 exif_data_unref(ed);
1441 ExifData *ed; local
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/um/sys-x86_64/
H A Dsignal.c282 struct exec_domain *ed = current_thread_info()->exec_domain; local
283 if (unlikely(ed && ed->signal_invmap && sig < 32))
284 sig = ed->signal_invmap[sig];
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/include/asm-s390/
H A Detr.h99 unsigned int ed : 8; /* ETS device dependent data */ member in struct:etr_edf4
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/ia64/ia32/
H A Dia32_signal.c752 struct exec_domain *ed = current_thread_info()->exec_domain; local
761 err |= __put_user((ed && ed->signal_invmap && sig < 32
762 ? (int)(ed->signal_invmap[sig]) : sig), &frame->sig);
811 struct exec_domain *ed = current_thread_info()->exec_domain; local
821 err |= __put_user((ed && ed->signal_invmap
822 && sig < 32 ? ed->signal_invmap[sig] : sig), &frame->sig);
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/ia64/mm/
H A Dfault.c207 * This fault was due to a speculative load or lfetch.fault, set the "ed"
211 ia64_psr(regs)->ed = 1;
230 * This fault was due to a speculative load or lfetch.fault, set the "ed"
234 ia64_psr(regs)->ed = 1;
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/minidlna.03.14/
H A Dmetadata.c539 ExifData *ed; local
566 ed = exif_loader_get_data(l);
568 if( !ed )
571 e = exif_content_get_entry (ed->ifd[EXIF_IFD_EXIF], EXIF_TAG_DATE_TIME_ORIGINAL);
572 if( e || (e = exif_content_get_entry(ed->ifd[EXIF_IFD_EXIF], EXIF_TAG_DATE_TIME_DIGITIZED)) )
592 e = exif_content_get_entry(ed->ifd[EXIF_IFD_0], EXIF_TAG_MAKE);
596 e = exif_content_get_entry(ed->ifd[EXIF_IFD_0], EXIF_TAG_MODEL);
607 e = exif_content_get_entry(ed->ifd[EXIF_IFD_0], EXIF_TAG_ORIENTATION);
611 switch( exif_get_short(e->data, exif_data_get_byte_order(ed)) )
633 if( ed
[all...]
H A Dupnphttp.c1593 ExifData *ed; local
1622 ed = exif_loader_get_data(l);
1626 if( !ed || !ed->size )
1629 if( ed )
1630 exif_data_unref(ed);
1647 (intmax_t)ed->size, date);
1652 send_data(h, (char *)ed->data, ed->size, 0);
1654 exif_data_unref(ed);
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/x86_64/ia32/
H A Dia32_signal.c525 struct exec_domain *ed = current_thread_info()->exec_domain; local
526 err |= __put_user((ed
527 && ed->signal_invmap
529 ? ed->signal_invmap[sig]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/drivers/usb/misc/
H A Dftdi-elan.c1517 u8 ed = ed_number - 1; local
1527 struct u132_target *target = &ftdi->target[ed];
1530 command->header = 0x80 | (ed << 5);
1574 u8 ed = ed_number - 1; local
1584 struct u132_target *target = &ftdi->target[ed];
1589 command->header = 0x82 | (ed << 5);
1639 u8 ed = ed_number - 1; local
1649 struct u132_target *target = &ftdi->target[ed];
1652 command->header = 0x81 | (ed << 5);
1696 u8 ed local
1775 u8 ed = ed_number - 1; local
1837 u8 ed = ed_number - 1; local
[all...]

Completed in 233 milliseconds

12