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

  /external/fio/
ghelpers.h 19 unsigned int max_text; member in struct:multitext_widget
  /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/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/skia/third_party/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...]

Completed in 364 milliseconds