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 122 int max_text; /* current size of text array */ member in struct:png_info_def
pngset.c 707 * because max_text >= num_text (anyway, subtract of two positive integers
710 if (num_text > info_ptr->max_text - info_ptr->num_text)
713 int max_text; local
716 /* Calculate an appropriate max_text, checking for overflow. */
717 max_text = old_num_text;
718 if (num_text <= INT_MAX - max_text)
720 max_text += num_text;
723 if (max_text < INT_MAX-8)
724 max_text = (max_text + 8) & ~0x7
    [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
  /external/chromium_org/third_party/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...]
png.h     [all...]
  /external/qemu/distrib/libpng-1.2.46/
pngset.c 668 if (info_ptr->num_text + num_text > info_ptr->max_text)
670 int old_max_text = info_ptr->max_text;
677 info_ptr->max_text = info_ptr->num_text + num_text + 8;
681 (png_uint_32)(info_ptr->max_text * png_sizeof(png_text)));
685 info_ptr->max_text = old_max_text;
695 info_ptr->max_text = num_text + 8;
698 (png_uint_32)(info_ptr->max_text * png_sizeof(png_text)));
703 info_ptr->max_text = old_max_text;
711 info_ptr->max_text);
    [all...]
png.h     [all...]

Completed in 913 milliseconds