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

  /external/libpng/contrib/gregbook/
writepng.c 179 int num_text = 0; local
182 text[num_text].compression = PNG_TEXT_COMPRESSION_NONE;
183 text[num_text].key = "Title";
184 text[num_text].text = mainprog_ptr->title;
185 ++num_text;
188 text[num_text].compression = PNG_TEXT_COMPRESSION_NONE;
189 text[num_text].key = "Author";
190 text[num_text].text = mainprog_ptr->author;
191 ++num_text;
194 text[num_text].compression = PNG_TEXT_COMPRESSION_NONE
    [all...]
  /external/libpng/
pngset.c 644 int num_text)
647 ret = png_set_text_2(png_ptr, info_ptr, text_ptr, num_text);
654 int num_text)
662 if (png_ptr == NULL || info_ptr == NULL || num_text == 0)
668 if (info_ptr->num_text + num_text > info_ptr->max_text)
671 int old_num_text = info_ptr->num_text;
677 info_ptr->max_text = info_ptr->num_text + num_text + 8;
695 info_ptr->max_text = num_text + 8
    [all...]
pngget.c 765 int *num_text)
767 if (png_ptr != NULL && info_ptr != NULL && info_ptr->num_text > 0)
776 if (num_text != NULL)
777 *num_text = info_ptr->num_text;
779 return ((png_uint_32)info_ptr->num_text);
781 if (num_text != NULL)
782 *num_text = 0;
pngtest.c 1088 int num_text; local
1090 if (png_get_text(read_ptr, read_info_ptr, &text_ptr, &num_text) > 0)
1092 png_debug1(0, "Handling %d iTXt/tEXt/zTXt chunks", num_text);
1093 png_set_text(write_ptr, write_info_ptr, text_ptr, num_text);
1276 int num_text; local
    [all...]
png.c 386 for (i = 0; i < info_ptr->num_text; i++)
390 info_ptr->num_text=0;
pngwrite.c 231 for (i = 0; i < info_ptr->num_text; i++)
338 for (i = 0; i < info_ptr->num_text; i++)
    [all...]
png.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...]
  /external/qemu/distrib/libpng-1.2.19/
pngset.c 721 int num_text)
724 ret=png_set_text_2(png_ptr, info_ptr, text_ptr, num_text);
731 int num_text)
738 if (png_ptr == NULL || info_ptr == NULL || num_text == 0)
744 if (info_ptr->num_text + num_text > info_ptr->max_text)
752 info_ptr->max_text = info_ptr->num_text + num_text + 8;
767 info_ptr->max_text = num_text + 8;
768 info_ptr->num_text = 0
    [all...]
pngget.c 727 int *num_text)
729 if (png_ptr != NULL && info_ptr != NULL && info_ptr->num_text > 0)
736 if (num_text != NULL)
737 *num_text = info_ptr->num_text;
738 return ((png_uint_32)info_ptr->num_text);
740 if (num_text != NULL)
741 *num_text = 0;
png.c 370 for (i = 0; i < info_ptr->num_text; i++)
374 info_ptr->num_text=0;
png.h 748 int num_text; \/* number of comments read\/to write *\/ member in struct:png_info_struct
    [all...]
pngwrite.c 214 for (i = 0; i < info_ptr->num_text; i++)
317 for (i = 0; i < info_ptr->num_text; i++)
    [all...]
  /external/v8/src/
parser.cc 114 int num_text = text_.length(); local
115 if (num_text == 0) {
117 } else if (num_text == 1) {
121 for (int i = 0; i < num_text; i++)
    [all...]

Completed in 380 milliseconds