Home
last modified time | relevance | path

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

/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 "$(basename "$dst_file")" "$patch_file_src"
91 echo "Successfully applied patch $patch_file_src into copy of file $dst_file"
/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.h253 unsigned dst_file, in tgsi_transform_op1_inst() argument
264 inst.Dst[0].Register.File = dst_file, in tgsi_transform_op1_inst()
278 unsigned dst_file, in tgsi_transform_op2_inst() argument
292 inst.Dst[0].Register.File = dst_file, in tgsi_transform_op2_inst()
309 unsigned dst_file, in tgsi_transform_op3_inst() argument
324 inst.Dst[0].Register.File = dst_file, in tgsi_transform_op3_inst()
343 unsigned dst_file, in tgsi_transform_op1_swz_inst() argument
355 inst.Dst[0].Register.File = dst_file, in tgsi_transform_op1_swz_inst()
385 unsigned dst_file, in tgsi_transform_op2_swz_inst() argument
401 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/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.py667 self.dst_file = os.path.join(self.dst_dir, filename)
704 self._check_move_file(self.src_file, self.dst_file, self.dst_file)
708 self._check_move_file(self.src_file, self.dst_dir, self.dst_file)
771 with open(self.dst_file, "wb"):
/external/mesa3d/src/gallium/drivers/ilo/shader/
Dtoy_tgsi.c1551 const enum tgsi_file_type dst_file = tgsi_inst->Dst[0].Register.File; in ra_get_type() local
1554 if (dst_file == TGSI_FILE_ADDRESS || src_file == TGSI_FILE_ADDRESS) { in ra_get_type()