Home | History | Annotate | Download | only in aapt

Lines Matching refs:outRows

878                           int *colorType, png_bytepp outRows)
908 png_bytep out = outRows[j];
992 // Write the palette index for the pixel to outRows optimistically.
1012 // Write the palette index for the pixel to outRows optimistically.
1090 png_bytep out = outRows[j];
1115 // If the image is gray or gray + alpha, compact the pixels into outRows
1118 png_bytep out = outRows[j];
1152 png_bytepp outRows = (png_bytepp) malloc((int) imageInfo.height * sizeof(png_bytep));
1153 if (outRows == (png_bytepp) 0) {
1158 outRows[i] = (png_bytep) malloc(2 * (int) imageInfo.width);
1159 if (outRows[i] == (png_bytep) 0) {
1179 &paletteEntries, &alphaPaletteEntries, &hasTransparency, &color_type, outRows);
1293 rows = outRows;
1305 free(outRows[i]);
1307 free(outRows);