HomeSort by relevance Sort by last modified time
    Searched defs:ifd (Results 1 - 10 of 10) sorted by null

  /external/libexif/libexif/
exif-ifd.c 1 /* exif-ifd.c
23 #include <libexif/exif-ifd.h>
28 ExifIfd ifd; member in struct:__anon3220
40 exif_ifd_get_name (ExifIfd ifd)
45 if (ExifIfdTable[i].ifd == ifd)
exif-data.h 33 #include <libexif/exif-ifd.h>
48 /*! Data for each IFD */
49 ExifContent *ifd[EXIF_IFD_COUNT]; member in struct:_ExifData
61 * #ExifContent for each IFD and the default set of options,
70 * The #ExifData contains an empty #ExifContent for each IFD and the default
153 * on each IFD to fix existing entries, create any new entries that are
163 /*! Execute a function on each IFD in turn.
241 /*! Return an #ExifEntry for the given tag if found in any IFD.
242 * Each IFD is searched in turn and the first containing a tag with
250 (exif_content_get_entry(d->ifd[EXIF_IFD_0],t) ?
    [all...]
exif-content.c 138 /* One tag can only be added once to an IFD. */
142 "the tag '%s' twice to an IFD. This is against "
239 ((c)->parent->ifd[EXIF_IFD_EXIF] == (c)) ? EXIF_IFD_EXIF :
240 ((c)->parent->ifd[EXIF_IFD_0] == (c)) ? EXIF_IFD_0 :
241 ((c)->parent->ifd[EXIF_IFD_1] == (c)) ? EXIF_IFD_1 :
242 ((c)->parent->ifd[EXIF_IFD_GPS] == (c)) ? EXIF_IFD_GPS :
243 ((c)->parent->ifd[EXIF_IFD_INTEROPERABILITY] == (c)) ? EXIF_IFD_INTEROPERABILITY :
262 ExifIfd ifd = exif_entry_get_ifd(e) ; local
267 if (exif_tag_get_support_level_in_ifd (t, ifd, dt) ==
270 "Tag 0x%04x is not recorded in IFD '%s' and has therefore been
280 ExifIfd ifd = exif_content_get_ifd (c); local
    [all...]
  /external/bison/lib/
spawn-pipe.c 124 int ifd[2]; local
139 if (pipe2_safer (ifd, O_BINARY | O_CLOEXEC) < 0)
148 * parent <- ifd[0] <- ifd[1] <- child if pipe_stdout
167 && (!pipe_stdout || dup2 (ifd[1], STDOUT_FILENO) >= 0)
185 /* The child process doesn't inherit ifd[0], ifd[1], ofd[0], ofd[1],
229 close (ifd[1]);
236 close (ifd[0]);
244 fd[0] = ifd[0]
    [all...]
  /development/tools/yuv420sp2rgb/
yuv420sp2rgb.c 200 int ifd, ofd, rc; local
230 ifd = open(infile, O_RDONLY);
231 FAILIF(ifd < 0, "open(%s) failed: %s (%d)\n",
240 in = mmap(0, width * height * 3 / 2, PROT_READ, MAP_PRIVATE, ifd, 0);
  /external/chromium_org/ui/file_manager/file_manager/foreground/js/metadata/
exif_parser.js 17 var EXIF_TAG_EXIFDATA = 0x8769; // Pointer from TIFF to the EXIF IFD.
188 metadata.ifd = {
197 directoryOffset = this.readDirectory(br, metadata.ifd.image);
198 metadata.imageTransform = this.parseOrientation(metadata.ifd.image);
204 this.readDirectory(br, metadata.ifd.thumbnail);
208 this.parseOrientation(metadata.ifd.thumbnail) ||
213 if (EXIF_TAG_EXIFDATA in metadata.ifd.image) {
215 directoryOffset = metadata.ifd.image[EXIF_TAG_EXIFDATA].value;
217 metadata.ifd.exif = {};
218 this.readDirectory(br, metadata.ifd.exif)
    [all...]
  /external/blktrace/btreplay/
btrecord.c 51 * @ifd: Input file descriptor (when opened)
57 int cpu, ifd; member in struct:ifile_info
295 close(iip->ifd);
316 iip->ifd = open(file_name, O_RDONLY);
317 if (iip->ifd < 0) {
494 ret = read(iip->ifd, &t, sizeof(t));
530 ret = read(iip->ifd, buf, pdu_len);
btreplay.c 99 * @ifd: Input file descriptor
113 int cpu, ifd, ofd, iterations; member in struct:thr_info
870 tip->ifd = open(file_name, O_RDONLY);
871 if (tip->ifd < 0) {
875 if (fstat(tip->ifd, &buf) < 0) {
885 if (read(tip->ifd, &hdr, sizeof(hdr)) != sizeof(hdr)) {
904 close(tip->ifd);
938 close(tip->ifd);
1122 result = read(tip->ifd, &bunch->hdr, sizeof(bunch->hdr));
1134 result = read(tip->ifd, &bunch->pkts, count)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/image-decoders/jpeg/
JPEGImageDecoder.cpp 200 // A tiff image file directory (ifd) consists of a uint16_t describing
201 // the number of ifd entries, followed by that many entries.
204 JOCTET* ifd = marker->data + ifdOffset; local
206 if (end - ifd < 2)
208 unsigned tagCount = readUint16(ifd, isBigEndian);
209 ifd += 2; // Skip over the uint16 that was just read.
211 // Every ifd entry is 2 bytes of tag, 2 bytes of contents datatype,
215 for (unsigned i = 0; i < tagCount && end - ifd >= ifdEntrySize; ++i, ifd += ifdEntrySize) {
216 unsigned tag = readUint16(ifd, isBigEndian)
    [all...]
  /external/blktrace/
blktrace.c 240 * ifn & ifd represent input information
264 int ifd, ofd; member in struct:io_info
1443 ret = sendfile(iop->ofd, iop->ifd, NULL, iop->ready);
    [all...]

Completed in 1070 milliseconds