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

  /external/libpng/contrib/gregbook/
writepng.c 181 int num_text = 0; local
184 text[num_text].compression = PNG_TEXT_COMPRESSION_NONE;
185 text[num_text].key = "Title";
186 text[num_text].text = mainprog_ptr->title;
187 ++num_text;
190 text[num_text].compression = PNG_TEXT_COMPRESSION_NONE;
191 text[num_text].key = "Author";
192 text[num_text].text = mainprog_ptr->author;
193 ++num_text;
196 text[num_text].compression = PNG_TEXT_COMPRESSION_NONE
    [all...]
  /external/libpng/
pnginfo.h 121 int num_text; /* number of comments read or comments to write */ member in struct:png_info_def
pngtest.c 795 int num_text)
797 while (num_text > 0)
799 switch (text_ptr[--num_text].compression)
1249 int num_text; local
1431 int num_text; local
    [all...]
pngset.c 684 png_const_textp text_ptr, int num_text)
687 ret = png_set_text_2(png_ptr, info_ptr, text_ptr, num_text);
695 png_const_textp text_ptr, int num_text)
702 if (png_ptr == NULL || info_ptr == NULL || num_text <= 0 || text_ptr == NULL)
707 * because max_text >= num_text (anyway, subtract of two positive integers
710 if (num_text > info_ptr->max_text - info_ptr->num_text)
712 int old_num_text = info_ptr->num_text;
718 if (num_text <= INT_MAX - max_text)
720 max_text += num_text;
    [all...]
pngget.c 979 png_textp *text_ptr, int *num_text)
981 if (png_ptr != NULL && info_ptr != NULL && info_ptr->num_text > 0)
989 if (num_text != NULL)
990 *num_text = info_ptr->num_text;
992 return info_ptr->num_text;
995 if (num_text != NULL)
996 *num_text = 0;
    [all...]
png.h     [all...]
pngwrite.c 280 for (i = 0; i < info_ptr->num_text; i++)
375 for (i = 0; i < info_ptr->num_text; i++)
    [all...]
png.c 468 for (i = 0; i < info_ptr->num_text; i++)
472 info_ptr->num_text=0;
    [all...]
pngpriv.h     [all...]
  /external/pdfium/samples/fx_lpng/lpng_v163/
pnginfo.h 121 int num_text; /* number of comments read or comments to write */ member in struct:png_info_def
fx_pngset.c 683 png_const_textp text_ptr, int num_text)
686 ret = png_set_text_2(png_ptr, info_ptr, text_ptr, num_text);
694 png_const_textp text_ptr, int num_text)
701 if (png_ptr == NULL || info_ptr == NULL || num_text <= 0 || text_ptr == NULL)
706 * because max_text >= num_text (anyway, subtract of two positive integers
709 if (num_text > info_ptr->max_text - info_ptr->num_text)
711 int old_num_text = info_ptr->num_text;
717 if (num_text <= INT_MAX - max_text)
719 max_text += num_text;
    [all...]
fx_pngget.c 978 png_textp *text_ptr, int *num_text)
980 if (png_ptr != NULL && info_ptr != NULL && info_ptr->num_text > 0)
988 if (num_text != NULL)
989 *num_text = info_ptr->num_text;
991 return info_ptr->num_text;
994 if (num_text != NULL)
995 *num_text = 0;
    [all...]
fx_pngwrite.c 279 for (i = 0; i < info_ptr->num_text; i++)
374 for (i = 0; i < info_ptr->num_text; i++)
    [all...]
png.h     [all...]
fx_png.c 462 for (i = 0; i < info_ptr->num_text; i++)
466 info_ptr->num_text=0;
    [all...]
pngpriv.h     [all...]
  /ndk/tests/build/issue20862-libpng-O0/jni/
pnginfo.h 108 int num_text; /* number of comments read or comments to write */ member in struct:png_info_def
png.h     [all...]
pngpriv.h     [all...]
  /bootable/recovery/minui/
resources.cpp 249 int num_text; local
260 if (png_get_text(png_ptr, info_ptr, &text, &num_text)) {
261 for (i = 0; i < num_text; ++i) {
  /external/v8/src/
parser.cc 51 int num_text = text_.length(); local
52 if (num_text == 0) {
54 } else if (num_text == 1) {
58 for (int i = 0; i < num_text; i++)
    [all...]
  /external/libpng/contrib/libtests/
pngvalid.c 4902 png_uint_32 num_text = png_get_text(pp, pi, &tp, NULL); local
    [all...]

Completed in 966 milliseconds