HomeSort by relevance Sort by last modified time
    Searched full:png_struct (Results 1 - 25 of 45) sorted by null

1 2

  /external/libpng/
TODO 4 Improve API by hiding the png_struct and png_info structs.
pngmem.c 29 /* Allocate memory for a png_struct. The malloc and memset can be replaced
49 size = png_sizeof(png_struct);
56 png_struct dummy_struct;
88 png_struct dummy_struct;
344 /* Allocate memory for a png_struct or a png_info. The malloc and
354 /* Allocate memory for a png_struct or a png_info. The malloc and
367 size = png_sizeof(png_struct);
374 png_struct dummy_struct;
419 png_struct dummy_struct;
Y2KINFO 21 "png_charp time_buffer" in png_struct and
pngwio.c 166 * arguments a pointer to a png_struct, a pointer to
174 * arguments a pointer to a png_struct. After a call to
pngrio.c 156 * arguments a pointer to a png_struct, a pointer to
pngread.c 223 if (png_sizeof(png_struct) > png_struct_size ||
241 if (png_sizeof(png_struct) > png_struct_size)
303 if (png_sizeof(png_struct) > png_struct_size)
311 png_memset(png_ptr, 0, png_sizeof(png_struct));
    [all...]
pngwrite.c 619 if (png_sizeof(png_struct) > png_struct_size ||
637 if (png_sizeof(png_struct) > png_struct_size)
697 if (png_sizeof(png_struct) > png_struct_size)
705 png_memset(png_ptr, 0, png_sizeof(png_struct));
    [all...]
example.c 104 /* Create and initialize the png_struct with the desired error handler
409 /* Create and initialize the png_struct with the desired error handler
573 /* Create and initialize the png_struct with the desired error handler
libpng-1.2.44.txt 95 png_struct and png_info instances, and thus its own image.
101 There are two main structures that are important to libpng, png_struct
102 and png_info. The first, png_struct, is an internal structure that
115 Applications that do make direct access to the members of png_struct (except
175 Next, png_struct and png_info need to be allocated and initialized. In
    [all...]
libpng-1.2.46.txt 95 png_struct and png_info instances, and thus its own image.
101 There are two main structures that are important to libpng, png_struct
102 and png_info. The first, png_struct, is an internal structure that
115 Applications that do make direct access to the members of png_struct (except
175 Next, png_struct and png_info need to be allocated and initialized. In
    [all...]
  /external/chromium_org/third_party/libpng/
pngmem.c 29 /* Allocate memory for a png_struct. The malloc and memset can be replaced
49 size = png_sizeof(png_struct);
56 png_struct dummy_struct;
88 png_struct dummy_struct;
344 /* Allocate memory for a png_struct or a png_info. The malloc and
354 /* Allocate memory for a png_struct or a png_info. The malloc and
367 size = png_sizeof(png_struct);
374 png_struct dummy_struct;
419 png_struct dummy_struct;
pngwio.c 166 * arguments a pointer to a png_struct, a pointer to
174 * arguments a pointer to a png_struct. After a call to
pngrio.c 141 * arguments a pointer to a png_struct, a pointer to
pngread.c 219 if (png_sizeof(png_struct) > png_struct_size ||
237 if (png_sizeof(png_struct) > png_struct_size)
299 if (png_sizeof(png_struct) > png_struct_size)
307 png_memset(png_ptr, 0, png_sizeof(png_struct));
    [all...]
pngwrite.c 619 if (png_sizeof(png_struct) > png_struct_size ||
637 if (png_sizeof(png_struct) > png_struct_size)
697 if (png_sizeof(png_struct) > png_struct_size)
705 png_memset(png_ptr, 0, png_sizeof(png_struct));
    [all...]
  /external/qemu/distrib/libpng-1.2.19/
pngmem.c 26 /* Allocate memory for a png_struct. The malloc and memset can be replaced
46 size = png_sizeof(png_struct);
53 png_struct dummy_struct;
85 png_struct dummy_struct;
328 /* Allocate memory for a png_struct or a png_info. The malloc and
338 /* Allocate memory for a png_struct or a png_info. The malloc and
351 size = png_sizeof(png_struct);
358 png_struct dummy_struct;
403 png_struct dummy_struct;
pngwio.c 155 arguments a pointer to a png_struct, a pointer to
161 arguments a pointer to a png_struct. After a call to
pngrio.c 132 arguments a pointer to a png_struct, a pointer to
pngread.c 195 if(png_sizeof(png_struct) > png_struct_size ||
213 if(png_sizeof(png_struct) > png_struct_size)
271 if(png_sizeof(png_struct) > png_struct_size)
279 png_memset(png_ptr, 0, png_sizeof (png_struct));
    [all...]
pngwrite.c 580 if(png_sizeof(png_struct) > png_struct_size ||
598 if(png_sizeof(png_struct) > png_struct_size)
657 if (png_sizeof(png_struct) > png_struct_size)
665 png_memset(png_ptr, 0, png_sizeof (png_struct));
    [all...]
  /external/chromium_org/ui/gfx/codec/
png_codec.cc 163 void DecodeInfoCallback(png_struct* png_ptr, png_info* info_ptr) {
288 void DecodeRowCallback(png_struct* png_ptr, png_byte* new_row,
311 void DecodeEndCallback(png_struct* png_ptr, png_info* info) {
324 PngReadStructDestroyer(png_struct** ps, png_info** pi) : ps_(ps), pi_(pi) {
330 png_struct** ps_;
339 explicit PngWriteStructDestroyer(png_struct** ps) : ps_(ps), pi_(0) {
348 png_struct** ps_;
354 png_struct** png_ptr, png_info** info_ptr) {
402 png_struct* png_ptr = NULL;
441 png_struct* png_ptr = NULL
    [all...]
  /external/chromium_org/tools/imagediff/
image_diff_png.cc 152 void DecodeInfoCallback(png_struct* png_ptr, png_info* info_ptr) {
258 void DecodeRowCallback(png_struct* png_ptr, png_byte* new_row,
279 void DecodeEndCallback(png_struct* png_ptr, png_info* info) {
292 PngReadStructDestroyer(png_struct** ps, png_info** pi) : ps_(ps), pi_(pi) {
298 png_struct** ps_;
303 png_struct** png_ptr, png_info** info_ptr) {
330 png_struct* png_ptr = NULL;
471 bool DoLibpngWrite(png_struct* png_ptr, png_info* info_ptr,
587 png_struct* png_ptr = png_create_write_struct(PNG_LIBPNG_VER_STRING,
  /external/chromium_org/third_party/WebKit/Source/platform/image-encoders/skia/
PNGImageEncoder.cpp 76 png_struct* png = png_create_write_struct(PNG_LIBPNG_VER_STRING, 0, 0, 0);
  /external/libpng/contrib/pngminus/
png2pnm.c 190 png_struct *png_ptr = NULL;
  /ndk/tests/build/issue20862-libpng-O0/jni/
png.h 344 * "char time_buffer[29]" in png_struct. This will be no
857 typedef struct png_struct_def png_struct; typedef in typeref:struct:png_struct_def
    [all...]

Completed in 981 milliseconds

1 2