Searched refs:fout (Results 1 - 25 of 74) sorted by relevance

123

/external/bison/src/
H A Dgraphviz.h29 * \param fout output stream.
31 void start_graph (FILE *fout);
37 * \param fout output stream.
39 void output_node (int id, char const *label, FILE *fout);
47 * \param fout output stream.
50 char const *style, FILE *fout);
55 * \param fout output stream.
57 void output_red (state const *s, reductions const *reds, FILE *fout);
61 * \param fout output stream.
63 void finish_graph (FILE *fout);
[all...]
H A Dgraphviz.c42 start_graph (FILE *fout) argument
44 fprintf (fout,
52 fprintf (fout,
56 fprintf (fout,
63 output_node (int id, char const *label, FILE *fout) argument
65 fprintf (fout, " %d [label=\"%s\"]\n", id, label);
70 char const *style, FILE *fout)
72 fprintf (fout, " %d -> %d [style=%s", source, destination, style);
74 fprintf (fout, " label=%s", quote (label));
75 fputs ("]\n", fout);
69 output_edge(int source, int destination, char const *label, char const *style, FILE *fout) argument
100 conclude_red(struct obstack *out, int source, rule_number ruleno, bool enabled, bool first, FILE *fout) argument
156 output_red(state const *s, reductions const *reds, FILE *fout) argument
215 finish_graph(FILE *fout) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/os/
H A Dos_misc.c56 static FILE *fout = NULL; local
58 if (!fout) {
62 fout = fopen(filename, "w");
63 if (!fout)
64 fout = stderr;
71 fputs(message, fout);
72 fflush(fout);
74 else if (fout != stderr) {
75 fputs(message, fout);
76 fflush(fout);
[all...]
/external/mesa3d/src/gallium/auxiliary/os/
H A Dos_misc.c56 static FILE *fout = NULL; local
58 if (!fout) {
62 fout = fopen(filename, "w");
63 if (!fout)
64 fout = stderr;
71 fputs(message, fout);
72 fflush(fout);
74 else if (fout != stderr) {
75 fputs(message, fout);
76 fflush(fout);
[all...]
/external/lldb/test/pexpect-2.4/examples/
H A Dchess3.py27 fout = open ('log','a')
31 fout.write ('(r,c):(%d,%d)\n' %(self.term.cur_r, self.term.cur_c))
32 fout.flush()
34 fout.close()
40 fout = open ('log','a')
44 fout.write ('(r,c):(%d,%d)\n' %(self.term.cur_r, self.term.cur_c))
45 fout.flush()
88 fout = open ('log','a') variable
89 fout.write ('Computer:%s%s%s%s\n' %(c1,c2,c3,c4))
90 fout
97 fout = open ('log','a') variable
[all...]
H A Dscript.py56 fout = file (script_filename, "ab")
58 fout = file (script_filename, "wb")
65 fout.write ('# %4d%02d%02d.%02d%02d%02d \n' % time.localtime()[:-3])
71 p.logfile = fout
78 fout.close()
H A Dchess2.py30 fout = open ('log','a')
38 fout.write ('(r,c):(%d,%d)\n' %(self.term.cur_r, self.term.cur_c))
39 fout.flush()
44 fout.close()
47 fout.close()
56 fout = open ('log','a')
60 fout.write ('(r,c):(%d,%d)\n' %(self.term.cur_r, self.term.cur_c))
61 fout.flush()
105 fout = open ('moves.log', 'a')
106 fout
[all...]
/external/srec/tools/parseStringTest/
H A DparseStringTest.c50 ESR_ReturnCode process_single_key_line(SR_Grammar* grammar, PFile* fin, PFile* fout);
51 ESR_ReturnCode process_multi_key_line(SR_Grammar* grammar, const LCHAR* rootrule, PFile* fin, PFile* fout);
79 void display_results(SR_SemanticResult *result, PFile* fout) argument
94 pfprintf(fout, "{%s : %s}\n", keys[i], value);
96 pfprintf(fout, "Error: %s\n", ESR_rc2str(rc));
98 pfprintf(fout, "--Done--\n");
101 pfprintf(fout, "Error: %s\n", ESR_rc2str(rc));
104 ESR_ReturnCode Parse(SR_Grammar* grammar, LCHAR* trans, PFile* fout, Opts* opts) argument
124 Parse(grammar, trans, fout, &myopts);
183 pfprintf(fout, "erro
211 ParseTestSet(SR_Grammar* grammar, LCHAR* trans, LCHAR* key, LCHAR* ref, LCHAR* result, PFile* fout) argument
283 PFile *fin = NULL, *fout = NULL; local
448 process_single_key_line(SR_Grammar* grammar, PFile* fin, PFile* fout) argument
536 process_multi_key_line(SR_Grammar* grammar, const LCHAR* rootrule, PFile* fin, PFile* fout) argument
[all...]
/external/speex/libspeex/
H A Dkiss_fft.h82 * fout will be F[0] , F[1] , ... ,F[nfft-1]
86 void kiss_fft(kiss_fft_cfg cfg,const kiss_fft_cpx *fin,kiss_fft_cpx *fout);
91 void kiss_fft_stride(kiss_fft_cfg cfg,const kiss_fft_cpx *fin,kiss_fft_cpx *fout,int fin_stride);
/external/srec/tools/dictTest/
H A DdictTest.c42 void doGetProns(SR_Vocabulary *vocab, LCHAR* phrase, size_t len, FILE* fout) argument
51 LFPRINTF(fout,"ERROR: %s\n", ESR_rc2str(rc));
58 LFPRINTF(fout,"%s : %s\n", phrase, pron);
64 void doInputTestPhonemes(SR_Vocabulary *vocab, PFile* fin, FILE* fout) argument
84 LFPRINTF(fout, "ERROR: INVALID FORMAT for input line\n");
96 LFPRINTF(fout,"ERROR: %s\n", ESR_rc2str(rc));
99 LFPRINTF(fout,"%s|%s|%s|", phrase, expectedPhoneme, phoneme);
102 LFPRINTF(fout,"PASSED\n");
104 LFPRINTF(fout,"FAILED\n");
125 FILE* fout local
[all...]
/external/chromium_org/third_party/opus/src/src/
H A Drepacketizer_demo.c61 FILE *fin, *fout; local
105 fout = fopen(argv[argc-1], "w");
106 if(fout==NULL)
133 fclose(fout);
164 if(fwrite(int_field, 1, 4, fout)!=4){
169 if (fwrite(int_field, 1, 4, fout)!=4) {
173 if (fwrite(output_packet, 1, err, fout)!=(unsigned)err) {
189 if (fwrite(int_field, 1, 4, fout)!=4) {
197 if (fwrite(int_field, 1, 4, fout)!=4) {
201 if (fwrite(output_packet, 1, err, fout)!
[all...]
/external/libopus/src/
H A Drepacketizer_demo.c61 FILE *fin, *fout; local
105 fout = fopen(argv[argc-1], "w");
106 if(fout==NULL)
133 fclose(fout);
164 if(fwrite(int_field, 1, 4, fout)!=4){
169 if (fwrite(int_field, 1, 4, fout)!=4) {
173 if (fwrite(output_packet, 1, err, fout)!=(unsigned)err) {
189 if (fwrite(int_field, 1, 4, fout)!=4) {
197 if (fwrite(int_field, 1, 4, fout)!=4) {
201 if (fwrite(output_packet, 1, err, fout)!
[all...]
/external/jsoncpp/src/jsontestrunner/
H A Dmain.cpp63 printValueTree( FILE *fout, Json::Value &value, const std::string &path = "." ) argument
68 fprintf( fout, "%s=null\n", path.c_str() );
71 fprintf( fout, "%s=%s\n", path.c_str(), Json::valueToString( value.asLargestInt() ).c_str() );
74 fprintf( fout, "%s=%s\n", path.c_str(), Json::valueToString( value.asLargestUInt() ).c_str() );
77 fprintf( fout, "%s=%s\n", path.c_str(), normalizeFloatingPointStr(value.asDouble()).c_str() );
80 fprintf( fout, "%s=\"%s\"\n", path.c_str(), value.asString().c_str() );
83 fprintf( fout, "%s=%s\n", path.c_str(), value.asBool() ? "true" : "false" );
87 fprintf( fout, "%s=[]\n", path.c_str() );
93 printValueTree( fout, value[index], path + buffer );
99 fprintf( fout, "
160 FILE *fout = fopen( rewritePath.c_str(), "wt" ); local
[all...]
/external/chromium_org/third_party/protobuf/src/google/protobuf/testing/
H A Dzcgzip.cc54 FileOutputStream fout(STDOUT_FILENO);
55 GzipOutputStream out(&fout);
/external/protobuf/src/google/protobuf/testing/
H A Dzcgzip.cc54 FileOutputStream fout(STDOUT_FILENO);
55 GzipOutputStream out(&fout);
/external/chromium_org/third_party/opus/src/doc/
H A Dtrivial_example.c53 FILE *fout; local
104 fout = fopen(outFile, "w");
105 if (fout==NULL)
152 fwrite(pcm_bytes, sizeof(short), frame_size*CHANNELS, fout);
158 fclose(fout);
/external/libopus/doc/
H A Dtrivial_example.c53 FILE *fout; local
104 fout = fopen(outFile, "w");
105 if (fout==NULL)
152 fwrite(pcm_bytes, sizeof(short), frame_size*CHANNELS, fout);
158 fclose(fout);
/external/chromium_org/third_party/opus/src/celt/
H A Dopus_custom_demo.c46 FILE *fin, *fout; local
96 fout = fopen(outFile, "wb+");
97 if (!fout)
109 fclose(fout);
117 fclose(fout);
185 fwrite(out+skip*channels, sizeof(short), (ret-skip)*channels, fout);
193 fclose(fout);
H A Dkiss_fft.h126 * fout will be F[0] , F[1] , ... ,F[nfft-1]
130 void opus_fft(const kiss_fft_state *cfg,const kiss_fft_cpx *fin,kiss_fft_cpx *fout);
131 void opus_ifft(const kiss_fft_state *cfg,const kiss_fft_cpx *fin,kiss_fft_cpx *fout);
/external/libopus/celt/
H A Dopus_custom_demo.c46 FILE *fin, *fout; local
96 fout = fopen(outFile, "wb+");
97 if (!fout)
109 fclose(fout);
117 fclose(fout);
185 fwrite(out+skip*channels, sizeof(short), (ret-skip)*channels, fout);
193 fclose(fout);
/external/webp/examples/
H A Ddwebp.c206 static int WritePPM(FILE* fout, const WebPDecBuffer* const buffer, int alpha) { argument
215 fprintf(fout, "P7\nWIDTH %d\nHEIGHT %d\nDEPTH 4\nMAXVAL 255\n"
218 fprintf(fout, "P6\n%d %d\n255\n", width, height);
221 if (fwrite(rgb + y * stride, width, bytes_per_px, fout) != bytes_per_px) {
228 static int WriteAlphaPlane(FILE* fout, const WebPDecBuffer* const buffer) { argument
235 fprintf(fout, "P5\n%d %d\n255\n", width, height);
237 if (fwrite(a + y * a_stride, width, 1, fout) != 1) {
248 static int WritePGMOrYUV(FILE* fout, const WebPDecBuffer* const buffer, argument
261 fprintf(fout, "P5\n%d %d\n255\n",
265 ok &= (fwrite(yuv->y + y * yuv->y_stride, width, 1, fout)
294 FILE* fout = NULL; local
[all...]
/external/genext2fs/
H A Dtest-mount.sh13 rm -rf mnt fout lsout
68 sort -d -k3.6 > fout
74 diff fout lsout || fail
/external/chromium_org/third_party/libvpx/source/libvpx/examples/
H A Dresize_util.c42 char *fin, *fout; local
57 fout = argv[4];
75 fpout = fopen(fout, "wb");
77 printf("Can't open file %s to write\n", fout);
/external/libvpx/libvpx/examples/
H A Dresize_util.c42 char *fin, *fout; local
57 fout = argv[4];
75 fpout = fopen(fout, "wb");
77 printf("Can't open file %s to write\n", fout);
/external/javassist/sample/evolve/
H A DDemoServer.java92 FileOutputStream fout
97 fout.write(buf, 0, len);

Completed in 2068 milliseconds

123