Lines Matching refs:textp
714 png_textp textp = &(info_ptr->text[info_ptr->num_text]);
763 textp->compression = PNG_ITXT_COMPRESSION_NONE;
767 textp->compression = PNG_TEXT_COMPRESSION_NONE;
773 textp->compression = text_ptr[i].compression;
776 textp->key = (png_charp)png_malloc_warn(png_ptr,
780 if (textp->key == NULL)
786 textp->key);
788 png_memcpy(textp->key, text_ptr[i].key,(png_size_t)(key_len));
789 *(textp->key + key_len) = '\0';
793 textp->lang = textp->key + key_len + 1;
794 png_memcpy(textp->lang, text_ptr[i].lang, lang_len);
795 *(textp->lang + lang_len) = '\0';
796 textp->lang_key = textp->lang + lang_len + 1;
797 png_memcpy(textp->lang_key, text_ptr[i].lang_key, lang_key_len);
798 *(textp->lang_key + lang_key_len) = '\0';
799 textp->text = textp->lang_key + lang_key_len + 1;
804 textp->lang=NULL;
805 textp->lang_key=NULL;
806 textp->text = textp->key + key_len + 1;
810 png_memcpy(textp->text, text_ptr[i].text,
813 *(textp->text + text_length) = '\0';
816 if (textp->compression > 0)
818 textp->text_length = 0;
819 textp->itxt_length = text_length;
825 textp->text_length = text_length;
826 textp->itxt_length = 0;