Home
last modified time | relevance | path

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

/external/lz4/examples/
DframeCompress.c57 compress_file_internal(FILE* f_in, FILE* f_out, in compress_file_internal() argument
65 assert(f_in != NULL); assert(f_out != NULL); in compress_file_internal()
78 safe_fwrite(outBuff, 1, headerSize, f_out); in compress_file_internal()
97 safe_fwrite(outBuff, 1, compressedSize, f_out); in compress_file_internal()
111 safe_fwrite(outBuff, 1, compressedSize, f_out); in compress_file_internal()
122 compress_file(FILE* f_in, FILE* f_out) in compress_file() argument
125 assert(f_out != NULL); in compress_file()
136 result = compress_file_internal(f_in, f_out, in compress_file()
170 decompress_file_internal(FILE* f_in, FILE* f_out, in decompress_file_internal() argument
178 assert(f_in != NULL); assert(f_out != NULL); in decompress_file_internal()
[all …]
/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/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/tensorflow/tensorflow/lite/tutorials/
Ddataset.py80 tf.gfile.Open(filepath, 'wb') as f_out:
81 shutil.copyfileobj(f_in, f_out)
/external/python/setuptools/setuptools/tests/
Dtest_windows_wrappers.py179 with (tmpdir / 'test_output.txt').open('rb') as f_out:
180 actual = f_out.read().decode('ascii')
/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/python/ops/
Dcond_v2.py594 t_out.shape.most_specific_compatible_shape(f_out.shape)
595 for t_out, f_out in zip(true_graph_outputs, false_graph_outputs)
/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/tensorflow/tensorflow/contrib/rnn/kernels/
Dlstm_ops.cc930 Tensor* f_out; in Compute() local
931 OP_REQUIRES_OK(ctx, ctx->allocate_output("f", batch_cell_shape, &f_out)); in Compute()
971 Tensor f_tensor = slicer.OutputSlice(f_out, t, "f_out"); in Compute()
1103 const Tensor* f_out = nullptr; in Compute() local
1104 OP_REQUIRES_OK(ctx, ctx->input("f", &f_out)); in Compute()
1228 const Tensor& f_tensor = slicer.InputSlice(*f_out, t, "f_out"); in Compute()
/external/tensorflow/tensorflow/contrib/autograph/examples/notebooks/
Dag_vs_eager_mnist_speed_test.ipynb168 " with gzip.open(zipped_filepath, 'rb') as f_in, open(filepath, 'wb') as f_out:\n",
169 " shutil.copyfileobj(f_in, f_out)\n",
Dworkshop.ipynb876 " with gzip.open(zipped_filepath, 'rb') as f_in, open(filepath, 'wb') as f_out:\n",
877 " shutil.copyfileobj(f_in, f_out)\n",
Ddev_summit_2018_demo.ipynb647 " with gzip.open(zipped_filepath, 'rb') as f_in, open(filepath, 'wb') as f_out:\n",
648 " shutil.copyfileobj(f_in, f_out)\n",
/external/autotest/site_utils/
Dgs_offloader.py512 gzip.open(test_result_file_gz, 'w')) as f_out:
513 shutil.copyfileobj(f_in, f_out)
/external/tensorflow/tensorflow/contrib/eager/python/examples/workshop/
D2_models.ipynb572 " tf.gfile.Open(filepath, 'wb') as f_out:\n",
573 " shutil.copyfileobj(f_in, f_out)\n",