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

  /external/autotest/client/deps/glbench/src/
png_helper.cc 30 png_bytep *row_pointers; local
36 row_pointers = (png_bytep*) malloc(sizeof(png_bytep) * height);
39 row_pointers[y] = (png_byte*) malloc(4*width);
41 png_byte* pixel = &(row_pointers[y][x*4]);
76 png_write_image(png_ptr, row_pointers);
85 free(row_pointers[y]);
86 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/opencv3/3rdparty/libpng/
pnginfo.h 38 * splt_palettes, scal_unit, row_pointers, and unknowns. By default, these
265 png_bytepp row_pointers; /* the image bits */ member in struct:png_info_def
  /external/pdfium/third_party/lpng_v163/
pnginfo.h 38 * splt_palettes, scal_unit, row_pointers, and unknowns. By default, these
256 png_bytepp row_pointers; /* the image bits */ member in struct:png_info_def
  /ndk/tests/build/issue20862-libpng-O0/jni/
pnginfo.h 38 * splt_palettes, scal_unit, row_pointers, and unknowns. By default, these
265 png_bytepp row_pointers; /* the image bits */ member in struct:png_info_def
  /hardware/ti/omap4xxx/hwc/
hwc.c 1572 png_bytepp row_pointers = NULL; local
    [all...]
  /hardware/ti/omap4-aah/hwc/
hwc.c 2128 png_bytepp row_pointers = NULL; local
    [all...]

Completed in 340 milliseconds