Home
last modified time | relevance | path

Searched refs:exif_mem_alloc (Results 1 – 14 of 14) sorted by relevance

/external/libexif/libexif/pentax/
Dexif-mnote-data-pentax.c97 *buf = exif_mem_alloc (ne->mem, *buf_size); in exif_mnote_data_pentax_save()
110 *buf = exif_mem_alloc (ne->mem, *buf_size); in exif_mnote_data_pentax_save()
126 *buf = exif_mem_alloc (ne->mem, *buf_size); in exif_mnote_data_pentax_save()
142 *buf = exif_mem_alloc (ne->mem, *buf_size); in exif_mnote_data_pentax_save()
270 n->entries = exif_mem_alloc (en->mem, sizeof (MnotePentaxEntry) * c); in exif_mnote_data_pentax_load()
315 n->entries[tcount].data = exif_mem_alloc (en->mem, s); in exif_mnote_data_pentax_load()
430 d = exif_mem_alloc (mem, sizeof (ExifMnoteDataPentax)); in exif_mnote_data_pentax_new()
/external/libexif/libexif/olympus/
Dexif-mnote-data-olympus.c118 *buf = exif_mem_alloc (ne->mem, *buf_size); in exif_mnote_data_olympus_save()
133 *buf = exif_mem_alloc (ne->mem, *buf_size); in exif_mnote_data_olympus_save()
162 *buf = exif_mem_alloc (ne->mem, *buf_size); in exif_mnote_data_olympus_save()
423 n->entries = exif_mem_alloc (en->mem, sizeof (MnoteOlympusEntry) * c); in exif_mnote_data_olympus_load()
490 n->entries[tcount].data = exif_mem_alloc (en->mem, s); in exif_mnote_data_olympus_load()
640 d = exif_mem_alloc (mem, sizeof (ExifMnoteDataOlympus)); in exif_mnote_data_olympus_new()
/external/libexif/libexif/fuji/
Dexif-mnote-data-fuji.c94 *buf = exif_mem_alloc (ne->mem, *buf_size); in exif_mnote_data_fuji_save()
188 n->entries = exif_mem_alloc (en->mem, sizeof (MnoteFujiEntry) * c); in exif_mnote_data_fuji_load()
232 n->entries[tcount].data = exif_mem_alloc (en->mem, s); in exif_mnote_data_fuji_load()
330 d = exif_mem_alloc (mem, sizeof (ExifMnoteDataFuji)); in exif_mnote_data_fuji_new()
/external/libexif/libexif/canon/
Dexif-mnote-data-canon.c132 *buf = exif_mem_alloc (ne->mem, sizeof (char) * *buf_size); in exif_mnote_data_canon_save()
226 n->entries = exif_mem_alloc (ne->mem, sizeof (MnoteCanonEntry) * c); in exif_mnote_data_canon_load()
275 n->entries[tcount].data = exif_mem_alloc (ne->mem, s); in exif_mnote_data_canon_load()
367 d = exif_mem_alloc (mem, sizeof (ExifMnoteDataCanon)); in exif_mnote_data_canon_new()
/external/libexif/libexif/
Dexif-mem.h76 void *exif_mem_alloc (ExifMem *m, ExifLong s);
Dexif-content.c60 content = exif_mem_alloc (mem, (ExifLong) sizeof (ExifContent)); in exif_content_new_mem()
63 content->priv = exif_mem_alloc (mem, in exif_content_new_mem()
Dexif-mem.c79 exif_mem_alloc (ExifMem *mem, ExifLong ds) in exif_mem_alloc() function
Dlibexif.sym76 exif_mem_alloc
Dexif-loader.c98 d = exif_mem_alloc (l->mem, i); in exif_loader_alloc()
335 loader = exif_mem_alloc (mem, sizeof (ExifLoader)); in exif_loader_new_mem()
Dexif-log.c75 log = exif_mem_alloc (mem, sizeof (ExifLog)); in exif_log_new_mem()
Dexif-mnote-data.c39 d->priv = exif_mem_alloc (mem, sizeof (ExifMnoteDataPriv)); in exif_mnote_data_construct()
Dexif-data.c77 d = exif_mem_alloc (data->priv->mem, i); in exif_data_alloc()
111 data = exif_mem_alloc (mem, sizeof (ExifData)); in exif_data_new_mem()
114 data->priv = exif_mem_alloc (mem, sizeof (ExifDataPrivate)); in exif_data_new_mem()
Dexif-entry.c80 d = exif_mem_alloc (e->priv->mem, i); in exif_entry_alloc()
124 e = exif_mem_alloc (mem, sizeof (ExifEntry)); in exif_entry_new_mem()
126 e->priv = exif_mem_alloc (mem, sizeof (ExifEntryPrivate)); in exif_entry_new_mem()
1383 unsigned short *utf16 = exif_mem_alloc (e->priv->mem, e->size+sizeof(unsigned short)); in exif_entry_get_value()
/external/libexif/contrib/examples/
Dwrite-exif.c176 buf = exif_mem_alloc(mem, len); in create_tag()