Lines Matching refs:EXIF_G
100 #define EXIF_G(v) ZEND_MODULE_GLOBALS_ACCESSOR(exif, v) in ZEND_DECLARE_MODULE_GLOBALS() macro
179 if (EXIF_G(tag_table_cache)) { in PHP_MSHUTDOWN_FUNCTION()
180 zend_hash_destroy(EXIF_G(tag_table_cache)); in PHP_MSHUTDOWN_FUNCTION()
181 free(EXIF_G(tag_table_cache)); in PHP_MSHUTDOWN_FUNCTION()
1354 if (!EXIF_G(tag_table_cache)) { in exif_get_tag_ht()
1355 EXIF_G(tag_table_cache) = malloc(sizeof(HashTable)); in exif_get_tag_ht()
1356 zend_hash_init(EXIF_G(tag_table_cache), 0, NULL, exif_tag_ht_dtor, 1); in exif_get_tag_ht()
1359 ht = zend_hash_index_find_ptr(EXIF_G(tag_table_cache), (uintptr_t) tag_table); in exif_get_tag_ht()
1365 zend_hash_index_add_new_ptr(EXIF_G(tag_table_cache), (uintptr_t) tag_table, ht); in exif_get_tag_ht()
4452 ImageInfo->encode_unicode = estrdup(EXIF_G(encode_unicode)); in exif_read_from_impl()
4453 ImageInfo->decode_unicode_be = estrdup(EXIF_G(decode_unicode_be)); in exif_read_from_impl()
4454 ImageInfo->decode_unicode_le = estrdup(EXIF_G(decode_unicode_le)); in exif_read_from_impl()
4455 ImageInfo->encode_jis = estrdup(EXIF_G(encode_jis)); in exif_read_from_impl()
4456 ImageInfo->decode_jis_be = estrdup(EXIF_G(decode_jis_be)); in exif_read_from_impl()
4457 ImageInfo->decode_jis_le = estrdup(EXIF_G(decode_jis_le)); in exif_read_from_impl()