Home
last modified time | relevance | path

Searched refs:f_in (Results 1 – 13 of 13) 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()
83 size_t const readSize = fread(inBuff, 1, IN_CHUNK_SIZE, f_in); in compress_file_internal()
122 compress_file(FILE* f_in, FILE* f_out) in compress_file() argument
124 assert(f_in != 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()
186 size_t readSize = firstChunk ? filled : fread(src, 1, srcCapacity, f_in); firstChunk=0; in decompress_file_internal()
189 if (readSize == 0 || ferror(f_in)) { in decompress_file_internal()
[all …]
/external/python/cpython3/Tools/scripts/
Dmkreal.py21 f_in = open(name, 'r') # This ensures it's a file
25 buf = f_in.read(BUFSIZE)
/external/python/cpython2/Tools/scripts/
Dmkreal.py21 f_in = open(name, 'r') # This ensures it's a file
25 buf = f_in.read(BUFSIZE)
/external/tensorflow/tensorflow/lite/tutorials/
Ddataset.py79 with gzip.open(zipped_filepath, 'rb') as f_in, \
81 shutil.copyfileobj(f_in, f_out)
/external/chromium-trace/catapult/systrace/systrace/tracing_agents/
Datrace_from_file_agent.py32 with open(options.from_file, 'rb') as f_in:
33 if is_perfetto(f_in):
/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/python/cpython3/Doc/library/
Dgzip.rst198 with open('/home/joe/file.txt', 'rb') as f_in:
200 shutil.copyfileobj(f_in, f_out)
/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/tensorflow/tensorflow/python/ops/
Dgradients_util.py371 f_in = [x for x in op.inputs] + out_grads
382 input=f_in,
/external/autotest/site_utils/
Dgs_offloader.py511 with open(test_result_file, 'r') as f_in, (
513 shutil.copyfileobj(f_in, f_out)
/external/tensorflow/tensorflow/contrib/eager/python/examples/workshop/
D2_models.ipynb571 " with gzip.open(zipped_filepath, 'rb') as f_in, \\\n",
573 " shutil.copyfileobj(f_in, f_out)\n",