HomeSort by relevance Sort by last modified time
    Searched refs:fout (Results 1 - 25 of 202) sorted by null

1 2 3 4 5 6 7 8 9

  /external/bison/src/
graphviz.h 29 * \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...]
graphviz.c 42 start_graph (FILE *fout)
44 fprintf (fout,
52 fprintf (fout,
56 fprintf (fout,
63 output_node (int id, char const *label, FILE *fout)
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);
    [all...]
  /external/python/cpython2/Lib/test/
test_aifc.py 133 fout = aifc.open(io.BytesIO(), 'wb')
134 self.assertEqual(fout.getmarkers(), None)
135 fout.setmark(1, 0, 'foo1')
136 fout.setmark(1, 1, 'foo2')
137 self.assertEqual(fout.getmark(1), (1, 1, 'foo2'))
138 self.assertEqual(fout.getmarkers(), [(1, 1, 'foo2')])
139 fout.initfp(None)
142 fout = self.fout = aifc.open(TESTFN, 'wb')
143 fout.aiff(
    [all...]
  /external/bart/tests/
test_sched_functions.py 31 with open(trace_file, "w") as fout:
32 fout.write("")
34 with open(raw_trace_file, "w") as fout:
35 fout.write("")
59 with open(trace_file, "w") as fout:
60 fout.write("")
64 with open(raw_trace_file, "w") as fout:
65 fout.write(in_data)
  /external/jsoncpp/test/
pyjsontestrunner.py 18 def valueTreeToString( fout, value, path = '.' ):
21 fout.write( '%s={}\n' % path )
26 valueTreeToString( fout, value[name], path + suffix + name )
28 fout.write( '%s=[]\n' % path )
30 valueTreeToString( fout, childValue, path + '[%d]' % index )
32 fout.write( '%s="%s"\n' % (path,value) )
34 fout.write( '%s=%d\n' % (path,value) )
36 fout.write( '%s=%.16g\n' % (path,value) )
38 fout.write( '%s=true\n' % path )
40 fout.write( '%s=false\n' % path
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_aifc.py 12 self.f = self.fout = None
18 if self.fout is not None:
20 self.fout.close()
61 fout = self.fout = aifc.open(TESTFN, 'wb')
62 fout.aifc()
63 fout.setparams(f.getparams())
65 fout.writeframes(f.readframes(1))
66 fout.close()
67 fout = self.fout = aifc.open(TESTFN, 'rb'
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_aifc.py 12 self.f = self.fout = None
18 if self.fout is not None:
20 self.fout.close()
61 fout = self.fout = aifc.open(TESTFN, 'wb')
62 fout.aifc()
63 fout.setparams(f.getparams())
65 fout.writeframes(f.readframes(1))
66 fout.close()
67 fout = self.fout = aifc.open(TESTFN, 'rb'
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_aifc.py 12 self.f = self.fout = None
18 if self.fout is not None:
20 self.fout.close()
61 fout = self.fout = aifc.open(TESTFN, 'wb')
62 fout.aifc()
63 fout.setparams(f.getparams())
65 fout.writeframes(f.readframes(1))
66 fout.close()
67 fout = self.fout = aifc.open(TESTFN, 'rb'
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_aifc.py 12 self.f = self.fout = None
18 if self.fout is not None:
20 self.fout.close()
61 fout = self.fout = aifc.open(TESTFN, 'wb')
62 fout.aifc()
63 fout.setparams(f.getparams())
65 fout.writeframes(f.readframes(1))
66 fout.close()
67 fout = self.fout = aifc.open(TESTFN, 'rb'
    [all...]
  /external/mesa3d/src/gallium/auxiliary/os/
os_misc.c 69 static FILE *fout = NULL; local
71 if (!fout) {
84 fout = fopen(filename, mode);
87 if (!fout)
88 fout = stderr;
95 fputs(message, fout);
96 fflush(fout);
98 else if (fout != stderr) {
99 fputs(message, fout);
100 fflush(fout);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_aifc.py 11 self.f = self.fout = None
17 if self.fout is not None:
19 self.fout.close()
60 fout = self.fout = aifc.open(TESTFN, 'wb')
61 fout.aifc()
62 fout.setparams(f.getparams())
64 fout.writeframes(f.readframes(1))
65 fout.close()
66 fout = self.fout = aifc.open(TESTFN, 'rb')
    [all...]
  /external/trappy/tests/
test_duplicates.py 36 with open("trace.txt", "w") as fout:
37 fout.write("""version = 6
48 fout.close()
68 with open("trace.txt", "w") as fout:
69 fout.write("""version = 6
81 fout.close()
  /system/libufdt/tests/src/
util.c 64 FILE *fout = NULL; local
66 fout = fopen(filename, "wb");
67 if (!fout) {
71 if (fwrite(buf, 1, buf_size, fout) < 1) {
77 if (fout) fclose(fout);
  /external/libopus/celt/arm/
celt_ne10_fft.c 114 kiss_fft_cpx *fout)
124 opus_fft_c(st, fin, fout);
132 NE10_FFT_C2C_1D_TYPE_NEON((NE10_FFT_CPX_TYPE_T *)fout,
136 NE10_FFT_C2C_1D_TYPE_NEON((NE10_FFT_CPX_TYPE_T *)fout,
146 kiss_fft_cpx *fout)
156 opus_ifft_c(st, fin, fout);
164 NE10_FFT_C2C_1D_TYPE_NEON((NE10_FFT_CPX_TYPE_T *)fout,
168 NE10_FFT_C2C_1D_TYPE_NEON((NE10_FFT_CPX_TYPE_T *)fout,
fft_arm.h 47 kiss_fft_cpx *fout);
51 kiss_fft_cpx *fout);
  /external/speex/libspeex/
kiss_fft.h 82 * 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);
  /frameworks/rs/tests/java_api/ScriptGroupTest/src/com/android/rs/sgtest/
vignette_approx_f.rsh 53 float4 fout;
54 fout.rgb = in.rgb * lumen;
55 fout.w = in.w;
56 return fout;
vignette_f.rsh 53 float4 fout;
54 fout.rgb = in.rgb * lumen;
55 fout.w = in.w;
  /external/libopus/src/
repacketizer_demo.c 61 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)!=(unsigned)err)
    [all...]
  /external/parameter-framework/upstream/test/functional-tests-legacy/
ACTCampaignEngine.py 79 with open(isAlive, 'w') as fout:
80 fout.write('true')
83 with open(needResync, 'w') as fout:
84 fout.write('false')
  /external/libopus/celt/
kiss_fft.h 138 * fout will be F[0] , F[1] , ... ,F[nfft-1]
142 void opus_fft_c(const kiss_fft_state *cfg,const kiss_fft_cpx *fin,kiss_fft_cpx *fout);
143 void opus_ifft_c(const kiss_fft_state *cfg,const kiss_fft_cpx *fin,kiss_fft_cpx *fout);
145 void opus_fft_impl(const kiss_fft_state *st,kiss_fft_cpx *fout);
146 void opus_ifft_impl(const kiss_fft_state *st,kiss_fft_cpx *fout);
170 const kiss_fft_cpx *fin, kiss_fft_cpx *fout);
175 const kiss_fft_cpx *fin, kiss_fft_cpx *fout);
  /external/jsoncpp/src/jsontestrunner/
main.cpp 63 printValueTree(FILE* fout, Json::Value& value, const std::string& path = ".") {
65 fprintf(fout, "%s\n", value.getComment(Json::commentBefore).c_str());
69 fprintf(fout, "%s=null\n", path.c_str());
72 fprintf(fout,
78 fprintf(fout,
84 fprintf(fout,
90 fprintf(fout, "%s=\"%s\"\n", path.c_str(), value.asString().c_str());
93 fprintf(fout, "%s=%s\n", path.c_str(), value.asBool() ? "true" : "false");
96 fprintf(fout, "%s=[]\n", path.c_str());
105 printValueTree(fout, value[index], path + buffer)
163 FILE* fout = fopen(rewritePath.c_str(), "wt"); local
    [all...]
  /cts/tests/tests/os/src/android/os/cts/
FileAccessPermissionTest.java 159 FileOutputStream fout = null; local
163 fout = new FileOutputStream(file);
164 fout.write(data);
165 fout.flush();
166 fout.close();
167 fout = null;
179 if (fout != null) {
181 fout.close();
  /external/protobuf/src/google/protobuf/testing/
zcgzip.cc 61 FileOutputStream fout(STDOUT_FILENO);
62 GzipOutputStream out(&fout);
  /frameworks/rs/tests/java_api/ImageProcessing/src/com/android/rs/image/
vignette.rsh 54 float4 fout;
55 fout.rgb = fin.rgb * lumen;
56 fout.w = fin.w;
57 return convert_uchar4(fout);

Completed in 772 milliseconds

1 2 3 4 5 6 7 8 9