Home
last modified time | relevance | path

Searched +full:- +full:- +full:arch (Results 1 – 25 of 1526) sorted by relevance

12345678910>>...62

/aosp_15_r20/device/linaro/hikey-kernel/hikey960/5.10/
Dkernel-headers.tar.gz ... /arch/s390/include/asm/asm-const.h kernel-headers/arch/s390 ...
/aosp_15_r20/external/capstone/
H A DCMakeLists.txt37 math(EXPR count "${count}-1")
50 add_definitions("-D${option_name}")
66 add_definitions(-DCAPSTONE_DIET)
70 add_definitions(-DCAPSTONE_USE_SYS_DYN_MEM)
74 add_definitions(-DCAPSTONE_X86_REDUCE)
78 add_definitions(-DCAPSTONE_X86_ATT_DISABLE)
125 add_definitions(-DCAPSTONE_HAS_ARM)
127 arch/ARM/ARMDisassembler.c
128 arch/ARM/ARMInstPrinter.c
129 arch/ARM/ARMMapping.c
[all …]
/aosp_15_r20/frameworks/libs/native_bridge_support/android_api/libvulkan/proxy/
Dcpp_types.go8 // http://www.apache.org/licenses/LICENSE-2.0
25 Align(arch Arch) uint argument
26 Bits(arch Arch) uint argument
27 DeclareVar(var_name string, arch Arch) string argument
28 …BaseName(arch Arch) string // Name without additional marks: “*”, “[]”, “struct”, “union”, etc. No… argument
29 Name(arch Arch) string argument
31 …// E.g. VK_DEFINE_NON_DISPATCHABLE_HANDLE is pointer on 64-bit platforms and uint64_t on 32-bit on…
32 Kind(arch Arch) Kind argument
34 Signed(arch Arch) bool argument
36 Elem(arch Arch) Type argument
[all …]
Dvulkan_xml_test.go8 // http://www.apache.org/licenses/LICENSE-2.0
27 <?xml version="1.0" encoding="UTF-8"?>
48 <?xml version="1.0" encoding="UTF-8"?>
65 <?xml version="1.0" encoding="UTF-8"?>
89 <?xml version="1.0" encoding="UTF-8"?>
118 <?xml version="1.0" encoding="UTF-8"?>
154 for arch := cpp_types.FirstArch; arch <= cpp_types.LastArch; arch++ {
155 if typе.Kind(arch) != cpp_types.Enum {
158 if typе.Elem(arch).Kind(arch) != cpp_types.Int32T {
159 t.Error("VkStructureType is not std::int32_t-based enum")
[all …]
/aosp_15_r20/external/crosvm/tools/impl/
H A Dtestvm.py2 # Use of this source code is governed by a BSD-style license that can be
22 Arch = Literal["x86_64", "aarch64"] variable
23 ARCH_OPTIONS = typing.cast(Tuple[Arch], typing.get_args(Arch))
42 ["cargo", "metadata", "--no-deps", "--format-version=1"],
51 def data_dir(arch: Arch): argument
52 return CACHE_DIR.joinpath("crosvm_tools").joinpath(arch)
55 def pid_path(arch: Arch): argument
56 return data_dir(arch).joinpath("pid")
59 def ssh_port_path(arch: Arch): argument
60 return data_dir(arch).joinpath("ssh_port")
[all …]
/aosp_15_r20/prebuilts/sdk/current/extras/app-toolkit/
H A DAndroid.bp3-sdk-version current -static-deps '-rewrite=^android.arch.core:common$=android-arch-core-common' '
6 // See: http://go/android-license-faq
7 // A large-scale-change added 'default_applicable_licenses' to import
10 // SPDX-license-identifier-Apache-2.0
15 name: "android-arch-core-common-nodeps",
16 jars: ["m2repository/android/arch/core/common/28.0.0/common-28.0.0.jar"],
26 name: "android-arch-core-common",
34 "android-arch-core-common-nodeps",
35 "android-support-annotations",
41 name: "android-arch-core-runtime-nodeps",
[all …]
/aosp_15_r20/external/vboot_reference/tests/futility/
H A Dtest_sign_kernel.sh1 #!/bin/bash -eux
3 # Use of this source code is governed by a BSD-style license that can be
23 local arch=$1
25 echo -n "${arch}: 1 " 1>&3
28 "${FUTILITY}" --debug vbutil_kernel \
29 --pack "${TMP}.blob1.${arch}" \
30 --keyblock "${DEVKEYS}/recovery_kernel.keyblock" \
31 --signprivate "${DEVKEYS}/recovery_kernel_data_key.vbprivk" \
32 --version 1 \
33 --config "${TMP}.config.txt" \
[all …]
/aosp_15_r20/external/python/cpython3/Lib/test/
Dtest__osx_support.py65 'cc not found - check xcode-select')
73 'CC': 'gcc-test -pthreads',
76 'CC': 'clang -pthreads',
79 newvalue = 'clang -pthreads'
87 'CC': 'gcc-test -pthreads',
90 'CC': 'clang -pthreads',
94 newvalue = 'clang -pthreads'
100 'CC': 'gcc-test -pthreads',
104 newvalue = 'gcc-test -pthreads'
117 ('gcc-test', 'i686-apple-darwin11-llvm-gcc-4.2'),
[all …]
/aosp_15_r20/external/libaom/av1/common/
H A Dcfl.h20 const MB_MODE_INFO *mbmi = xd->mi[0]; in is_cfl_allowed()
21 const BLOCK_SIZE bsize = mbmi->bsize; in is_cfl_allowed()
23 if (xd->lossless[mbmi->segment_id]) { in is_cfl_allowed()
26 const int ssx = xd->plane[AOM_PLANE_U].subsampling_x; in is_cfl_allowed()
27 const int ssy = xd->plane[AOM_PLANE_U].subsampling_y; in is_cfl_allowed()
40 const MB_MODE_INFO *mbmi = xd->mi[0]; in store_cfl_required()
42 if (cm->seq_params->monochrome) return CFL_DISALLOWED; in store_cfl_required()
44 if (!xd->is_chroma_ref) { in store_cfl_required()
45 // For non-chroma-reference blocks, we should always store the luma pixels, in store_cfl_required()
46 // in case the corresponding chroma-reference block uses CfL. in store_cfl_required()
[all …]
/aosp_15_r20/external/crosvm/tools/
H A Dtestvm3 # Use of this source code is governed by a BSD-style license that can be
11 from impl.testvm import Arch, VmState
16 Both are a wrapper around `./tools/testvm --arch=x86_64/aarch64`.
26 - up: Start the VM if it is not already running.
27 - stop: Gracefully stop the VM
28 - kill: Send SIGKILL to the VM
29 - clean: Stop the VM and delete all images
30 - logs: Print logs of the VM console
37 def cli_shorthand(arch: Arch): argument
38 if arch == "x86_64":
[all …]
/aosp_15_r20/external/python/cpython2/Lib/test/
Dtest__osx_support.py67 'cc not found - check xcode-select')
75 'CC': 'gcc-test -pthreads',
78 'CC': 'clang -pthreads',
81 newvalue = 'clang -pthreads'
89 'CC': 'gcc-test -pthreads',
92 'CC': 'clang -pthreads',
96 newvalue = 'clang -pthreads'
102 'CC': 'gcc-test -pthreads',
106 newvalue = 'gcc-test -pthreads'
119 ('gcc-test', 'i686-apple-darwin11-llvm-gcc-4.2'),
[all …]
/aosp_15_r20/out/soong/.intermediates/prebuilts/sdk/current/extras/app-toolkit/android-arch-lifecycle-livedata-core-nodeps/android_common/aar/
Dandroid-arch-lifecycle-livedata-core-nodeps.jar ... android.arch.lifecycle.LiveData, android.arch.lifecycle.Observer) android.arch.lifecycle
Dclasses.jar ... android.arch.lifecycle.LiveData, android.arch.lifecycle.Observer) android.arch.lifecycle
/aosp_15_r20/prebuilts/vndk/v33/arm/
DAndroid.bp9 name: "android.hardware.audio.common-V1-ndk",
16 arch: {
22 …"include/generated-headers/frameworks/base/media/android.media.audio.common.types-V1-ndk-source/ge…
23 …"include/generated-headers/hardware/interfaces/audio/aidl/android.hardware.audio.common-V1-ndk-sou…
25 … srcs: ["arch-arm-armv7-a-neon/shared/vndk-core/android.hardware.audio.common-V1-ndk.so"],
39 arch: {
55 …"include/generated-headers/system/libhidl/transport/manager/1.0/[email protected]_genc++_he…
56 …"include/generated-headers/system/libhidl/transport/manager/1.1/[email protected]_genc++_he…
57 …"include/generated-headers/system/libhidl/transport/manager/1.2/[email protected]_genc++_he…
58 …"include/generated-headers/system/libhidl/transport/base/1.0/[email protected]_genc++_headers/…
[all …]
/aosp_15_r20/prebuilts/vndk/v33/x86/
DAndroid.bp9 name: "android.hardware.audio.common-V1-ndk",
16 arch: {
22 …"include/generated-headers/frameworks/base/media/android.media.audio.common.types-V1-ndk-source/ge…
23 …"include/generated-headers/hardware/interfaces/audio/aidl/android.hardware.audio.common-V1-ndk-sou…
25 srcs: ["arch-x86/shared/vndk-core/android.hardware.audio.common-V1-ndk.so"],
39 arch: {
55 …"include/generated-headers/system/libhidl/transport/manager/1.0/[email protected]_genc++_he…
56 …"include/generated-headers/system/libhidl/transport/manager/1.1/[email protected]_genc++_he…
57 …"include/generated-headers/system/libhidl/transport/manager/1.2/[email protected]_genc++_he…
58 …"include/generated-headers/system/libhidl/transport/base/1.0/[email protected]_genc++_headers/…
[all …]
/aosp_15_r20/external/cronet/android/tools/gn2bp/
H A Dgn_utils.py7 # http://www.apache.org/licenses/LICENSE-2.0
28 # This is temporary solution until they are up-streamed.
44 # androidx-multidex is disabled on unbundled branches.
51 AIDL_INCLUDE_DIRS_REGEX = r'--includes=\[(.*)\]'
52 AIDL_IMPORT_DIRS_REGEX = r'--imports=\[(.*)\]'
53 PROTO_IMPORT_DIRS_REGEX = r'--import-dir=(.*)'
60 def _get_build_path_from_label(target_name: str) -> str:
70 if src_idx == -1:
85 # Skip "third_party/android_sdk/public/platforms/android-34/framework.aidl" because Soong
98 # for the auto-generated target name.
[all …]
/aosp_15_r20/prebuilts/go/linux-x86/src/cmd/vendor/golang.org/x/arch/arm64/arm64asm/
Dinst.json1 [{"Name":"ADC","Bits":"0|0|0|1|1|0|1|0|0|0|0|Rm:5|0|0|0|0|0|0|Rn:5|Rd:5","Arch":"32-bit variant","S… string
2 {"Name":"ADC","Bits":"1|0|0|1|1|0|1|0|0|0|0|Rm:5|0|0|0|0|0|0|Rn:5|Rd:5","Arch":"64-bit variant","Sy… string
3 {"Name":"ADCS","Bits":"0|0|1|1|1|0|1|0|0|0|0|Rm:5|0|0|0|0|0|0|Rn:5|Rd:5","Arch":"32-bit variant","S… string
4 {"Name":"ADCS","Bits":"1|0|1|1|1|0|1|0|0|0|0|Rm:5|0|0|0|0|0|0|Rn:5|Rd:5","Arch":"64-bit variant","S… string
5 …ister)","Bits":"0|0|0|0|1|0|1|1|0|0|1|Rm:5|option:3|imm3:3|Rn:5|Rd:5","Arch":"32-bit variant","Syn… string
6 …ister)","Bits":"1|0|0|0|1|0|1|1|0|0|1|Rm:5|option:3|imm3:3|Rn:5|Rd:5","Arch":"64-bit variant","Syn… string
7 {"Name":"ADD (immediate)","Bits":"0|0|0|1|0|0|0|1|shift:2|imm12:12|Rn:5|Rd:5","Arch":"32-bit varian… string
8 {"Name":"ADD (immediate)","Bits":"1|0|0|1|0|0|0|1|shift:2|imm12:12|Rn:5|Rd:5","Arch":"64-bit varian… string
9 …d register)","Bits":"0|0|0|0|1|0|1|1|shift:2|0|Rm:5|imm6:6|Rn:5|Rd:5","Arch":"32-bit variant","Syn… string
10 …d register)","Bits":"1|0|0|0|1|0|1|1|shift:2|0|Rm:5|imm6:6|Rn:5|Rd:5","Arch":"64-bit variant","Syn… string
[all …]
/aosp_15_r20/external/cronet/third_party/apache-portable-runtime/src/
H A Dapr.dep39 ".\include\arch\apr_private_common.h"\
40 ".\include\arch\win32\apr_arch_dso.h"\
41 ".\include\arch\win32\apr_arch_file_io.h"\
42 ".\include\arch\win32\apr_arch_misc.h"\
43 ".\include\arch\win32\apr_arch_utf8.h"\
44 ".\include\arch\win32\apr_private.h"\
85 ".\include\arch\apr_private_common.h"\
86 ".\include\arch\win32\apr_arch_file_io.h"\
87 ".\include\arch\win32\apr_arch_misc.h"\
88 ".\include\arch\win32\apr_arch_utf8.h"\
[all …]
H A Dlibapr.dep39 ".\include\arch\apr_private_common.h"\
40 ".\include\arch\win32\apr_arch_dso.h"\
41 ".\include\arch\win32\apr_arch_file_io.h"\
42 ".\include\arch\win32\apr_arch_misc.h"\
43 ".\include\arch\win32\apr_arch_utf8.h"\
44 ".\include\arch\win32\apr_private.h"\
85 ".\include\arch\apr_private_common.h"\
86 ".\include\arch\win32\apr_arch_file_io.h"\
87 ".\include\arch\win32\apr_arch_misc.h"\
88 ".\include\arch\win32\apr_arch_utf8.h"\
[all …]
/aosp_15_r20/prebuilts/vndk/v32/arm/
DAndroid.bp17 arch: {
33 …"include/generated-headers/system/libhidl/transport/manager/1.0/[email protected]_genc++_he…
34 …"include/generated-headers/system/libhidl/transport/manager/1.1/[email protected]_genc++_he…
35 …"include/generated-headers/system/libhidl/transport/manager/1.2/[email protected]_genc++_he…
36 …"include/generated-headers/system/libhidl/transport/base/1.0/[email protected]_genc++_headers/…
37 …"include/generated-headers/hardware/interfaces/audio/common/2.0/[email protected]_…
39 srcs: ["arch-arm-armv7-a-neon/shared/vndk-core/[email protected]"],
45 name: "android.hardware.authsecret-V1-ndk_platform",
52 arch: {
58 …"include/generated-headers/hardware/interfaces/authsecret/aidl/android.hardware.authsecret-V1-ndk_…
[all …]
/aosp_15_r20/prebuilts/vndk/v31/arm/
DAndroid.bp17 arch: {
33 …"include/generated-headers/system/libhidl/transport/manager/1.0/[email protected]_genc++_he…
34 …"include/generated-headers/system/libhidl/transport/manager/1.1/[email protected]_genc++_he…
35 …"include/generated-headers/system/libhidl/transport/manager/1.2/[email protected]_genc++_he…
36 …"include/generated-headers/system/libhidl/transport/base/1.0/[email protected]_genc++_headers/…
37 …"include/generated-headers/hardware/interfaces/audio/common/2.0/[email protected]_…
39 srcs: ["arch-arm-armv7-a-neon/shared/vndk-core/[email protected]"],
45 name: "android.hardware.authsecret-V1-ndk_platform",
52 arch: {
58 …"include/generated-headers/hardware/interfaces/authsecret/aidl/android.hardware.authsecret-V1-ndk_…
[all …]
/aosp_15_r20/prebuilts/vndk/v32/x86/
DAndroid.bp17 arch: {
33 …"include/generated-headers/system/libhidl/transport/manager/1.0/[email protected]_genc++_he…
34 …"include/generated-headers/system/libhidl/transport/manager/1.1/[email protected]_genc++_he…
35 …"include/generated-headers/system/libhidl/transport/manager/1.2/[email protected]_genc++_he…
36 …"include/generated-headers/system/libhidl/transport/base/1.0/[email protected]_genc++_headers/…
37 …"include/generated-headers/hardware/interfaces/audio/common/2.0/[email protected]_…
39 srcs: ["arch-x86/shared/vndk-core/[email protected]"],
45 name: "android.hardware.authsecret-V1-ndk_platform",
52 arch: {
58 …"include/generated-headers/hardware/interfaces/authsecret/aidl/android.hardware.authsecret-V1-ndk_…
[all …]
/aosp_15_r20/prebuilts/vndk/v31/x86/
DAndroid.bp17 arch: {
33 …"include/generated-headers/system/libhidl/transport/manager/1.0/[email protected]_genc++_he…
34 …"include/generated-headers/system/libhidl/transport/manager/1.1/[email protected]_genc++_he…
35 …"include/generated-headers/system/libhidl/transport/manager/1.2/[email protected]_genc++_he…
36 …"include/generated-headers/system/libhidl/transport/base/1.0/[email protected]_genc++_headers/…
37 …"include/generated-headers/hardware/interfaces/audio/common/2.0/[email protected]_…
39 srcs: ["arch-x86/shared/vndk-core/[email protected]"],
45 name: "android.hardware.authsecret-V1-ndk_platform",
52 arch: {
58 …"include/generated-headers/hardware/interfaces/authsecret/aidl/android.hardware.authsecret-V1-ndk_…
[all …]
/aosp_15_r20/out/soong/.intermediates/external/rust/android-crates-io/crates/memchr/libmemchr/linux_glibc_x86_64_rlib_rlib-std/
Dlibmemchr.rlib.d.raw1-crates-io/crates/memchr/libmemchr/linux_glibc_x86_64_rlib_rlib-std/libmemchr.rlib: external/rust/…
3-crates-io/crates/memchr/libmemchr/linux_glibc_x86_64_rlib_rlib-std/libmemchr.rlib.d.raw: external…
5 external/rust/android-crates-io/crates/memchr/src/lib.rs:
6 external/rust/android-crates-io/crates/memchr/src/macros.rs:
7 external/rust/android-crates-io/crates/memchr/src/arch/mod.rs:
8 external/rust/android-crates-io/crates/memchr/src/arch/all/mod.rs:
9 external/rust/android-crates-io/crates/memchr/src/arch/all/memchr.rs:
10 external/rust/android-crates-io/crates/memchr/src/arch/all/packedpair/mod.rs:
11 external/rust/android-crates-io/crates/memchr/src/arch/all/packedpair/default_rank.rs:
12 external/rust/android-crates-io/crates/memchr/src/arch/all/rabinkarp.rs:
[all …]
/aosp_15_r20/external/cronet/components/cronet/gn2bp/
H A Dgn_utils.py7 # http://www.apache.org/licenses/LICENSE-2.0
29 # This is temporary solution until they are up-streamed.
45 # androidx-multidex is disabled on unbundled branches.
50 AIDL_INCLUDE_DIRS_REGEX = r'--includes=\[(.*)\]'
51 AIDL_IMPORT_DIRS_REGEX = r'--imports=\[(.*)\]'
52 PROTO_IMPORT_DIRS_REGEX = r'--import-dir=(.*)'
68 if src_idx == -1:
87 … # Skip "third_party/android_sdk/public/platforms/android-34/framework.aidl" because Soong
105 # for the auto-generated target name.
144 2) Detect and special-case protobuf targets, figuring out the protoc-plugin
[all …]

12345678910>>...62