Home
last modified time | relevance | path

Searched refs:f_out (Results 1 – 14 of 14) sorted by relevance

/external/syslinux/efi/
Dwrapper.c171 FILE *f_in, *f_out; in main() local
186 f_out = fopen(argv[2], "w"); in main()
187 if (!f_out) { in main()
278 write_header(f_out, entry, datasz, memsz, class); in main()
288 fwrite(buf, datasz, rv, f_out); in main()
290 fclose(f_out); in main()
/external/python/cpython2/Tools/scripts/
Dmkreal.py23 f_out = open(name, 'w')
27 f_out.write(buf)
28 del f_out # Flush data to disk before changing mode
/external/python/cpython3/Tools/scripts/
Dmkreal.py23 f_out = open(name, 'w')
27 f_out.write(buf)
28 del f_out # Flush data to disk before changing mode
/external/fio/
Dlog.c21 return fwrite(buf, len, 1, f_out); in log_info_buf()
65 return fflush(f_out); in log_info_flush()
Dlog.h9 extern FILE *f_out;
Dinit.c54 FILE *f_out = NULL; variable
2338 if (f_out && f_out != stdout) in parse_cmd_line()
2339 fclose(f_out); in parse_cmd_line()
2348 f_err = f_out = tmp; in parse_cmd_line()
2739 f_out = stdout; in fio_init_options()
Deta.c370 f_out == stdout) in calc_thread_status()
Dclient.c1082 fprintf(f_out, "<%s> ", name); in handle_text()
1083 ret = fwrite(buf, pdu->buf_len, 1, f_out); in handle_text()
1084 fflush(f_out); in handle_text()
Dfilesetup.c612 f_out = stderr; in generic_open_file()
Dserver.c2545 f_out = NULL; in fio_start_server()
/external/python/cpython2/Doc/library/
Dgzip.rst113 with open('file.txt', 'rb') as f_in, gzip.open('file.txt.gz', 'wb') as f_out:
114 shutil.copyfileobj(f_in, f_out)
/external/tensorflow/tensorflow/contrib/rnn/kernels/
Dlstm_ops.cc923 Tensor* f_out; in Compute() local
924 OP_REQUIRES_OK(ctx, ctx->allocate_output("f", batch_cell_shape, &f_out)); in Compute()
964 Tensor f_tensor = slicer.OutputSlice(f_out, t, "f_out"); in Compute()
1094 const Tensor* f_out = nullptr; in Compute() local
1095 OP_REQUIRES_OK(ctx, ctx->input("f", &f_out)); in Compute()
1220 const Tensor& f_tensor = slicer.InputSlice(*f_out, t, "f_out"); in Compute()
/external/python/cpython3/Doc/library/
Dgzip.rst199 with gzip.open('/home/joe/file.txt.gz', 'wb') as f_out:
200 shutil.copyfileobj(f_in, f_out)
/external/autotest/site_utils/
Dgs_offloader.py493 gzip.open(test_result_file_gz, 'w')) as f_out:
494 shutil.copyfileobj(f_in, f_out)