/third_party/python/Lib/ |
D | _osx_support.py | 538 archs = re.findall(r'-arch\s+(\S+)', cflags) 539 archs = tuple(sorted(set(archs))) 541 if len(archs) == 1: 542 machine = archs[0] 543 elif archs == ('arm64', 'x86_64'): 545 elif archs == ('i386', 'ppc'): 547 elif archs == ('i386', 'x86_64'): 549 elif archs == ('i386', 'ppc', 'x86_64'): 551 elif archs == ('ppc64', 'x86_64'): 553 elif archs == ('i386', 'ppc', 'ppc64', 'x86_64'): [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/TextAPI/MachO/ |
D | ArchitectureSet.cpp | 52 std::vector<Architecture> archs; in operator std::vector<Architecture>() local 56 archs.emplace_back(arch); in operator std::vector<Architecture>() 58 return archs; in operator std::vector<Architecture>()
|
/third_party/flutter/flutter/packages/flutter_tools/bin/ |
D | xcode_backend.sh | 170 local archs="${ARCHS// /,}" 171 if [[ $archs =~ .*i386.* || $archs =~ .*x86_64.* ]]; then 189 --ios-arch="${archs}" \ 233 read -r -a archs <<< "$ARCHS" 301 read -r -a archs <<< "$@"
|
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/ |
D | xcode_emulation.py | 35 def XcodeArchsVariableMapping(archs, archs_including_64_bit=None): argument 38 mapping = {'$(ARCHS_STANDARD)': archs} 67 def _ExpandArchs(self, archs, sdkroot): argument 71 for arch in archs: 85 def ActiveArchs(self, archs, valid_archs, sdkroot): argument 89 expanded_archs = self._ExpandArchs(archs or self._default, sdkroot or '') 555 archs = [arch] 558 archs = self.GetActiveArchs(self.configname) 559 if len(archs) != 1: 562 archs = ['i386'] [all …]
|
D | msvs_emulation.py | 1030 archs = ('x86', 'x64') 1033 for arch in archs: 1038 for arch in archs:
|
/third_party/node/tools/gyp/pylib/gyp/ |
D | xcode_emulation.py | 34 def XcodeArchsVariableMapping(archs, archs_including_64_bit=None): argument 37 mapping = {"$(ARCHS_STANDARD)": archs} 67 def _ExpandArchs(self, archs, sdkroot): argument 71 for arch in archs: 85 def ActiveArchs(self, archs, valid_archs, sdkroot): argument 89 expanded_archs = self._ExpandArchs(archs or self._default, sdkroot or "") 662 archs = [arch] 665 archs = self.GetActiveArchs(self.configname) 666 if len(archs) != 1: 669 archs = ["i386"] [all …]
|
D | msvs_emulation.py | 1179 archs = ("x86", "x64") 1182 for arch in archs: 1187 for arch in archs:
|
/third_party/mindspore/mindspore/lite/src/registry/ |
D | register_kernel_impl.cc | 156 auto archs = providers.second; in GetCustomKernelCreator() local 157 …auto archs_iter = std::find_if(archs.begin(), archs.end(), [custom_type, data_type_index](auto &&i… in GetCustomKernelCreator() 160 if (archs_iter != archs.end()) { in GetCustomKernelCreator()
|
/third_party/node/doc/guides/ |
D | maintaining-openssl.md | 74 `deps/openssl/config/archs/`: 104 % git add deps/openssl/config/archs 114 deps: update archs files for OpenSSL-1.1.0 119 $ git add deps/openssl/config/archs
|
/third_party/mindspore/mindspore/core/mindrt/src/thread/ |
D | core_affinity.cc | 138 std::vector<Arch> archs; in SetArch() local 139 archs.resize(core_num); in SetArch() 163 archs[count - 1] = arch; in SetArch() 175 (*freq_set)[i].arch = archs[i]; in SetArch()
|
/third_party/gn/examples/ios/build/config/ios/ |
D | deployment_target.gni | 7 # needs to be specified to a version < 11.0 if targetting 32-bit archs.
|
/third_party/node/deps/npm/node_modules/node-gyp/lib/ |
D | install.js | 302 var archs = ['ia32', 'x64', 'arm64'] 303 var async = archs.length 304 archs.forEach(function (arch) {
|
/third_party/ltp/tools/sparse/sparse-src/ |
D | target.c | 114 } archs[] = { in target_parse() local 142 for (p = &archs[0]; p->name; p++) { in target_parse()
|
/third_party/node/deps/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/ |
D | ninja.py | 402 self.archs = self.xcode_settings.GetActiveArchs(config_name) 403 if len(self.archs) > 1: 409 for arch in self.archs) 453 if self.flavor == 'mac' and len(self.archs) > 1: 456 for arch in self.archs: 476 if self.flavor != 'mac' or len(self.archs) == 1: 481 elif self.flavor == 'mac' and len(self.archs) > 1: 878 if self.flavor != 'mac' or len(self.archs) == 1: 886 for arch in self.archs) 1067 if self.flavor != 'mac' or len(self.archs) == 1: [all …]
|
/third_party/flutter/engine/flutter/tools/fuchsia/ |
D | build_fuchsia_artifacts.py | 237 archs = ['x64', 'arm64'] 241 for arch in archs:
|
/third_party/musl/ |
D | WHATSNEW | 26 in preparation for porting to x86_64 and other archs. 143 is not readable, or on archs (not yet supported) that forbid 658 - ioperm/iopl syscall wrappers on archs that support these operations 678 - only use expensive -ffloat-store cflag on archs/compilers that need it 778 - broken sysvipc *ctl functions on 64-bit archs 779 - broken shmdt on some archs 916 - epoll struct alignment wrong on non-x86[_64] archs 933 - math optimizations for archs with extended precision (i386) 968 - PIE support on all supported archs 969 - named sub-archs for endian and float ABI variants [all …]
|
/third_party/node/tools/gyp/pylib/gyp/generator/ |
D | ninja.py | 419 self.archs = self.xcode_settings.GetActiveArchs(config_name) 420 if len(self.archs) > 1: 433 for arch in self.archs 488 if self.flavor == "mac" and len(self.archs) > 1: 491 for arch in self.archs: 524 if self.flavor != "mac" or len(self.archs) == 1: 531 elif self.flavor == "mac" and len(self.archs) > 1: 1039 if self.flavor != "mac" or len(self.archs) == 1: 1064 for arch in self.archs 1319 if self.flavor != "mac" or len(self.archs) == 1: [all …]
|
/third_party/flutter/skia/third_party/externals/sdl/premake/patches/ |
D | iOS.patch | 36 _p(4,'ARCHS = "%s";', archs[cfg.platform])
|
/third_party/python/Mac/ |
D | README.rst | 56 * ``--with-universal-archs=VALUE`` 65 values for ``--with-universal-archs``: 67 ``--enable-universalsdk --with-universal-archs=intel-64`` 120 using the configure option ``--with-universal-archs=VALUE``. The following 145 following combinations of SDKs and universal-archs flavors are available:
|
/third_party/python/Mac/BuildScript/ |
D | README.rst | 74 --universal-archs=universal2 \ 103 --universal-archs=intel-64 \
|
/third_party/lwip/doc/ |
D | contrib.txt | 43 is to NOT touch archs you can't test and let maintainers take care of them.
|
/third_party/flutter/flutter/packages/flutter_tools/test/general.shard/build_system/targets/ |
D | dart_test.dart | 214 …test('aot_assembly_profile will lipo binaries together when multiple archs are requested', () => t… 291 …test('aot_assembly_profile will lipo binaries together when multiple archs are requested', () => t…
|
/third_party/flutter/flutter/packages/flutter_tools/lib/src/build_system/targets/ |
D | ios.dart | 56 // If we're building multiple iOS archs the binaries need to be lipo'd
|
/third_party/musl/libc-test/ |
D | README | 28 - the test system should run on all archs and libcs
|
/third_party/ltp/tools/sparse/sparse-src/Documentation/ |
D | test-suite.rst | 34 matches or not one of the archs given in the pattern.
|