Searched refs:fwrite (Results 76 - 100 of 511) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/sfntly/cpp/src/sample/subsetter/
H A Dsubset_util.cc93 fwrite(output_stream.Get(), 1, output_stream.Size(), output_file);
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/main/test/SwitchingSampRate/
H A DSwitchingSampRate.cc396 if (fwrite(&(packetData[senderIdx]->arrival_time),
404 if (fwrite(&(packetData[senderIdx]->arrival_time),
436 if (fwrite(resampledAudio60ms, sizeof(short), lenDecodedAudio << 1,
444 if (fwrite(audioBuff60ms, sizeof(short), lenDecodedAudio,
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/isac/main/util/
H A Dutility.h86 fwrite(dummy, sizeof(double), len, filePtr); \
/external/chromium_org/third_party/webrtc/modules/audio_coding/neteq/test/
H A DRTPcat.cc47 EXPECT_EQ(kRtpDumpHeaderSize, fwrite(firstline, 1, kRtpDumpHeaderSize,
H A DRTPtimeshift.cc57 fwrite(firstline, 1, kRtpDumpHeaderSize, outFile));
H A DRTPencode.cc534 if (fwrite(&dummy_variable, 4, 1, out_file) != 1) {
537 if (fwrite(&dummy_variable, 4, 1, out_file) != 1) {
540 if (fwrite(&dummy_variable, 4, 1, out_file) != 1) {
543 if (fwrite(&dummy_variable, 2, 1, out_file) != 1) {
546 if (fwrite(&dummy_variable, 2, 1, out_file) != 1) {
597 if (fwrite(&length, 2, 1, out_file) != 1) {
600 if (fwrite(&plen, 2, 1, out_file) != 1) {
603 if (fwrite(&offset, 4, 1, out_file) != 1) {
606 if (fwrite(rtp_data, 12 + enc_len, 1, out_file) != 1) {
693 if (fwrite(
[all...]
/external/chromium_org/third_party/yasm/source/patched-yasm/tools/re2c/
H A Dsubstr.c9 fwrite(s->str, s->len, 1, o);
/external/chromium_org/v8/src/
H A Dlog-utils.h107 size_t rv = fwrite(msg, 1, length, output_handle_);
/external/compiler-rt/SDKs/darwin/usr/include/
H A Dstdio.h27 /* Determine the appropriate fdopen, fopen(), and fwrite() functions. */
79 size_t fwrite(const void * __restrict, size_t, size_t, FILE * __restrict)
/external/libpng/
H A Dpngwio.c58 check = fwrite(data, 1, length, (png_FILE_p)(png_ptr->io_ptr));
/external/libvorbis/examples/
H A Dvorbisfile_example.c83 fwrite(pcmout,1,ret,stdout);
/external/libvorbis/test/
H A Dwrite_read.c82 fwrite (og.header,1,og.header_len,file);
83 fwrite (og.body,1,og.body_len,file);
112 fwrite (og.header,1,og.header_len,file);
113 fwrite (og.body,1,og.body_len,file);
/external/libvpx/libvpx/test/
H A Dresize_test.cc55 (void)fwrite(header, 1, 32, outfile);
61 (void)fwrite(header, 1, 4, outfile);
77 (void)fwrite(header, 1, 12, outfile);
224 (void)fwrite(pkt->data.frame.buf, 1, pkt->data.frame.sz, outfile_);
/external/libvpx/libvpx/third_party/libwebm/
H A Dmkvwriter.cpp39 const size_t bytes_written = fwrite(buffer, 1, length, file_);
/external/libvpx/libvpx/
H A Dvideo_writer.c74 if (fwrite(buffer, 1, size, writer->file) != size)
/external/mesa3d/src/gallium/drivers/trace/
H A Dtr_dump.c70 fwrite(buf, size, 1, stream);
/external/nanopb-c/examples/using_union_messages/
H A Dencode.c80 fwrite(buffer, 1, stream.bytes_written, stdout);
/external/qemu/android/filesystems/
H A Dramdisk_extractor_unittest.cpp36 bool result = (fwrite(data, dataSize, 1, file) == 1);
/external/sfntly/cpp/src/sample/subsetter/
H A Dsubset_util.cc93 fwrite(output_stream.Get(), 1, output_stream.Size(), output_file);
/external/srec/audio/test/AudioHardwareRecord/src/
H A DAudioHardwareRecord.c94 fwrite(recordedSamples, sizeof(typeSample), i, fpOutput);
/external/zlib/src/examples/
H A Dgzjoin.c56 #include <stdio.h> /* fputs(), fprintf(), fwrite(), putc() */
267 fwrite("\x1f\x8b\x08\0\0\0\0\0\0\xff", 1, 10, out);
320 fwrite(start, 1, strm.next_in - start, out);
361 fwrite(start, 1, strm.next_in - start, out);
379 fwrite(start, 1, in->next - start - 1, out);
392 fwrite("\0\0\xff\xff", 1, 4, out);
/external/elfutils/0.153/src/
H A Dldlex.l53 #undef fwrite
54 #define fwrite(b, m, n, s) fwrite_unlocked (b, m, n, s)
59 = fwrite (yytext, yyleng, 1, yyout); } while (0)
/external/libvpx/libvpx/vp9/decoder/
H A Dvp9_decoder.c45 fwrite(src, w, 1, yuv_file);
54 fwrite(src, w, 1, yuv_file);
62 fwrite(src, w, 1, yuv_file);
80 fwrite(frame->y_buffer + i * frame->y_stride,
88 fwrite(frame->u_buffer + i * frame->uv_stride,
96 fwrite(frame->v_buffer + i * frame->uv_stride,
/external/chromium_org/third_party/webrtc/modules/audio_coding/codecs/ilbc/test/
H A DiLBC_test.c171 if (fwrite(encoded_data, sizeof(int16_t),
211 if (fwrite(decoded_data, sizeof(int16_t), len,
H A DiLBC_testLib.c150 fwrite(encoded_data,1,len,efileid);
183 fwrite(data,sizeof(short),len,ofileid);

Completed in 499 milliseconds

1234567891011>>