Lines Matching refs:textp
777 png_textp textp = &(info_ptr->text[info_ptr->num_text]); in png_set_text_2() local
828 textp->compression = PNG_ITXT_COMPRESSION_NONE; in png_set_text_2()
832 textp->compression = PNG_TEXT_COMPRESSION_NONE; in png_set_text_2()
838 textp->compression = text_ptr[i].compression; in png_set_text_2()
841 textp->key = png_voidcast(png_charp,png_malloc_base(png_ptr, in png_set_text_2()
844 if (textp->key == NULL) in png_set_text_2()
855 textp->key); in png_set_text_2()
857 memcpy(textp->key, text_ptr[i].key, key_len); in png_set_text_2()
858 *(textp->key + key_len) = '\0'; in png_set_text_2()
862 textp->lang = textp->key + key_len + 1; in png_set_text_2()
863 memcpy(textp->lang, text_ptr[i].lang, lang_len); in png_set_text_2()
864 *(textp->lang + lang_len) = '\0'; in png_set_text_2()
865 textp->lang_key = textp->lang + lang_len + 1; in png_set_text_2()
866 memcpy(textp->lang_key, text_ptr[i].lang_key, lang_key_len); in png_set_text_2()
867 *(textp->lang_key + lang_key_len) = '\0'; in png_set_text_2()
868 textp->text = textp->lang_key + lang_key_len + 1; in png_set_text_2()
873 textp->lang=NULL; in png_set_text_2()
874 textp->lang_key=NULL; in png_set_text_2()
875 textp->text = textp->key + key_len + 1; in png_set_text_2()
879 memcpy(textp->text, text_ptr[i].text, text_length); in png_set_text_2()
881 *(textp->text + text_length) = '\0'; in png_set_text_2()
884 if (textp->compression > 0) in png_set_text_2()
886 textp->text_length = 0; in png_set_text_2()
887 textp->itxt_length = text_length; in png_set_text_2()
893 textp->text_length = text_length; in png_set_text_2()
894 textp->itxt_length = 0; in png_set_text_2()