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

  /external/autotest/client/deps/glbench/src/
png_helper.cc 29 png_bytep *row_pointers; local
35 row_pointers = (png_bytep*) malloc(sizeof(png_bytep) * height);
38 row_pointers[y] = (png_byte*) malloc(4*width);
40 png_byte* pixel = &(row_pointers[y][x*4]);
75 png_write_image(png_ptr, row_pointers);
84 free(row_pointers[y]);
85 free(row_pointers);
  /external/libpng/contrib/gregbook/
readpng.c 212 png_bytepp row_pointers = NULL; local
221 free(row_pointers);
222 row_pointers = NULL;
271 if ((row_pointers = (png_bytepp)malloc(height*sizeof(png_bytep))) == NULL) {
282 /* set the individual row_pointers to point at the correct offsets */
285 row_pointers[i] = image_data + i*rowbytes;
290 png_read_image(png_ptr, row_pointers);
296 free(row_pointers);
297 row_pointers = NULL;
readpng2.h 92 uch **row_pointers; member in struct:_mainprog_info
writepng.h 100 uch **row_pointers; member in struct:_mainprog_info
  /external/deqp/framework/common/
tcuImageIO.cpp 124 std::vector<png_bytep> row_pointers; local
125 row_pointers.resize(height);
127 row_pointers[y] = (deUint8*)dst.getAccess().getDataPtr() + y*dst.getAccess().getRowPitch();
129 png_read_image(png_ptr, &row_pointers[0]);
  /external/libpng/contrib/pngminus/
png2pnm.c 200 png_byte **row_pointers = NULL; local
329 if ((row_pointers = (png_byte **)
338 /* set the individual row_pointers to point at the correct offsets */
340 row_pointers[i] = png_pixels + i * row_bytes;
343 png_read_image (png_ptr, row_pointers);
430 if (row_pointers != (unsigned char**) NULL)
431 free (row_pointers);
pnm2png.c 196 png_byte **row_pointers = NULL; local
477 if (row_pointers == (unsigned char**) NULL)
479 if ((row_pointers = (png_byte **)
489 /* set the individual row_pointers to point at the correct offsets */
491 row_pointers[i] = png_pixels + i * row_bytes;
494 png_write_image (png_ptr, row_pointers);
502 if (row_pointers != (unsigned char**) NULL)
503 free (row_pointers);
  /development/tools/etc1tool/
etc1tool.cpp 142 png_bytep* row_pointers = NULL; // Does not need to be deallocated. local
193 row_pointers = png_get_rows(png_ptr, info_ptr);
209 memcpy(pSourceImage + y * stride, row_pointers[y], stride);
  /external/libpng/
pnginfo.h 37 * splt_palettes, scal_unit, row_pointers, and unknowns. By default, these
255 png_bytepp row_pointers; /* the image bits */ member in struct:png_info_def
  /external/pdfium/third_party/libpng16/
pnginfo.h 37 * splt_palettes, scal_unit, row_pointers, and unknowns. By default, these
255 png_bytepp row_pointers; /* the image bits */ member in struct:png_info_def
  /external/skia/third_party/libpng/
pnginfo.h 37 * splt_palettes, scal_unit, row_pointers, and unknowns. By default, these
255 png_bytepp row_pointers; /* the image bits */ member in struct:png_info_def
  /external/syslinux/com32/lib/sys/vesa/
background.c 119 png_bytep row_pointers[__vesa_info.mi.v_res], rp; local
174 row_pointers[i] = rp;
178 png_read_image(png_ptr, row_pointers);

Completed in 364 milliseconds