/external/chromium_org/third_party/zlib/contrib/minizip/ |
mztools.c | 39 FILE* fpOut = fopen(fileOut, "wb"); 41 if (fpZip != NULL && fpOut != NULL) { 67 if (fwrite(header, 1, 30, fpOut) == 30) { 77 if (fwrite(filename, 1, fnsize, fpOut) == fnsize) { 95 if (fwrite(extra, 1, extsize, fpOut) == extsize) { 117 if ((int)fwrite(data, 1, dataSize, fpOut) == dataSize) { 252 if ((int)fwrite(buffer, 1, nRead, fpOut) != nRead) { 263 fclose(fpOut);
|
/external/zlib/src/contrib/minizip/ |
mztools.c | 39 FILE* fpOut = fopen(fileOut, "wb"); 41 if (fpZip != NULL && fpOut != NULL) { 67 if (fwrite(header, 1, 30, fpOut) == 30) { 78 if (fwrite(filename, 1, fnsize, fpOut) == fnsize) { 101 if (fwrite(extra, 1, extsize, fpOut) == extsize) { 127 if ((int)fwrite(data, 1, dataSize, fpOut) == dataSize) { 262 if ((int)fwrite(buffer, 1, nRead, fpOut) != nRead) { 273 fclose(fpOut);
|
/external/chromium_org/third_party/libvpx/source/libvpx/examples/ |
resize_util.c | 43 FILE *fpin, *fpout; local 75 fpout = fopen(fout, "wb"); 76 if (fpout == NULL) { 110 fwrite(outbuf, target_width * target_height * 3 / 2, 1, fpout); 115 fclose(fpout);
|
/external/libvpx/libvpx/examples/ |
resize_util.c | 43 FILE *fpin, *fpout; local 75 fpout = fopen(fout, "wb"); 76 if (fpout == NULL) { 110 fwrite(outbuf, target_width * target_height * 3 / 2, 1, fpout); 115 fclose(fpout);
|
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/examples/ |
resize_util.c | 43 FILE *fpin, *fpout; local 75 fpout = fopen(fout, "wb"); 76 if (fpout == NULL) { 110 fwrite(outbuf, target_width * target_height * 3 / 2, 1, fpout); 115 fclose(fpout);
|
/external/chromium_org/third_party/mesa/src/src/mesa/state_tracker/ |
st_cb_bitmap.h | 55 struct gl_fragment_program **fpOut,
|
st_cb_drawpixels.h | 49 struct gl_fragment_program **fpOut);
|
st_cb_bitmap.c | 210 * \param fpOut the new fragment program which does fragment culling 216 struct gl_fragment_program **fpOut, 253 *fpOut = (struct gl_fragment_program *) newProg;
|
st_cb_drawpixels.c | 146 * \param fpOut returns the combined fragment program 151 struct gl_fragment_program **fpOut) 185 *fpOut = (struct gl_fragment_program *) newProg; [all...] |
/external/mesa3d/src/mesa/state_tracker/ |
st_cb_bitmap.h | 55 struct gl_fragment_program **fpOut,
|
st_cb_drawpixels.h | 49 struct gl_fragment_program **fpOut);
|
st_cb_bitmap.c | 210 * \param fpOut the new fragment program which does fragment culling 216 struct gl_fragment_program **fpOut, 253 *fpOut = (struct gl_fragment_program *) newProg;
|
st_cb_drawpixels.c | 146 * \param fpOut returns the combined fragment program 151 struct gl_fragment_program **fpOut) 185 *fpOut = (struct gl_fragment_program *) newProg; [all...] |
/external/libpng/ |
pngtest.c | 832 static png_FILE_p fpout; /* "static" prevents setjmp corruption */ local 861 if ((fpout = fopen(outname, "wb")) == NULL) 919 FCLOSE(fpout); 935 FCLOSE(fpout); 971 png_init_io(write_ptr, fpout); 976 png_set_write_fn(write_ptr, (png_voidp)fpout, pngtest_write_data, [all...] |