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 786 * because max_text >= num_text (anyway, subtract of two positive integers
789 if (num_text > info_ptr->max_text - info_ptr->num_text)
792 int max_text; local
795 /* Calculate an appropriate max_text, checking for overflow. */
796 max_text = old_num_text;
797 if (num_text <= INT_MAX - max_text)
799 max_text += num_text;
802 if (max_text < INT_MAX-8)
803 max_text = (max_text + 8) & ~0x7
    [all...]
png.c 500 info_ptr->max_text = 0;
    [all...]
  /external/pdfium/third_party/libpng16/
pnginfo.h 121 int max_text; /* current size of text array */ member in struct:png_info_def
pngset.c 737 * because max_text >= num_text (anyway, subtract of two positive integers
740 if (num_text > info_ptr->max_text - info_ptr->num_text)
743 int max_text; local
746 /* Calculate an appropriate max_text, checking for overflow. */
747 max_text = old_num_text;
748 if (num_text <= INT_MAX - max_text)
750 max_text += num_text;
753 if (max_text < INT_MAX-8)
754 max_text = (max_text + 8) & ~0x7
    [all...]
  /external/syslinux/com32/lib/libpng/
pngset.c 668 if (info_ptr->num_text + num_text > info_ptr->max_text)
675 old_max = info_ptr->max_text;
676 info_ptr->max_text = info_ptr->num_text + num_text + 8;
679 (png_uint_32)(info_ptr->max_text * png_sizeof(png_text)));
691 info_ptr->max_text = num_text + 8;
694 (png_uint_32)(info_ptr->max_text * png_sizeof(png_text)));
702 info_ptr->max_text);
    [all...]
  /external/syslinux/com32/include/
png.h     [all...]

Completed in 379 milliseconds