Searched refs:f_in (Results 1 – 13 of 13) sorted by relevance
/external/lz4/examples/ |
D | frameCompress.c | 57 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/ |
D | mkreal.py | 21 f_in = open(name, 'r') # This ensures it's a file 25 buf = f_in.read(BUFSIZE)
|
/external/python/cpython2/Tools/scripts/ |
D | mkreal.py | 21 f_in = open(name, 'r') # This ensures it's a file 25 buf = f_in.read(BUFSIZE)
|
/external/tensorflow/tensorflow/lite/tutorials/ |
D | dataset.py | 79 with gzip.open(zipped_filepath, 'rb') as f_in, \ 81 shutil.copyfileobj(f_in, f_out)
|
/external/chromium-trace/catapult/systrace/systrace/tracing_agents/ |
D | atrace_from_file_agent.py | 32 with open(options.from_file, 'rb') as f_in: 33 if is_perfetto(f_in):
|
/external/python/cpython2/Doc/library/ |
D | gzip.rst | 113 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/ |
D | gzip.rst | 198 with open('/home/joe/file.txt', 'rb') as f_in: 200 shutil.copyfileobj(f_in, f_out)
|
/external/tensorflow/tensorflow/contrib/autograph/examples/notebooks/ |
D | ag_vs_eager_mnist_speed_test.ipynb | 168 " with gzip.open(zipped_filepath, 'rb') as f_in, open(filepath, 'wb') as f_out:\n", 169 " shutil.copyfileobj(f_in, f_out)\n",
|
D | workshop.ipynb | 876 " with gzip.open(zipped_filepath, 'rb') as f_in, open(filepath, 'wb') as f_out:\n", 877 " shutil.copyfileobj(f_in, f_out)\n",
|
D | dev_summit_2018_demo.ipynb | 647 " 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/ |
D | gradients_util.py | 371 f_in = [x for x in op.inputs] + out_grads 382 input=f_in,
|
/external/autotest/site_utils/ |
D | gs_offloader.py | 511 with open(test_result_file, 'r') as f_in, ( 513 shutil.copyfileobj(f_in, f_out)
|
/external/tensorflow/tensorflow/contrib/eager/python/examples/workshop/ |
D | 2_models.ipynb | 571 " with gzip.open(zipped_filepath, 'rb') as f_in, \\\n", 573 " shutil.copyfileobj(f_in, f_out)\n",
|