/external/igt-gpu-tools/scripts/ |
D | list-workarounds | 110 kernel_path = None variable 112 if not len(args) and options.kernel_path == None and options.mesa_path == None: 117 kernel_path = args[0] variable 118 elif options.kernel_path != None: 119 kernel_path = options.kernel_path variable 121 if kernel_path != None: 123 kconfig = os.path.join(kernel_path, 'Kconfig') 126 % kernel_path) 130 print_workarounds(kernel_path, i915_dir, "kernel")
|
/external/crosvm/integration_tests/tests/ |
D | fixture.rs | 60 fn kernel_path() -> PathBuf { in kernel_path() function 196 let kernel_path = kernel_path(); in initialize_once() localVariable 198 if !kernel_path.exists() { in initialize_once() 200 download_file(&kernel_prebuilt_url(), &kernel_path).unwrap(); in initialize_once() 203 assert!(kernel_path.exists(), "{:?} does not exist", kernel_path); in initialize_once() 258 .arg(kernel_path()); in configure_kernel()
|
/external/ComputeLibrary/src/core/CL/ |
D | CLCompileContext.cpp | 152 … const std::string &kernel_path, const StringSet &build_options_set, bool is_binary) const in create_kernel() argument 154 const std::string build_options = generate_build_options(build_options_set, kernel_path); in create_kernel() 224 …t::generate_build_options(const StringSet &build_options_set, const std::string &kernel_path) const in generate_build_options() 265 std::string build_options = stringify_set(build_options_set, kernel_path) + concat_str; in generate_build_options() 275 std::string CLCompileContext::stringify_set(const StringSet &s, const std::string &kernel_path) con… in stringify_set() 279 concat_set += "-I" + kernel_path + " "; in stringify_set() 281 ARM_COMPUTE_UNUSED(kernel_path); in stringify_set()
|
D | CLKernelLibrary.cpp | 1016 void CLKernelLibrary::init(std::string kernel_path, cl::Context context, cl::Device device) in init() argument 1019 _kernel_path = kernel_path; in init() 1022 void CLKernelLibrary::set_kernel_path(const std::string &kernel_path) in set_kernel_path() argument 1024 _kernel_path = std::move(kernel_path); in set_kernel_path()
|
D | CLHelpers.cpp | 407 const std::string kernel_path = CLKernelLibrary::get().get_kernel_path(); in create_kernel() local 408 …Kernel>(ctx.create_kernel(kernel_name, program_name, kernel_src.first, kernel_path, build_opts, ke… in create_kernel()
|
/external/ComputeLibrary/tests/validation/CL/UNIT/ |
D | CompileContext.cpp | 54 const std::string kernel_path = CLKernelLibrary::get().get_kernel_path(); in TEST_SUITE() local 59 …compile_context.create_kernel(kernel_name, program_name, kernel_src.first, kernel_path, build_opts… in TEST_SUITE() 65 …compile_context.create_kernel(kernel_name, program_name, kernel_src.first, kernel_path, build_opts… in TEST_SUITE()
|
/external/autotest/client/cros/faft/utils/ |
D | kernel_handler.py | 87 def dump_kernel(self, section, kernel_path): argument 94 cmd = 'dd if=%s of=%s bs=%dM count=1' % (dev, kernel_path, 98 def write_kernel(self, section, kernel_path): argument 105 dd_cmd = 'dd if=%s of=%s bs=%dM count=1' % (kernel_path, dev,
|
D | rootfs_handler.py | 36 kernel_path = self.os_if.join_part(self.root_dev, 42 'dd if=%s of=%s' % (kernel_path, self.kernel_dump_file))
|
/external/ComputeLibrary/arm_compute/core/CL/ |
D | CLCompileContext.h | 252 … const std::string &kernel_path, const StringSet &build_options_set, bool is_binary) const; 315 …tring generate_build_options(const StringSet &build_options, const std::string &kernel_path) const; 324 std::string stringify_set(const StringSet &s, const std::string &kernel_path) const;
|
D | CLKernelLibrary.h | 60 void init(std::string kernel_path, cl::Context context, cl::Device device); 65 void set_kernel_path(const std::string &kernel_path);
|
/external/autotest/client/cros/faft/ |
D | rpc_functions.py | 702 def dump(self, section, kernel_path): argument 708 self._kernel_handler.dump_kernel(section, kernel_path) 710 def write(self, section, kernel_path): argument 716 self._kernel_handler.write_kernel(section, kernel_path)
|
/external/crosvm/src/linux/ |
D | mod.rs | 830 Some(Executable::Kernel(ref kernel_path)) => VmImage::Kernel( in setup_vm_components() 831 open_file(kernel_path, OpenOptions::new().read(true)).with_context(|| { in setup_vm_components() 832 format!("failed to open kernel image {}", kernel_path.display()) in setup_vm_components()
|
/external/crosvm/src/ |
D | main.rs | 1057 let kernel_path = PathBuf::from(value.unwrap()); in set_argument() localVariable 1058 if !kernel_path.exists() { in set_argument() 1064 cfg.executable_path = Some(Executable::Kernel(kernel_path)); in set_argument()
|