Home
last modified time | relevance | path

Searched refs:ExifShort (Results 1 – 13 of 13) sorted by relevance

/external/libexif/libexif/olympus/
Dexif-mnote-data-olympus.c127 exif_set_short (*buf + 6, n->order, (ExifShort) 1); in exif_mnote_data_olympus_save()
141 exif_set_short (*buf + 8, n->order, (ExifShort) ( in exif_mnote_data_olympus_save()
145 exif_set_short (*buf + 10, n->order, (ExifShort) 3); in exif_mnote_data_olympus_save()
173 exif_set_short (*buf + 10, n->order, (ExifShort) ( in exif_mnote_data_olympus_save()
177 exif_set_short (*buf + 12, n->order, (ExifShort) 0x2A); in exif_mnote_data_olympus_save()
178 exif_set_long (*buf + 14, n->order, (ExifShort) 8); in exif_mnote_data_olympus_save()
190 exif_set_short (*buf + o2, n->order, (ExifShort) n->count); in exif_mnote_data_olympus_save()
197 (ExifShort) (n->entries[i].tag - base)); in exif_mnote_data_olympus_save()
199 (ExifShort) n->entries[i].format); in exif_mnote_data_olympus_save()
241 ExifShort c; in exif_mnote_data_olympus_load()
Dmnote-olympus-entry.c277 ExifShort vs = 0; in mnote_olympus_entry_get_value()
706 ExifShort v2 = exif_get_short (entry->data + 2, entry->order); in mnote_olympus_entry_get_value()
/external/libexif/libexif/
Dexif-utils.h48 typedef uint16_t ExifShort; /* 2 bytes */ typedef
74 ExifShort exif_get_short (const unsigned char *b, ExifByteOrder order);
123 ExifShort value);
Dexif-utils.c31 ExifShort s; in exif_array_set_byte_order()
101 ExifShort
124 exif_set_short (unsigned char *b, ExifByteOrder order, ExifShort value) in exif_set_short()
Dexif-data.c248 data->priv->order, (ExifShort) e->tag); in exif_data_save_data_entry()
250 data->priv->order, (ExifShort) e->format); in exif_data_save_data_entry()
369 ExifShort n; in exif_data_load_data_content()
492 ExifShort tag1 = exif_get_short (p1, o); in cmp_func()
493 ExifShort tag2 = exif_get_short (p2, o); in cmp_func()
576 (ExifShort) (ifd->count + n_ptr + n_thumb)); in exif_data_save_data_content()
794 ExifShort n; in exif_data_load_data()
Dexif-entry.c173 static inline ExifShort
179 return (ExifShort) exif_get_long (buf, order); in exif_get_short_convert()
181 return (ExifShort) exif_get_slong (buf, order); in exif_get_short_convert()
183 return (ExifShort) exif_get_short (buf, order); in exif_get_short_convert()
185 return (ExifShort) exif_get_sshort (buf, order); in exif_get_short_convert()
188 return (ExifShort) buf[0]; in exif_get_short_convert()
191 return (ExifShort) 0; in exif_get_short_convert()
447 ExifShort v_short; in exif_entry_format_value()
833 ExifShort v_short, v_short2, v_short3, v_short4; in exif_entry_get_value()
/external/libexif/libexif/pentax/
Dexif-mnote-data-pentax.c104 exif_set_short (*buf + 4, n->order, (ExifShort) 0); in exif_mnote_data_pentax_save()
118 exif_set_short (*buf + 4, n->order, (ExifShort) ( in exif_mnote_data_pentax_save()
134 exif_set_short (*buf + 4, n->order, (ExifShort) 0); in exif_mnote_data_pentax_save()
155 exif_set_short (*buf + o2, n->order, (ExifShort) n->count); in exif_mnote_data_pentax_save()
165 (ExifShort) (n->entries[i].tag - base)); in exif_mnote_data_pentax_save()
167 (ExifShort) n->entries[i].format); in exif_mnote_data_pentax_save()
219 ExifShort c; in exif_mnote_data_pentax_load()
Dmnote-pentax-entry.c312 ExifShort vs, vs2; in mnote_pentax_entry_get_value()
/external/libexif/libexif/canon/
Dexif-mnote-data-canon.c139 exif_set_short (*buf, n->order, (ExifShort) n->count); in exif_mnote_data_canon_save()
144 exif_set_short (*buf + o + 0, n->order, (ExifShort) n->entries[i].tag); in exif_mnote_data_canon_save()
145 exif_set_short (*buf + o + 2, n->order, (ExifShort) n->entries[i].format); in exif_mnote_data_canon_save()
203 ExifShort c; in exif_mnote_data_canon_load()
Dmnote-canon-entry.c72 ExifShort value;
443 unsigned int t, ExifShort vs, char *val, unsigned int maxlen) in canon_search_table_value()
465 unsigned int t, ExifShort vs, char *val, unsigned int maxlen) in canon_search_table_bitfield()
555 ExifShort vs, n; in mnote_canon_entry_get_value()
/external/libexif/libexif/fuji/
Dexif-mnote-data-fuji.c108 exif_set_short (*buf + 8 + 4, n->order, (ExifShort) n->count); in exif_mnote_data_fuji_save()
113 exif_set_short (*buf + o + 0, n->order, (ExifShort) n->entries[i].tag); in exif_mnote_data_fuji_save()
114 exif_set_short (*buf + o + 2, n->order, (ExifShort) n->entries[i].format); in exif_mnote_data_fuji_save()
Dmnote-fuji-entry.c195 ExifShort vs, vs2; in mnote_fuji_entry_get_value()
/external/libexif/
DChangeLog1621 * libexif/exif-data.c: Add explicit typecasts to ExifShort.