Home
last modified time | relevance | path

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

/external/swiftshader/third_party/llvm-7.0/scripts/
Dupdate.py155 with open(dst, 'w') as dst_file:
160 print('#if ' + conds[arch], file=dst_file)
161 print(line, file=dst_file, end='')
162 print('#endif', file=dst_file)
175 print(directive + conds[arch], file=dst_file)
177 init + arch + end, file=dst_file)
179 print('#else', file=dst_file)
180 print('#error "unknown architecture"', file=dst_file)
181 print('#endif', file=dst_file)
190 file=dst_file)
[all …]
/external/snakeyaml/
Dpatch-android-src32 dst_file="$3"
33 dst_dir="$(dirname "$dst_file")"
84 cp "$src_file_with_prefix" "$dst_file"
85 if ! [[ -f "$dst_file" ]]; then
86 echo "File "$dst_file" does not exist; patching will fail" >&2
90 patch --quiet "$(basename "$dst_file")" "$patch_file_src"
/external/vulkan-validation-layers/build-android/
Dbuild.py30 dst_file = os.path.join(dst_dir, file_name)
32 print('Copying {} to {}...'.format(src_file, dst_file))
34 _install_dir(src_file, dst_file)
36 _install_symlink(src_file, dst_file)
38 _install_file(src_file, dst_file)
48 def _install_symlink(src_file, dst_file): argument
49 dirname = os.path.dirname(dst_file)
53 os.symlink(link_target, dst_file)
56 def _install_file(src_file, dst_file): argument
57 dirname = os.path.dirname(dst_file)
[all …]
/external/mesa3d/src/gallium/auxiliary/tgsi/
Dtgsi_transform.h271 unsigned dst_file, in tgsi_transform_op1_inst() argument
282 inst.Dst[0].Register.File = dst_file, in tgsi_transform_op1_inst()
295 unsigned dst_file, in tgsi_transform_op2_inst() argument
309 inst.Dst[0].Register.File = dst_file, in tgsi_transform_op2_inst()
324 unsigned dst_file, in tgsi_transform_op3_inst() argument
339 inst.Dst[0].Register.File = dst_file, in tgsi_transform_op3_inst()
355 unsigned dst_file, in tgsi_transform_op1_swz_inst() argument
367 inst.Dst[0].Register.File = dst_file, in tgsi_transform_op1_swz_inst()
396 unsigned dst_file, in tgsi_transform_op2_swz_inst() argument
412 inst.Dst[0].Register.File = dst_file, in tgsi_transform_op2_swz_inst()
[all …]
/external/toolchain-utils/fdo_scripts/
Ddivide_and_merge_profiles.py62 dst_file = os.path.join(output_dir, f)
63 if not os.path.isdir(os.path.dirname(dst_file)):
64 command = 'mkdir -p %s' % os.path.dirname(dst_file)
66 command = 'cp %s %s' % (src_file, dst_file)
/external/puffin/src/
Dmain.cc159 DEFINE_string(dst_file, "", "Target file"); \
298 auto dst_file = FileStream::Open(FLAGS_dst_file, false, true); in Main() local
299 TEST_AND_RETURN_FALSE(dst_file); in Main()
302 auto dst_stream = PuffinStream::CreateForHuff(std::move(dst_file), huffer, in Main()
/external/mesa3d/src/gallium/drivers/r300/compiler/
Dradeon_compiler_util.h81 rc_register_file dst_file,
Dradeon_compiler_util.c316 rc_register_file dst_file, in rc_src_reads_dst_mask() argument
320 if (src_file != dst_file || src_idx != dst_idx) { in rc_src_reads_dst_mask()
Dradeon_dataflow.c683 rc_register_file dst_file, in get_readers_for_single_write() argument
698 d->DstFile = dst_file; in get_readers_for_single_write()
/external/compiler-rt/cmake/Modules/
DAddCompilerRT.cmake313 set(dst_file "${COMPILER_RT_OUTPUT_DIR}/${file_name}") variable
314 add_custom_command(OUTPUT ${dst_file}
316 COMMAND ${CMAKE_COMMAND} -E copy_if_different ${src_file} ${dst_file}
318 add_custom_target(${target_name} DEPENDS ${dst_file})
/external/python/cpython2/Lib/test/
Dtest_shutil.py668 self.dst_file = os.path.join(self.dst_dir, filename)
705 self._check_move_file(self.src_file, self.dst_file, self.dst_file)
709 self._check_move_file(self.src_file, self.dst_dir, self.dst_file)
772 with open(self.dst_file, "wb"):
/external/python/cpython3/Lib/test/
Dtest_shutil.py1390 dst_file = os.path.join(dst_dir, 'bar')
1393 rv = shutil.copyfile(src_file, dst_file)
1395 self.assertEqual(read_file(src_file), read_file(dst_file))
1525 self.dst_file = os.path.join(self.dst_dir, filename)
1553 self._check_move_file(self.src_file, self.dst_file, self.dst_file)
1557 self._check_move_file(self.src_file, self.dst_dir, self.dst_file)
1606 with open(self.dst_file, "wb"):
1644 shutil.move(dst, self.dst_file)
1645 self.assertTrue(os.path.islink(self.dst_file))
1646 self.assertTrue(os.path.samefile(self.src_file, self.dst_file))
/external/mesa3d/src/intel/compiler/
Dbrw_eu_validate.c1103 enum brw_reg_file dst_file = brw_inst_dst_reg_file(devinfo, inst); in special_requirements_for_handling_double_precision_data_types() local
1213 (BRW_ARCHITECTURE_REGISTER_FILE == dst_file && in special_requirements_for_handling_double_precision_data_types()
Dbrw_eu_compact.c1035 enum brw_reg_file dst_file = brw_inst_dst_reg_file(devinfo, &inst); in precompact() local
1038 brw_inst_set_dst_file_type(devinfo, &inst, dst_file, BRW_REGISTER_TYPE_UD); in precompact()