• Home
  • Raw
  • Download

Lines Matching refs:textp

757       png_textp textp = &(info_ptr->text[info_ptr->num_text]);  in png_set_text_2()  local
808 textp->compression = PNG_ITXT_COMPRESSION_NONE; in png_set_text_2()
812 textp->compression = PNG_TEXT_COMPRESSION_NONE; in png_set_text_2()
818 textp->compression = text_ptr[i].compression; in png_set_text_2()
821 textp->key = png_voidcast(png_charp,png_malloc_base(png_ptr, in png_set_text_2()
824 if (textp->key == NULL) in png_set_text_2()
834 textp->key); in png_set_text_2()
836 memcpy(textp->key, text_ptr[i].key, key_len); in png_set_text_2()
837 *(textp->key + key_len) = '\0'; in png_set_text_2()
841 textp->lang = textp->key + key_len + 1; in png_set_text_2()
842 memcpy(textp->lang, text_ptr[i].lang, lang_len); in png_set_text_2()
843 *(textp->lang + lang_len) = '\0'; in png_set_text_2()
844 textp->lang_key = textp->lang + lang_len + 1; in png_set_text_2()
845 memcpy(textp->lang_key, text_ptr[i].lang_key, lang_key_len); in png_set_text_2()
846 *(textp->lang_key + lang_key_len) = '\0'; in png_set_text_2()
847 textp->text = textp->lang_key + lang_key_len + 1; in png_set_text_2()
852 textp->lang=NULL; in png_set_text_2()
853 textp->lang_key=NULL; in png_set_text_2()
854 textp->text = textp->key + key_len + 1; in png_set_text_2()
858 memcpy(textp->text, text_ptr[i].text, text_length); in png_set_text_2()
860 *(textp->text + text_length) = '\0'; in png_set_text_2()
863 if (textp->compression > 0) in png_set_text_2()
865 textp->text_length = 0; in png_set_text_2()
866 textp->itxt_length = text_length; in png_set_text_2()
872 textp->text_length = text_length; in png_set_text_2()
873 textp->itxt_length = 0; in png_set_text_2()