HomeSort by relevance Sort by last modified time
    Searched full:fpout (Results 1 - 8 of 8) sorted by null

  /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/libvpx/libvpx/examples/
resize_util.c 51 FILE *fpin, *fpout; local
85 fpout = fopen(fout, "wb");
86 if (fpout == NULL) {
120 fwrite(outbuf, target_width * target_height * 3 / 2, 1, fpout);
125 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/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 864 static png_FILE_p fpout; /* "static" prevents setjmp corruption */ local
896 if ((fpout = fopen(outname, "wb")) == NULL)
954 FCLOSE(fpout);
970 FCLOSE(fpout);
1006 png_init_io(write_ptr, fpout);
1011 png_set_write_fn(write_ptr, (png_voidp)fpout, pngtest_write_data,
    [all...]

Completed in 359 milliseconds