Home
last modified time | relevance | path

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

/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.c244 data->priv->order, (ExifShort) e->tag); in exif_data_save_data_entry()
246 data->priv->order, (ExifShort) e->format); in exif_data_save_data_entry()
368 ExifShort n; in exif_data_load_data_content()
491 ExifShort tag1 = exif_get_short (p1, o); in cmp_func()
492 ExifShort tag2 = exif_get_short (p2, o); in cmp_func()
575 (ExifShort) (ifd->count + n_ptr + n_thumb)); in exif_data_save_data_content()
772 ExifShort n; in exif_data_load_data()
Dexif-entry.c175 static inline ExifShort
181 return (ExifShort) exif_get_long (buf, order); in exif_get_short_convert()
183 return (ExifShort) exif_get_slong (buf, order); in exif_get_short_convert()
185 return (ExifShort) exif_get_short (buf, order); in exif_get_short_convert()
187 return (ExifShort) exif_get_sshort (buf, order); in exif_get_short_convert()
190 return (ExifShort) buf[0]; in exif_get_short_convert()
193 return (ExifShort) 0; in exif_get_short_convert()
449 ExifShort v_short; in exif_entry_format_value()
835 ExifShort v_short, v_short2, v_short3, v_short4; in exif_entry_get_value()
/external/libexif/
DChangeLog1621 * libexif/exif-data.c: Add explicit typecasts to ExifShort.