HomeSort by relevance Sort by last modified time
    Searched refs:max_text (Results 1 - 9 of 9) sorted by null

  /external/fio/
ghelpers.h 19 unsigned int max_text; member in struct:multitext_widget
ghelpers.c 146 mt->text = realloc(mt->text, (mt->max_text + 1) * sizeof(char *));
147 mt->text[mt->max_text] = strdup(text);
148 mt->max_text++;
153 if (index >= mt->max_text)
182 for (i = 0; i < mt->max_text; i++) {
189 mt->max_text = 0;
  /external/libpng/
pnginfo.h 121 int max_text; /* current size of text array */ member in struct:png_info_def
pngset.c 725 * because max_text >= num_text (anyway, subtract of two positive integers
728 if (num_text > info_ptr->max_text - info_ptr->num_text)
731 int max_text; local
734 /* Calculate an appropriate max_text, checking for overflow. */
735 max_text = old_num_text;
736 if (num_text <= INT_MAX - max_text)
738 max_text += num_text;
741 if (max_text < INT_MAX-8)
742 max_text = (max_text + 8) & ~0x7
    [all...]
  /external/pdfium/third_party/lpng_v163/
pnginfo.h 122 int max_text; /* current size of text array */ member in struct:png_info_def
pngset.c 706 * because max_text >= num_text (anyway, subtract of two positive integers
709 if (num_text > info_ptr->max_text - info_ptr->num_text)
712 int max_text; local
715 /* Calculate an appropriate max_text, checking for overflow. */
716 max_text = old_num_text;
717 if (num_text <= INT_MAX - max_text)
719 max_text += num_text;
722 if (max_text < INT_MAX-8)
723 max_text = (max_text + 8) & ~0x7;
    [all...]
  /external/opencv3/3rdparty/libpng/
pnginfo.h 109 int max_text; /* current size of text array */ member in struct:png_info_def
pngset.c 693 if (info_ptr->num_text + num_text > info_ptr->max_text)
695 int old_max_text = info_ptr->max_text;
702 info_ptr->max_text = info_ptr->num_text + num_text + 8;
706 (png_size_t)(info_ptr->max_text * png_sizeof(png_text)));
711 info_ptr->max_text = old_max_text;
723 info_ptr->max_text = num_text + 8;
726 (png_size_t)(info_ptr->max_text * png_sizeof(png_text)));
731 info_ptr->max_text = old_max_text;
738 info_ptr->max_text);
    [all...]
  /ndk/tests/build/issue20862-libpng-O0/jni/
pnginfo.h 109 int max_text; /* current size of text array */ member in struct:png_info_def

Completed in 198 milliseconds