Home
last modified time | relevance | path

Searched refs:max_text (Results 1 – 4 of 4) sorted by relevance

/external/libpng/
Dpngset.c668 if (info_ptr->num_text + num_text > info_ptr->max_text) in png_set_text_2()
670 int old_max_text = info_ptr->max_text; in png_set_text_2()
677 info_ptr->max_text = info_ptr->num_text + num_text + 8; in png_set_text_2()
681 (png_uint_32)(info_ptr->max_text * png_sizeof(png_text))); in png_set_text_2()
685 info_ptr->max_text = old_max_text; in png_set_text_2()
695 info_ptr->max_text = num_text + 8; in png_set_text_2()
698 (png_uint_32)(info_ptr->max_text * png_sizeof(png_text))); in png_set_text_2()
703 info_ptr->max_text = old_max_text; in png_set_text_2()
711 info_ptr->max_text); in png_set_text_2()
Dpng.h912 int max_text PNG_DEPSTRUCT; /* current size of text array */
/external/qemu/distrib/libpng-1.2.19/
Dpngset.c744 if (info_ptr->num_text + num_text > info_ptr->max_text) in png_set_text_2()
751 old_max = info_ptr->max_text; in png_set_text_2()
752 info_ptr->max_text = info_ptr->num_text + num_text + 8; in png_set_text_2()
755 (png_uint_32)(info_ptr->max_text * png_sizeof (png_text))); in png_set_text_2()
767 info_ptr->max_text = num_text + 8; in png_set_text_2()
770 (png_uint_32)(info_ptr->max_text * png_sizeof (png_text))); in png_set_text_2()
778 info_ptr->max_text); in png_set_text_2()
Dpng.h749 int max_text; /* current size of text array */ member