| /external/libbpf/.github/actions/vmtest/ |
| D | action.yml | 1 name: 'vmtest' 4 kernel: 5 description: 'kernel version or LATEST' 20 - name: Setup environment 21 uses: libbpf/ci/setup-build-env@main 24 # 1. download CHECKPOINT kernel source 25 - name: Get checkpoint commit 28 cat CHECKPOINT-COMMIT 29 echo "CHECKPOINT=$(cat CHECKPOINT-COMMIT)" >> $GITHUB_ENV 30 - name: Get kernel source at checkpoint [all …]
|
| /external/vboot_reference/scripts/image_signing/ |
| D | make_dev_ssd.sh | 4 # Use of this source code is governed by a BSD-style license that can be 7 # This script can change key (usually developer keys) and kernel config 8 # of kernels on an disk image (usually for SSD but also works for USB). 20 # TODO(hungte) The default image selection is no longer a SSD, so the script 21 # works more like "make_dev_image". We may change the file name in future. 22 ROOTDEV="$(rootdev -s 2>/dev/null)" 23 ROOTDEV_PARTITION="$(echo $ROOTDEV | sed -n 's/.*\([0-9][0-9]*\)$/\1/p')" 24 ROOTDEV_DISK="$(rootdev -s -d 2>/dev/null)" 25 ROOTDEV_KERNEL="$((ROOTDEV_PARTITION - 1))" 27 # DEFINE_string name default_value description flag [all …]
|
| D | sign_official_build.sh | 4 # Use of this source code is governed by a BSD-style license that can be 7 # Sign the final build image using the "official" keys. 28 ssd (sign an SSD image) 29 recovery (sign a USB recovery image) 30 factory (sign a factory install image) 33 firmware (sign a firmware image) 34 usb (sign an image to boot directly from USB) 35 verify (verify an image including rootfs hashes) 37 output_image: File name of the signed output image 38 version_file: File name of where to read the kernel and firmware versions. [all …]
|
| /external/mesa3d/src/gallium/frontends/rusticl/api/ |
| D | kernel.rs | 6 use crate::core::kernel::*; 26 fn query(&self, q: cl_kernel_info, _: &[u8]) -> CLResult<Vec<MaybeUninit<u8>>> { in query() 27 let kernel = Kernel::ref_from_raw(*self)?; in query() localVariable 29 CL_KERNEL_ATTRIBUTES => cl_prop::<&str>(&kernel.kernel_info.attributes_string), in query() 31 let ptr = Arc::as_ptr(&kernel.prog.context); in query() 34 CL_KERNEL_FUNCTION_NAME => cl_prop::<&str>(&kernel.name), in query() 35 CL_KERNEL_NUM_ARGS => cl_prop::<cl_uint>(kernel.kernel_info.args.len() as cl_uint), in query() 37 let ptr = Arc::as_ptr(&kernel.prog); in query() 40 CL_KERNEL_REFERENCE_COUNT => cl_prop::<cl_uint>(Kernel::refcnt(*self)?), in query() 49 fn query(&self, idx: cl_uint, q: cl_kernel_arg_info) -> CLResult<Vec<MaybeUninit<u8>>> { in query() [all …]
|
| /external/autotest/client/cros/faft/ |
| D | rpc_functions.py | 2 # Use of this source code is governed by a BSD-style license that can be 42 When XML-RPC is being used, the RPC server routes the called method to: 56 self.kernel = KernelServicer(os_if) 68 'kernel': self.kernel, 155 'RPC method name is private: %s%s[%s]' % 162 'RPC method name is empty: %s%s[%s]' % 228 """Reload the firmware image that may be changed.""" 348 """Return kernel subkey version.""" 354 @param bios_path: The path of the BIOS image to be written. 361 @param bios_path: The path of the source BIOS image [all …]
|
| /external/tensorflow/tensorflow/python/kernel_tests/nn_ops/ |
| D | morphological_ops_test.py | 7 # http://www.apache.org/licenses/LICENSE-2.0 25 import tensorflow.python.ops.nn_grad # pylint: disable=unused-import 31 def _VerifyValues(self, image, kernel, strides, rates, padding, out, use_gpu): argument 35 image: Input tensor with shape: [batch, in_height, in_width, channels]. 36 kernel: Filter tensor with shape: [filter_height, filter_width, channels]. 48 constant_op.constant(image), 49 constant_op.constant(kernel), 53 name="dilation2d") 58 image = [[[[.1], [.2]], [[.3], [.4]]]] 60 kernel = [[[.4], [.3]], [[.1], [.0]]] [all …]
|
| /external/mesa3d/.gitlab-ci/bare-metal/ |
| D | mkbootimg.py | 9 # http://www.apache.org/licenses/LICENSE-2.0 16 """Creates the boot image.""" 54 # Names with special meaning, mustn't be specified in --ramdisk_name. 56 PARSER_ARGUMENT_VENDOR_RAMDISK_FRAGMENT = '--vendor_ramdisk_fragment' 72 pad = (padding - (f.tell() & (padding - 1))) & (padding - 1) 75 """calculates the number of pages required for the image""" 76 return (image_size + page_size - 1) // page_size 78 """calculates the offset of recovery_dtbo image in the boot image""" 80 num_kernel_pages = get_number_of_pages(filesize(args.kernel), args.pagesize) 93 # kernel size in bytes [all …]
|
| /external/angle/src/libANGLE/ |
| D | validationCL.cpp | 3 // Use of this source code is governed by a BSD-style license that can be 71 // CL_INVALID_PROPERTY if the same property name is specified more than once. in ValidateContextProperties() 83 platform = &nativePlatform->cast<Platform>(); in ValidateContextProperties() 88 // CL_INVALID_PROPERTY if the value specified for a supported property name in ValidateContextProperties() 89 // is not valid, or if the same property name is specified more than once. in ValidateContextProperties() 100 // CL_INVALID_PROPERTY if context property name in properties in ValidateContextProperties() 101 // is not a supported property name. in ValidateContextProperties() 194 // CL_INVALID_COMMAND_QUEUE if command_queue is not a valid host command-queue. in ValidateCommandQueueAndEventWaitList() 199 const CommandQueue &queue = commandQueue->cast<CommandQueue>(); in ValidateCommandQueueAndEventWaitList() 220 while (numEvents-- != 0u) in ValidateCommandQueueAndEventWaitList() [all …]
|
| /external/crosvm/docs/book/src/running_crosvm/ |
| D | advanced_usage.md | 3 To see the usage information for your version of crosvm, run `crosvm` or `crosvm run --help`. 10 crosvm --log-level=LEVEL run 16 crosvm --log-level=debug run 22 crosvm --log-level=devices::usb::xhci=LEVEL run 28 crosvm --log-level=devices::usb::xhci=LEVEL1,LEVEL2 run 38 ## Boot a Kernel 40 To run a very basic VM with just a kernel and default devices: 46 The compressed kernel image, also known as bzImage, can be found in your kernel build directory in 51 ### With a disk image 56 crosvm run -b "${ROOT_IMAGE},root,ro" "${KERNEL_PATH}" [all …]
|
| /external/mesa3d/.gitlab-ci/lava/utils/ |
| D | uart_job_definition.py | 9 # Use the same image that is being used for the hardware enablement and health-checks. 12 # https://gitlab.collabora.com/lava/health-check-docker/-/blob/main/Dockerfile 13 # And the registry here: https://gitlab.collabora.com/lava/health-check-docker/container_registry/ 14 DOCKER_IMAGE = "registry.gitlab.collabora.com/lava/health-check-docker" 19 ) -> tuple[dict[str, Any], ...]: 32 "kernel": { 38 "image": DOCKER_IMAGE, 40 f"cat Image.gz {args.dtb_filename}.dtb > Image.gz+dtb", 41 "mkbootimg --kernel Image.gz+dtb" 42 …+ ' --cmdline "root=/dev/nfs rw nfsroot=$NFS_SERVER_IP:$NFS_ROOTFS,tcp,hard rootwait ip=dhcp init=… [all …]
|
| /external/mesa3d/.gitlab-ci/lava/ |
| D | lava-submit.sh | 4 set -ex 6 # If we run in the fork (not from mesa or Marge-bot), reuse mainline kernel and rootfs, if exist. 9 if ! curl -s -X HEAD -L --retry 4 -f --retry-delay 60 \ 11 echo "Using kernel and rootfs from the fork, cached from mainline is unavailable." 14 echo "Using the cached mainline kernel and rootfs." 18 rm -rf results 19 mkdir -p results/job-rootfs-overlay/ 21 cp artifacts/ci-common/capture-devcoredump.sh results/job-rootfs-overlay/ 22 cp artifacts/ci-common/init-*.sh results/job-rootfs-overlay/ 23 cp artifacts/ci-common/intel-gpu-freq.sh results/job-rootfs-overlay/ [all …]
|
| /external/autotest/client/cros/faft/utils/ |
| D | kernel_handler.py | 2 # Use of this source code is governed by a BSD-style license that can be 4 """A module containing kernel handler class used by SAFT.""" 10 # Types of kernel modifications. 17 """KernelHandler-specific exception.""" 22 """An object to provide ChromeOS kernel related actions. 24 Mostly it allows to corrupt and restore a particular kernel partition 25 (designated by the partition name, A or B. 28 @param is_minios: True if it is a MiniOS kernel; otherwise, False. 31 # This value is used to alter contents of a byte in the appropriate kernel 32 # image. First added to corrupt the image, then subtracted to restore the [all …]
|
| /external/autotest/server/site_tests/autoupdate_CatchBadSignatures/ |
| D | control | 2 # Use of this source code is governed by a BSD-style license that can be 8 NAME = "autoupdate_CatchBadSignatures" 13 ATTRIBUTES = "suite:bvt-inline, suite:pvs-bvt-inline, suite:satlab-qual-bvt-inline" 23 By its very nature, this test requires an image signed with a well-known 24 key. Since payload-generation is a resource-intensive process, we prepare the 25 image ahead of time. Also, since the image is never successfully applied, we can 26 get away with not caring that the image is built for one board but used on 29 If you ever need to replace the test image and payloads, follow these simple 32 1. Build a test image: 35 $ ./build_packages --board=${BOARD} [all …]
|
| /external/rust/crates/vulkano/ |
| D | spirv.core.grammar.json | 3 "Copyright (c) 2014-2020 The Khronos Group Inc.", 52 "tag": "Mode-Setting", 53 "heading": "Mode-Setting Instructions" 56 "tag": "Type-Declaration", 57 "heading": "Type-Declaration Instructions" 60 "tag": "Constant-Creation", 61 "heading": "Constant-Creation Instructions" 72 "tag": "Image", 73 "heading": "Image Instructions" 100 "tag": "Control-Flow", [all …]
|
| /external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/ |
| D | AMDGPUHSAMetadataStreamer.cpp | 1 //===--- AMDGPUHSAMetadataStreamer.cpp --------------------------*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 13 //===----------------------------------------------------------------------===// 30 "amdgpu-dump-hsa-metadata", 33 "amdgpu-verify-hsa-metadata", 39 //===----------------------------------------------------------------------===// 41 //===----------------------------------------------------------------------===// 108 .Case("image1d_t", ValueKind::Image) in getValueKind() 109 .Case("image1d_array_t", ValueKind::Image) in getValueKind() [all …]
|
| D | R600OpenCLImageTypeLoweringPass.cpp | 1 //===- R600OpenCLImageTypeLoweringPass.cpp ------------------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 10 /// This pass resolves calls to OpenCL image attribute, image resource ID and 13 /// Image attributes (size and format) are expected to be passed to the kernel 14 /// as kernel arguments immediately following the image argument itself, 15 /// therefore this pass adds image size and format arguments to the kernel 16 /// functions in the module. The kernel functions with image arguments are 17 /// re-created using the new signature. The new arguments are added to the 18 /// kernel metadata with kernel_arg_type set to "image_size" or "image_format". [all …]
|
| /external/angle/third_party/spirv-headers/src/include/spirv/1.1/ |
| D | spirv.core.grammar.json | 3 "Copyright (c) 2014-2016 The Khronos Group Inc.", 48 { "kind" : "LiteralString", "name" : "'Continued Source'" } string 56 { "kind" : "LiteralInteger", "name" : "'Version'" }, string 57 { "kind" : "IdRef", "quantifier" : "?", "name" : "'File'" }, string 58 { "kind" : "LiteralString", "quantifier" : "?", "name" : "'Source'" } string 65 { "kind" : "LiteralString", "name" : "'Extension'" } string 72 { "kind" : "IdRef", "name" : "'Target'" }, string 73 { "kind" : "LiteralString", "name" : "'Name'" } string 80 { "kind" : "IdRef", "name" : "'Type'" }, string 81 { "kind" : "LiteralInteger", "name" : "'Member'" }, string [all …]
|
| /external/shaderc/spirv-headers/include/spirv/1.1/ |
| D | spirv.core.grammar.json | 3 "Copyright (c) 2014-2016 The Khronos Group Inc.", 48 { "kind" : "LiteralString", "name" : "'Continued Source'" } string 56 { "kind" : "LiteralInteger", "name" : "'Version'" }, string 57 { "kind" : "IdRef", "quantifier" : "?", "name" : "'File'" }, string 58 { "kind" : "LiteralString", "quantifier" : "?", "name" : "'Source'" } string 65 { "kind" : "LiteralString", "name" : "'Extension'" } string 72 { "kind" : "IdRef", "name" : "'Target'" }, string 73 { "kind" : "LiteralString", "name" : "'Name'" } string 80 { "kind" : "IdRef", "name" : "'Type'" }, string 81 { "kind" : "LiteralInteger", "name" : "'Member'" }, string [all …]
|
| /external/swiftshader/third_party/SPIRV-Headers/include/spirv/1.1/ |
| D | spirv.core.grammar.json | 3 "Copyright (c) 2014-2016 The Khronos Group Inc.", 48 { "kind" : "LiteralString", "name" : "'Continued Source'" } string 56 { "kind" : "LiteralInteger", "name" : "'Version'" }, string 57 { "kind" : "IdRef", "quantifier" : "?", "name" : "'File'" }, string 58 { "kind" : "LiteralString", "quantifier" : "?", "name" : "'Source'" } string 65 { "kind" : "LiteralString", "name" : "'Extension'" } string 72 { "kind" : "IdRef", "name" : "'Target'" }, string 73 { "kind" : "LiteralString", "name" : "'Name'" } string 80 { "kind" : "IdRef", "name" : "'Type'" }, string 81 { "kind" : "LiteralInteger", "name" : "'Member'" }, string [all …]
|
| /external/deqp-deps/SPIRV-Headers/include/spirv/1.1/ |
| D | spirv.core.grammar.json | 3 "Copyright (c) 2014-2016 The Khronos Group Inc.", 48 { "kind" : "LiteralString", "name" : "'Continued Source'" } string 56 { "kind" : "LiteralInteger", "name" : "'Version'" }, string 57 { "kind" : "IdRef", "quantifier" : "?", "name" : "'File'" }, string 58 { "kind" : "LiteralString", "quantifier" : "?", "name" : "'Source'" } string 65 { "kind" : "LiteralString", "name" : "'Extension'" } string 72 { "kind" : "IdRef", "name" : "'Target'" }, string 73 { "kind" : "LiteralString", "name" : "'Name'" } string 80 { "kind" : "IdRef", "name" : "'Type'" }, string 81 { "kind" : "LiteralInteger", "name" : "'Member'" }, string [all …]
|
| /external/swiftshader/third_party/SPIRV-Headers/include/spirv/1.0/ |
| D | spirv.core.grammar.json | 3 "Copyright (c) 2014-2016 The Khronos Group Inc.", 48 { "kind" : "LiteralString", "name" : "'Continued Source'" } string 56 { "kind" : "LiteralInteger", "name" : "'Version'" }, string 57 { "kind" : "IdRef", "quantifier" : "?", "name" : "'File'" }, string 58 { "kind" : "LiteralString", "quantifier" : "?", "name" : "'Source'" } string 65 { "kind" : "LiteralString", "name" : "'Extension'" } string 72 { "kind" : "IdRef", "name" : "'Target'" }, string 73 { "kind" : "LiteralString", "name" : "'Name'" } string 80 { "kind" : "IdRef", "name" : "'Type'" }, string 81 { "kind" : "LiteralInteger", "name" : "'Member'" }, string [all …]
|
| /external/angle/third_party/spirv-headers/src/include/spirv/1.0/ |
| D | spirv.core.grammar.json | 3 "Copyright (c) 2014-2016 The Khronos Group Inc.", 48 { "kind" : "LiteralString", "name" : "'Continued Source'" } string 56 { "kind" : "LiteralInteger", "name" : "'Version'" }, string 57 { "kind" : "IdRef", "quantifier" : "?", "name" : "'File'" }, string 58 { "kind" : "LiteralString", "quantifier" : "?", "name" : "'Source'" } string 65 { "kind" : "LiteralString", "name" : "'Extension'" } string 72 { "kind" : "IdRef", "name" : "'Target'" }, string 73 { "kind" : "LiteralString", "name" : "'Name'" } string 80 { "kind" : "IdRef", "name" : "'Type'" }, string 81 { "kind" : "LiteralInteger", "name" : "'Member'" }, string [all …]
|
| /external/shaderc/spirv-headers/include/spirv/1.0/ |
| D | spirv.core.grammar.json | 3 "Copyright (c) 2014-2016 The Khronos Group Inc.", 48 { "kind" : "LiteralString", "name" : "'Continued Source'" } string 56 { "kind" : "LiteralInteger", "name" : "'Version'" }, string 57 { "kind" : "IdRef", "quantifier" : "?", "name" : "'File'" }, string 58 { "kind" : "LiteralString", "quantifier" : "?", "name" : "'Source'" } string 65 { "kind" : "LiteralString", "name" : "'Extension'" } string 72 { "kind" : "IdRef", "name" : "'Target'" }, string 73 { "kind" : "LiteralString", "name" : "'Name'" } string 80 { "kind" : "IdRef", "name" : "'Type'" }, string 81 { "kind" : "LiteralInteger", "name" : "'Member'" }, string [all …]
|
| /external/deqp-deps/SPIRV-Headers/include/spirv/1.0/ |
| D | spirv.core.grammar.json | 3 "Copyright (c) 2014-2016 The Khronos Group Inc.", 48 { "kind" : "LiteralString", "name" : "'Continued Source'" } string 56 { "kind" : "LiteralInteger", "name" : "'Version'" }, string 57 { "kind" : "IdRef", "quantifier" : "?", "name" : "'File'" }, string 58 { "kind" : "LiteralString", "quantifier" : "?", "name" : "'Source'" } string 65 { "kind" : "LiteralString", "name" : "'Extension'" } string 72 { "kind" : "IdRef", "name" : "'Target'" }, string 73 { "kind" : "LiteralString", "name" : "'Name'" } string 80 { "kind" : "IdRef", "name" : "'Type'" }, string 81 { "kind" : "LiteralInteger", "name" : "'Member'" }, string [all …]
|
| /external/arm-trusted-firmware/docs/plat/marvell/armada/ |
| D | build.rst | 1 TF-A Build Instructions for Marvell Platforms 4 This section describes how to compile the Trusted Firmware-A (TF-A) project for Marvell's platforms. 7 ------------------ 12 > export CROSS_COMPILE=/path/to/toolchain/aarch64-linux-gnu- 16 Set U-Boot image path (relatively to TF-A root or absolute path) 20 > export BL33=path/to/u-boot.bin 22 For example: if U-Boot project (and its images) is located at ``~/project/u-boot``, 23 BL33 should be ``~/project/u-boot/u-boot.bin`` 27 *u-boot.bin* should be used and not *u-boot-spl.bin* 29 Set MSS/SCP image path (mandatory only for A7K/8K/CN913x when MSS_SUPPORT=1) [all …]
|