Searched refs:pOut (Results 1 – 1 of 1) sorted by relevance
/development/tools/etc1tool/ |
D | etc1tool.cpp | 109 int fwrite_big_endian_uint16(png_uint_32 data, FILE* pOut) { in fwrite_big_endian_uint16() argument 110 if (fputc(0xff & (data >> 8), pOut) == EOF) { in fwrite_big_endian_uint16() 113 if (fputc(0xff & data, pOut) == EOF) { in fwrite_big_endian_uint16() 314 FILE* pOut = NULL; in encode() local 337 if ((pOut = fopen(pOutput, "wb")) == NULL) { in encode() 345 if (fwrite(header, sizeof(header), 1, pOut) != 1) { in encode() 353 if (fwrite(pEncodedData, encodedSize, 1, pOut) != 1) { in encode() 360 fclose(pOut); in encode() 361 pOut = NULL; in encode() 399 if (pOut) { in encode() [all …]
|