Searched refs:fwrite (Results 1 - 25 of 253) sorted by relevance

1234567891011

/external/clang/test/CodeGen/
H A D2006-09-18-fwrite-cast-crash.c5 unsigned fwrite(signed char *, unsigned , unsigned , signed char *);
11 struct l_struct_2E_FILE *))(void*)fwrite)((&(str301[0u])), 38u, 1u, ltmp_6202_16);
/external/valgrind/main/memcheck/tests/
H A Dfwrite.stderr.exp3 by 0x........: main (fwrite.c:12)
6 by 0x........: main (fwrite.c:7)
/external/compiler-rt/SDKs/linux/usr/include/
H A Dstdio.h33 extern size_t fwrite(const void * restrict, size_t, size_t, FILE * restrict);
/external/compiler-rt/lib/profile/
H A DGCDAProfiling.c48 fwrite(&i, 4, 1, output_file);
65 fwrite(s, strlen(s), 1, output_file);
66 fwrite("\0\0\0\0", 4 - (strlen(s) % 4), 1, output_file);
146 fwrite("adcg*204MVLL", 12, 1, output_file);
148 fwrite("adcg*404MVLL", 12, 1, output_file);
190 fwrite("\0\0\0\1", 4, 1, output_file);
203 fwrite("\0\0\xa1\1", 4, 1, output_file);
218 fwrite("\0\0\0\0\0\0\0\0", 8, 1, output_file);
/external/llvm/runtime/libprofile/
H A DGCDAProfiling.c42 fwrite(&i, 4, 1, output_file);
59 fwrite(s, strlen(s), 1, output_file);
60 fwrite("\0\0\0\0", 4 - (strlen(s) % 4), 1, output_file);
127 fwrite("adcg*204MVLL", 12, 1, output_file);
129 fwrite("adcg*404MVLL", 12, 1, output_file);
170 fwrite("\0\0\0\1", 4, 1, output_file);
183 fwrite("\0\0\xa1\1", 4, 1, output_file);
198 fwrite("\0\0\0\0\0\0\0\0", 8, 1, output_file);
/external/zlib/src/contrib/minizip/
H A Dmztools.c67 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) {
170 if (fwrite(header, 1, 46, fpOutCD) == 46) {
175 if (fwrite(filename, 1, fnsize, fpOutCD) == fnsize) {
188 if (fwrite(extra, 1, extsize, fpOutCD) == extsize) {
198 if ((int)fwrite(comment, 1, comsize, fpOutCD) == comsize) {
240 if (fwrite(header, 1, 22, fpOutCD) == 22) {
244 if ((int)fwrite(commen
[all...]
/external/webrtc/src/modules/audio_processing/test/
H A Dunpack.cc137 if (fwrite(msg.data().data(), msg.data().size(), 1, reverse_file) !=
152 if (fwrite(msg.input_data().data(), msg.input_data().size(), 1,
160 if (fwrite(msg.output_data().data(), msg.output_data().size(), 1,
170 if (fwrite(&delay, sizeof(int32_t), 1, delay_file) != 1) {
178 if (fwrite(&drift, sizeof(int32_t), 1, drift_file) != 1) {
186 if (fwrite(&level, sizeof(int32_t), 1, level_file) != 1) {
/external/qemu/
H A Dtcpdump.c66 if (fwrite(&h, sizeof(h), 1, out) != 1) {
134 fwrite( &h, sizeof(h), 1, capture_file );
135 fwrite( base, 1, len2, capture_file );
/external/compiler-rt/SDKs/darwin/usr/include/
H A Dstdio.h23 /* Determine the appropriate fopen() and fwrite() functions. */
58 size_t fwrite(const void * restrict, size_t, size_t, FILE * restrict)
/external/libvorbis/examples/
H A Dencoder_example.c174 fwrite(og.header,1,og.header_len,stdout);
175 fwrite(og.body,1,og.body_len,stdout);
227 fwrite(og.header,1,og.header_len,stdout);
228 fwrite(og.body,1,og.body_len,stdout);
/external/webp/examples/
H A Ddwebp.c107 ok &= (fwrite(out, width * height, 3, fout) == 3);
119 ok &= (fwrite(out + y * stride, width, 1, fout) == 1);
123 ok &= (fwrite(u + y * uv_stride, uv_width, 1, fout) == 1);
124 ok &= (fwrite(v + y * uv_stride, uv_width, 1, fout) == 1);
/external/dropbear/libtommath/etc/
H A Dpprime.c42 r = 3; fwrite(&r, 1, sizeof(mp_digit), out);
43 r = 5; fwrite(&r, 1, sizeof(mp_digit), out);
44 r = 7; fwrite(&r, 1, sizeof(mp_digit), out);
45 r = 11; fwrite(&r, 1, sizeof(mp_digit), out);
46 r = 13; fwrite(&r, 1, sizeof(mp_digit), out);
47 r = 17; fwrite(&r, 1, sizeof(mp_digit), out);
48 r = 19; fwrite(&r, 1, sizeof(mp_digit), out);
49 r = 23; fwrite(&r, 1, sizeof(mp_digit), out);
50 r = 29; fwrite(&r, 1, sizeof(mp_digit), out);
51 r = 31; fwrite(
[all...]
/external/quake/quake/src/QW/client/
H A Dcl_demo.c80 fwrite (&fl, sizeof(fl), 1, cls.demofile);
83 fwrite (&c, sizeof(c), 1, cls.demofile);
94 fwrite(&cmd, sizeof(cmd), 1, cls.demofile);
99 fwrite (&fl, 4, 1, cls.demofile);
124 fwrite (&fl, sizeof(fl), 1, cls.demofile);
127 fwrite (&c, sizeof(c), 1, cls.demofile);
130 fwrite (&len, 4, 1, cls.demofile);
131 fwrite (msg->data, msg->cursize, 1, cls.demofile);
323 fwrite (&fl, sizeof(fl), 1, cls.demofile);
326 fwrite (
[all...]
/external/llvm/lib/Analysis/
H A DPathProfileVerifier.cpp188 fwrite(&type,sizeof(unsigned),1,edgeFile);
189 fwrite(&num,sizeof(unsigned),1,edgeFile);
190 fwrite(pathProfileInfo.argList.c_str(),1,num,edgeFile);
192 fwrite(&zeros, 1, 4-(num&3), edgeFile);
196 fwrite(&type,sizeof(unsigned),1,edgeFile);
197 fwrite(&num,sizeof(unsigned),1,edgeFile);
202 fwrite(&*s, sizeof (unsigned), 1, edgeFile);
/external/bison/lib/
H A Dunlocked-io.h94 # undef fwrite macro
95 # define fwrite(w,x,y,z) fwrite_unlocked (w,x,y,z) macro
97 # define fwrite_unlocked(w,x,y,z) fwrite (w,x,y,z)
/external/webkit/Source/WebCore/platform/network/win/
H A DDownloadBundleWin.cpp81 if (fwrite(resumeBytes, 1, resumeLength, bundle) != resumeLength) {
86 if (fwrite(&resumeLength, 4, 1, bundle) != 1) {
92 if (fwrite(&magic, 4, 1, bundle) != 1) {
/external/webkit/Tools/DumpRenderTree/
H A DPixelDumpSupport.cpp122 fwrite(data, 1, insertOffset, stdout);
123 fwrite(bytesToAdd.data(), 1, bytesToAdd.size(), stdout);
130 size_t bytesWritten = fwrite(data, 1, bytesToWriteInThisChunk, stdout);
/external/icu4c/samples/cal/
H A Duprint.c63 fwrite(buf, sizeof(char), myTarget - buf, f);
/external/icu4c/samples/date/
H A Duprint.c64 fwrite(buf, sizeof(char), myTarget - buf, f);
/external/jpeg/
H A Djinclude.h83 * The modules that use fread() and fwrite() always invoke them through
91 ((size_t) fwrite((const void *) (buf), (size_t) 1, (size_t) (sizeofbuf), (file)))
/external/libvpx/libmkv/
H A Dtestlibmkv.c60 size_t bytesWritten = fwrite(data, 1, ebml.offset, file_out);
/external/openssl/crypto/bio/
H A Dbio_lcl.h11 #define UP_fwrite fwrite
/external/qemu/distrib/jpeg-6b/
H A Djinclude.h83 * The modules that use fread() and fwrite() always invoke them through
91 ((size_t) fwrite((const void *) (buf), (size_t) 1, (size_t) (sizeofbuf), (file)))
/external/webrtc/test/testsupport/
H A Dframe_writer.cc57 int bytes_written = fwrite(frame_buffer, 1, frame_length_in_bytes_,
/external/webkit/Tools/DumpRenderTree/chromium/
H A DTestEventPrinter.cpp104 if (fwrite(imageData, 1, imageSize, stdout) != imageSize) {
150 if (fwrite(imageData, 1, imageSize, fp) != imageSize) {

Completed in 1285 milliseconds

1234567891011