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

1 2 3 4 5

  /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/chromium_org/third_party/mesa/src/src/gallium/auxiliary/os/
os_misc.c 56 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/
os_misc.c 56 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...]
  /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...]
test_uu.py 115 fin = fout = None
123 fout = open(self.tmpout, 'w')
124 uu.encode(fin, fout, self.tmpin, mode=0644)
126 fout.close()
128 fout = open(self.tmpout, 'r')
129 s = fout.read()
130 fout.close()
135 fout = open(self.tmpout, 'r')
136 s = fout.read()
137 fout.close(
    [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...]
test_uu.py 115 fin = fout = None
123 fout = open(self.tmpout, 'w')
124 uu.encode(fin, fout, self.tmpin, mode=0644)
126 fout.close()
128 fout = open(self.tmpout, 'r')
129 s = fout.read()
130 fout.close()
135 fout = open(self.tmpout, 'r')
136 s = fout.read()
137 fout.close(
    [all...]
  /external/srec/tools/parseStringTest/
parseStringTest.c 50 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)
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)
124 Parse(grammar, trans, fout, &myopts);
183 pfprintf(fout, "error (%s)\n\n", trans)
283 PFile *fin = NULL, *fout = NULL; local
    [all...]
  /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);
  /external/srec/tools/dictTest/
dictTest.c 42 void doGetProns(SR_Vocabulary *vocab, LCHAR* phrase, size_t len, FILE* fout)
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)
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 = stdout local
    [all...]
  /external/chromium_org/third_party/opus/src/src/
repacketizer_demo.c 61 FILE *fin, *fout; local
100 fout = fopen(argv[argc-1], "w");
101 if(fout==NULL)
128 fclose(fout);
159 if(fwrite(int_field, 1, 4, fout)!=4){
164 if (fwrite(int_field, 1, 4, fout)!=4) {
168 if (fwrite(output_packet, 1, err, fout)!=(unsigned)err) {
184 if (fwrite(int_field, 1, 4, fout)!=4) {
192 if (fwrite(int_field, 1, 4, fout)!=4) {
196 if (fwrite(output_packet, 1, err, fout)!=(unsigned)err)
    [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/chromium_org/third_party/protobuf/src/google/protobuf/testing/
zcgzip.cc 54 FileOutputStream fout(STDOUT_FILENO);
55 GzipOutputStream out(&fout);
  /external/protobuf/src/google/protobuf/testing/
zcgzip.cc 54 FileOutputStream fout(STDOUT_FILENO);
55 GzipOutputStream out(&fout);
  /frameworks/rs/java/tests/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);
vignette_approx.rsh 54 float4 fout;
55 fout.rgb = fin.rgb * lumen;
56 fout.w = fin.w;
57 return convert_uchar4(fout);
  /frameworks/rs/java/tests/ImageProcessing2/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);
vignette_approx.rsh 54 float4 fout;
55 fout.rgb = fin.rgb * lumen;
56 fout.w = fin.w;
57 return convert_uchar4(fout);
  /frameworks/rs/java/tests/ImageProcessing_jb/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);
vignette_approx.rsh 54 float4 fout;
55 fout.rgb = fin.rgb * lumen;
56 fout.w = fin.w;
57 return convert_uchar4(fout);
  /external/chromium_org/third_party/opus/src/celt/
opus_custom_demo.c 46 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);
kiss_fft.h 126 * 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/webp/examples/
dwebp.c 206 static int WritePPM(FILE* fout, const WebPDecBuffer* const buffer, int alpha) {
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) {
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,
261 fprintf(fout, "P5\n%d %d\n255\n",
265 ok &= (fwrite(yuv->y + y * yuv->y_stride, width, 1, fout) == 1)
294 FILE* fout = NULL; local
    [all...]
  /external/genext2fs/
test-mount.sh 13 rm -rf mnt fout lsout
68 sort -d -k3.6 > fout
74 diff fout lsout || fail

Completed in 1523 milliseconds

1 2 3 4 5