Home
last modified time | relevance | path

Searched refs:arch (Results 1 - 25 of 329) sorted by relevance

12345678910>>...14

/third_party/skia/third_party/externals/abseil-cpp/absl/types/internal/
H A Dconformance_testing_test.cc123 using arch = typename TypeParam::arch; in TYPED_TEST_P()
127 using arch_props = ti::PropertiesOfArchetypeT<arch>; in TYPED_TEST_P()
172 EXPECT_FALSE(DefaultConstructibleWithNew<arch>::value); in TYPED_TEST_P()
173 EXPECT_FALSE(NothrowDefaultConstructibleWithNew<arch>::value); in TYPED_TEST_P()
176 if (std::is_destructible<arch>::value) { in TYPED_TEST_P()
177 EXPECT_FALSE(std::is_default_constructible<arch>::value); in TYPED_TEST_P()
178 EXPECT_FALSE(std::is_nothrow_default_constructible<arch>::value); in TYPED_TEST_P()
179 EXPECT_FALSE(absl::is_trivially_default_constructible<arch>::value); in TYPED_TEST_P()
183 EXPECT_TRUE(DefaultConstructibleWithNew<arch> in TYPED_TEST_P()
[all...]
/third_party/gn/src/util/
H A Dsys_info.cc65 std::string arch(info.machine); in OperatingSystemArchitecture()
67 if (arch == "i386" || arch == "i486" || arch == "i586" || arch == "i686") { in OperatingSystemArchitecture()
68 arch = "x86"; in OperatingSystemArchitecture()
69 } else if (arch == "i86pc") { in OperatingSystemArchitecture()
73 arch = "x86_64"; in OperatingSystemArchitecture()
74 } else if (arch == "amd64") { in OperatingSystemArchitecture()
75 arch in OperatingSystemArchitecture()
[all...]
/third_party/node/deps/base64/base64/
H A DMakefile7 lib/arch/avx512/codec.o \
8 lib/arch/avx2/codec.o \
9 lib/arch/generic/codec.o \
10 lib/arch/neon32/codec.o \
11 lib/arch/neon64/codec.o \
12 lib/arch/ssse3/codec.o \
13 lib/arch/sse41/codec.o \
14 lib/arch/sse42/codec.o \
15 lib/arch/avx/codec.o \
93 lib/arch/avx51
[all...]
/third_party/musl/scripts/
H A Dsearch_source_files.py24 def arch_file_search(path, arch):
26 target_path = path + "/" + arch
54 def get_arch_srcs(path, arch):
61 arch_srcs += arch_file_search(cur_path, arch)
62 elif os.path.isdir(path + "/" + src_dir + "/" + arch):
63 src_path = path + "/" + src_dir + "/" + arch
86 def replace_srcs_with_arch(base_srcs, arch_srcs, arch):
90 fake_name = change_subfix(src.replace("/" + arch, ""))
120 def get_header_dirs(path, arch):
122 path + "/arch/"
[all...]
/third_party/elfutils/tests/
H A Dbacktrace-subr.sh87 echo >&2 $testname: arch not supported
114 arch=$1
115 testfiles backtrace.$arch.{exec,core}
116 tempfiles backtrace.$arch.{bt,err}
117 echo ./backtrace ./backtrace.$arch.{exec,core}
118 testrun ${abs_builddir}/backtrace -e ./backtrace.$arch.exec --core=./backtrace.$arch.core 1>backtrace.$arch.bt 2>backtrace.$arch.err || true
119 cat backtrace.$arch
[all...]
/third_party/rust/crates/rustix/
H A Dbuild.rs7 const OUTLINE_PATH: &str = "src/backend/linux_raw/arch/outline";
26 let arch = var("CARGO_CFG_TARGET_ARCH").unwrap(); in main()
27 let asm_name = format!("{}/{}.s", OUTLINE_PATH, arch); in main()
34 let is_x32 = arch == "x86_64" && pointer_width == "32"; in main()
35 let is_arm64_ilp32 = arch == "aarch64" && pointer_width == "32"; in main()
36 let is_powerpc64be = arch == "powerpc64" && endian == "big"; in main()
37 let is_mipseb = arch == "mips" && endian == "big"; in main()
38 let is_mips64eb = arch == "mips64" && endian == "big"; in main()
87 if (feature_rustc_dep_of_std || can_compile("use std::arch::asm;")) in main()
88 && (arch ! in main()
[all...]
/third_party/node/
H A Dandroid_configure.py35 arch = sys.argv[3] variable
37 if arch == "arm":
40 elif arch in ("aarch64", "arm64"):
43 arch = "arm64" variable
44 elif arch == "x86":
47 elif arch == "x86_64":
50 arch = "x64" variable
69 GYP_DEFINES = "target_arch=" + arch
70 GYP_DEFINES += " v8_target_arch=" + arch
71 GYP_DEFINES += " android_target_arch=" + arch
[all...]
/third_party/ltp/include/lapi/syscalls/
H A Dregen.sh20 * change your arch specific .in file instead *
41 "syscall(%d) " SNR " not supported on your arch", NR); \\
46 "syscall(%d) " SNR " not supported on your arch", NR); \\
67 for arch in $(cat "${srcdir}/order") ; do
69 echo "Generating data for arch $arch ... "
73 case ${arch} in
80 *) echo "#ifdef __${arch}__" ;;
92 done < "${srcdir}/${arch}.in"
95 ) >> "${output_pid}.${arch}"
[all...]
/third_party/node/deps/v8/tools/dev/
H A Dgm.py13 gm.py [<arch>].[<mode>[-<suffix>]].[<target>] [testname...] [--flag]
62 # These can be suffixed to any <arch>.<mode> combo, or used standalone,
63 # or used as global modifiers (affecting all <arch>.<mode> combos).
92 HELP = """<arch> can be any of: %(arches)s
254 def GetPath(arch, mode):
255 subdir = "%s.%s" % (arch, mode)
270 arch,
276 self.arch = arch
290 if self.arch
[all...]
/third_party/mesa3d/.gitlab-ci/container/
H A Dbuild-vkd3d-proton.sh12 local arch="$1"
20 --bindir "x${arch}" \
21 --libdir "x${arch}" \
22 "$VKD3D_PROTON_BUILD_DIR/build.${arch}"
24 ninja -C "$VKD3D_PROTON_BUILD_DIR/build.${arch}" install
26 install -D -m755 -t "${VKD3D_PROTON_DST_DIR}/x${arch}/bin" "$VKD3D_PROTON_BUILD_DIR/build.${arch}/tests/d3d12"
/third_party/node/tools/gyp/pylib/gyp/
H A Dwin_tool.py79 def _GetEnv(self, arch):
84 pairs = open(arch).read()[:-2].split("\0")
116 def ExecLinkWrapper(self, arch, use_separate_mspdbsrv, *args):
121 env = self._GetEnv(arch)
154 arch,
178 "arch": arch,
190 "%(python)s gyp-win-tool manifest-wrapper %(arch)s %(mt)s -nologo "
195 "%(python)s gyp-win-tool manifest-to-rc %(arch)s %(out)s.manifest"
199 "%(python)s gyp-win-tool rc-wrapper %(arch)
[all...]
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/
H A Dwin_tool.py79 def _GetEnv(self, arch):
84 pairs = open(arch).read()[:-2].split("\0")
116 def ExecLinkWrapper(self, arch, use_separate_mspdbsrv, *args):
121 env = self._GetEnv(arch)
154 arch,
178 "arch": arch,
190 "%(python)s gyp-win-tool manifest-wrapper %(arch)s %(mt)s -nologo "
195 "%(python)s gyp-win-tool manifest-to-rc %(arch)s %(out)s.manifest"
199 "%(python)s gyp-win-tool rc-wrapper %(arch)
[all...]
/third_party/rust/crates/rustix/src/backend/linux_raw/arch/
H A Dmod.rs60 $crate::backend::arch::choose::syscall0($crate::backend::reg::nr(
66 $crate::backend::arch::choose::syscall1(
73 $crate::backend::arch::choose::syscall2(
81 $crate::backend::arch::choose::syscall3(
90 $crate::backend::arch::choose::syscall4(
100 $crate::backend::arch::choose::syscall5(
111 $crate::backend::arch::choose::syscall6(
123 $crate::backend::arch::choose::syscall7(
138 $crate::backend::arch::choose::syscall0_readonly($crate::backend::reg::nr(
144 $crate::backend::arch
[all...]
/third_party/node/test/testpy/
H A D__init__.py40 def __init__(self, path, file, arch, mode, context, config, additional=None):
41 super(SimpleTestCase, self).__init__(context, path, arch, mode)
44 self.arch = arch
59 result = [self.config.context.GetVm(self.arch, self.mode)]
107 def ListTests(self, current_path, path, arch, mode):
114 result.append(SimpleTestCase(test_name, file_path, arch, mode,
126 def ListTests(self, current_path, path, arch, mode):
128 current_path, path, arch, mode)
149 def ListTests(self, current_path, path, arch, mod
[all...]
/third_party/node/deps/openssl/config/
H A Dgenerate_gypi.pl16 # with ../openssl/Configure options arch
24 my $arch = shift @ARGV;
40 our $arch_dir = "../config/archs/$arch";
43 my $is_win = ($arch =~/^VC-WIN/);
47 my $makefile = $is_win ? "../config/Makefile_$arch": "Makefile";
48 # Generate arch dependent header files with Makefile
52 my $fips_ld = ($arch =~ m/linux/ ? "providers/fips.ld" : "");
56 # Copy and move all arch dependent header files into config/archs
103 my $linker_script_dir = "<(PRODUCT_DIR)/../../deps/openssl/config/archs/$arch/$asm/providers";
141 if ($arch e
[all...]
/third_party/rust/crates/memchr/
H A Dbuild.rs21 let arch = env::var("CARGO_CFG_TARGET_ARCH").unwrap(); in enable_simd_optimizations()
22 match &arch[..] { in enable_simd_optimizations()
61 let arch = match env::var("CARGO_CFG_TARGET_ARCH") { in enable_libc()
63 Ok(arch) => arch, in enable_libc()
69 if NO_ARCH.contains(&&*arch) || NO_ENV.contains(&&*env) { in enable_libc()
/third_party/mesa3d/src/gallium/drivers/panfrost/
H A Dpan_screen.c105 bool has_mrt = (dev->arch >= 5); in panfrost_get_param()
202 return dev->arch >= 6 ? 320 : 310; in panfrost_get_param()
242 return dev->arch >= 6; in panfrost_get_param()
292 return dev->arch <= 5; in panfrost_get_param()
298 return dev->arch <= 7; in panfrost_get_param()
328 if (dev->arch <= 6) { in panfrost_get_param()
333 if (dev->arch >= 9) { in panfrost_get_param()
378 (dev->arch <= 5); in panfrost_get_shader_param()
416 return dev->arch >= 6; in panfrost_get_shader_param()
439 return dev->arch > in panfrost_get_shader_param()
[all...]
/third_party/gn/src/gn/
H A Dargs.cc352 const char* arch = nullptr;
358 arch = kX86;
360 arch = kX64;
362 arch = kArm64;
364 arch = kArm;
366 arch = kMips;
368 arch = kMips64;
370 arch = kS390X;
375 arch = kPPC64;
377 arch
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/scripts/
H A Dupdate.py174 for arch, defs in LLVM_TARGETS:
176 targets.add(arch)
247 ] + [path.join('lib', 'Target', arch) for arch, defs in LLVM_TARGETS]
268 for arch, defs in LLVM_TARGETS:
269 conds[arch] = ' || '.join('defined(' + v + ')' for v in defs)
294 arch = match.group(1)
295 print('#if ' + conds[arch], file=dst_file)
304 arch = match.group(3)
306 if arch
[all...]
/third_party/vk-gl-cts/scripts/build/
H A Dconfig.py130 def __init__(self, version, arch):
137 if arch == self.ARCH_64BIT:
139 elif arch == self.ARCH_32BIT:
142 if arch == self.ARCH_64BIT:
147 self.arch = arch
164 def registryKeyAvailable (root, arch, name):
166 key = _winreg.OpenKey(root, name, 0, _winreg.KEY_READ | arch)
175 if nativeArch == self.ARCH_32BIT and self.arch == self.ARCH_64BIT:
178 arch
[all...]
/third_party/vk-gl-cts/scripts/ctsbuild/
H A Dconfig.py130 def __init__(self, version, arch):
137 if arch == self.ARCH_64BIT:
139 elif arch == self.ARCH_32BIT:
142 if arch == self.ARCH_64BIT:
147 self.arch = arch
164 def registryKeyAvailable (root, arch, name):
166 key = _winreg.OpenKey(root, name, 0, _winreg.KEY_READ | arch)
175 if nativeArch == self.ARCH_32BIT and self.arch == self.ARCH_64BIT:
178 arch
[all...]
/third_party/python/PCbuild/
H A Dprepare_ssl.py115 def prep(arch):
118 if arch == "x86":
122 elif arch == "amd64":
127 raise ValueError('Unrecognized platform: %s' % arch)
160 arch = sys.argv[2] if len(sys.argv) >= 3 else None
194 if arch:
195 prep(arch)
197 for arch in ['amd64', 'x86']:
198 prep(arch)
/third_party/ltp/tools/sparse/sparse-src/
H A Dcgcc253 ' --arch=i386' .
257 ' --arch=sparc' .
261 ' --arch=sparc64' .
264 return (' --arch=x86_64' .
267 return (' --arch=ppc' .
271 ' --arch=ppc64' .
279 ' --arch=s390x' .
282 return (' --arch=riscv32' .
285 return (' --arch=riscv64' .
288 return (' --arch
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/TextAPI/MachO/
H A DArchitectureSet.cpp42 for (auto arch : *this) { in operator std::string()
43 result.append(getArchitectureName(arch)); in operator std::string()
53 for (auto arch : *this) { in operator std::vector()
54 if (arch == AK_unknown) in operator std::vector()
56 archs.emplace_back(arch); in operator std::vector()
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/packaging/
H A Dtags.py341 def _mac_arch(arch: str, is_32bit: bool = _32_BIT_INTERPRETER) -> str:
343 return arch
345 if arch.startswith("ppc"):
384 version: Optional[MacVersion] = None, arch: Optional[str] = None
390 generate platform tags for. The `arch` parameter is the CPU architecture to
415 if arch is None:
416 arch = _mac_arch(cpu_arch)
418 arch = arch
425 binary_formats = _mac_binary_formats(compat_version, arch)
[all...]

Completed in 10 milliseconds

12345678910>>...14