/external/llvm-project/clang/test/Driver/ |
D | darwin-version.c | 1 // RUN: %clang -target armv6-apple-darwin9 -c %s -### 2>&1 | \ 2 // RUN: FileCheck --check-prefix=CHECK-VERSION-OSX %s 3 // CHECK-VERSION-OSX: "armv6k-apple-macosx10.5.0" 4 // RUN: %clang -target armv6-apple-darwin9 -miphoneos-version-min=2.0 -c %s -### 2>&1 | \ 5 // RUN: FileCheck --check-prefix=CHECK-VERSION-IOS2 %s 6 // CHECK-VERSION-IOS2: "armv6k-apple-ios2.0.0" 7 // RUN: %clang -target armv6-apple-darwin9 -miphoneos-version-min=2.2 -c %s -### 2>&1 | \ 8 // RUN: FileCheck --check-prefix=CHECK-VERSION-IOS22 %s 9 // CHECK-VERSION-IOS22: "armv6k-apple-ios2.2.0" 10 // RUN: %clang -target armv6-apple-darwin9 -miphoneos-version-min=3.0 -c %s -### 2>&1 | \ [all …]
|
/external/libffi/ |
D | generate-darwin-source-and-headers.py | 3 import os 16 triple = 'i386-apple-darwin11' 17 version_min = '-miphoneos-version-min=7.0' 29 triple = 'x86_64-apple-darwin13' 30 version_min = '-miphoneos-version-min=7.0' 42 triple = 'arm-apple-darwin11' 43 version_min = '-miphoneos-version-min=7.0' 55 triple = 'aarch64-apple-darwin13' 56 version_min = '-miphoneos-version-min=7.0' 68 triple = 'i386-apple-darwin10' [all …]
|
/external/python/cpython2/Modules/_ctypes/libffi/ |
D | generate-darwin-source-and-headers.py | 3 import os 16 triple = 'i386-apple-darwin11' 17 version_min = '-miphoneos-version-min=5.1.1' 29 triple = 'x86_64-apple-darwin13' 30 version_min = '-miphoneos-version-min=7.0' 42 triple = 'arm-apple-darwin11' 43 version_min = '-miphoneos-version-min=5.1.1' 55 triple = 'aarch64-apple-darwin13' 56 version_min = '-miphoneos-version-min=7.0' 68 triple = 'i386-apple-darwin10' [all …]
|
/external/llvm-project/lldb/packages/Python/lldbsuite/test/builders/ |
D | darwin.py | 2 import os 9 REMOTE_PLATFORM_NAME_RE = re.compile(r"^remote-(.+)$") 10 SIMULATOR_PLATFORM_RE = re.compile(r"^(.+)-simulator$") 39 # Construct the os component. 40 os, env = get_os_and_env() 41 if os is None or env is None: 44 # Get the SDK from the os and env. 45 sdk = lldbutil.get_xcode_sdk(os, env) 49 # Get the version from the SDK. 50 version = lldbutil.get_xcode_sdk_version(sdk) [all …]
|
/external/python/cpython2/Lib/ |
D | platform.py | 3 """ This module tries to retrieve as much platform-identifying data as 11 # This module is maintained by Marc-Andre Lemburg <mal@egenix.com>. 19 # * support for MS-DOS (PythonDX ?) 23 # Many thanks to all those who helped adding platform-specific 38 # 1.0.8 - changed Windows support to read version from kernel32.dll 39 # 1.0.7 - added DEV_NULL 40 # 1.0.6 - added linux_distribution() 41 # 1.0.5 - fixed Java support to allow running the module on Jython 42 # 1.0.4 - added IronPython support 43 # 1.0.3 - added normalization of Windows system name [all …]
|
/external/llvm-project/lld/test/mach-o/ |
D | version-min-load-command-object.yaml | 1 # RUN: ld64.lld -arch x86_64 %s -o %t -r -macosx_version_min 10.8 && llvm-objdump --private-headers… 2 # RUN: ld64.lld -arch x86_64 %s -o %t -r && llvm-objdump --private-headers %t | FileCheck %s 3 …ld64.lld -arch x86_64 %s -o %t -r %p/Inputs/no-version-min-load-command-object.yaml && llvm-objdum… 5 # If we are emitting an object file, then we only emit a min version load command if the source obj… 6 # version(s) and either known platforms or contain min version load commands themselves. 8 --- !mach-o 10 file-type: MH_OBJECT 12 min-os-version-kind: LC_VERSION_MIN_MACOSX 13 min-os-version: 10.8 15 - segment: __TEXT [all …]
|
/external/freetype/docs/ |
D | INSTALL.MAC | 2 Mac OS X. 10 Starting with Mac OS X 10.5, gcc defaults the deployment target to 11 10.5. In previous versions of Mac OS X, this defaulted to 10.1. If 14 OS X, then you must either set the MACOSX_DEPLOYMENT_TARGET 15 environment variable or pass `-mmacosx-version-min' to gcc. You 16 should specify the oldest version of Mac OS you want the code to run 25 Alternatively, you could pass `-mmacosx-version-min=10.2' to gcc. 27 Here the number 10.2 is the lowest version that the built binaries can 28 run on. In the above cases, the built binaries will run on Mac OS X 30 have to set lower version, e.g., 10.0. [all …]
|
/external/llvm-project/clang/lib/Basic/Targets/ |
D | OSTargets.cpp | 1 //===--- OSTargets.cpp - Implement OS target feature support --------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 9 // This file implements OS specific TargetInfo types. 10 //===----------------------------------------------------------------------===// 50 // Get the platform type and version number from the triple. in getDarwinDefines() 51 unsigned Maj, Min, Rev; in getDarwinDefines() local 53 Triple.getMacOSXVersion(Maj, Min, Rev); in getDarwinDefines() 56 Triple.getOSVersion(Maj, Min, Rev); in getDarwinDefines() 60 // If -target arch-pc-win32-macho option specified, we're in getDarwinDefines() [all …]
|
/external/llvm-project/compiler-rt/cmake/ |
D | builtin-config-ix.cmake | 8 builtin_check_c_compiler_flag(-fPIC COMPILER_RT_HAS_FPIC_FLAG) 9 builtin_check_c_compiler_flag(-fPIE COMPILER_RT_HAS_FPIE_FLAG) 10 builtin_check_c_compiler_flag(-fno-builtin COMPILER_RT_HAS_FNO_BUILTIN_FLAG) 11 builtin_check_c_compiler_flag(-std=c11 COMPILER_RT_HAS_STD_C11_FLAG) 12 builtin_check_c_compiler_flag(-fvisibility=hidden COMPILER_RT_HAS_VISIBILITY_HIDDEN_FLAG) 13 builtin_check_c_compiler_flag(-fomit-frame-pointer COMPILER_RT_HAS_OMIT_FRAME_POINTER_FLAG) 14 builtin_check_c_compiler_flag(-ffreestanding COMPILER_RT_HAS_FREESTANDING_FLAG) 15 builtin_check_c_compiler_flag(-fxray-instrument COMPILER_RT_HAS_XRAY_COMPILER_FLAG) 35 asm(\".arch armv8-a+lse\"); 82 function(sdk_has_arch_support sdk_path os arch has_support) [all …]
|
/external/rust/crates/grpcio-sys/grpc/third_party/abseil-cpp/absl/random/ |
D | log_uniform_int_distribution.h | 3 // Licensed under the Apache License, Version 2.0 (the "License"); 7 // https://www.apache.org/licenses/LICENSE-2.0 37 // Returns a random variate R in range [min, max] such that 38 // floor(log(R-min, base)) is uniformly distributed. 40 // boundary sets [0, 1, base, base * base, ... min(base*n, max)] 56 result_type min = 0, 59 : min_(min), in min_() argument 62 range_(static_cast<unsigned_type>(max_) - in min_() 71 log_range_ = (std::min)(random_internal::LeadingSetBit(range()), in min_() 81 // Thus a result which should equal K may equal K +/- epsilon, in min_() [all …]
|
/external/webrtc/third_party/abseil-cpp/absl/random/ |
D | log_uniform_int_distribution.h | 3 // Licensed under the Apache License, Version 2.0 (the "License"); 7 // https://www.apache.org/licenses/LICENSE-2.0 37 // Returns a random variate R in range [min, max] such that 38 // floor(log(R-min, base)) is uniformly distributed. 40 // boundary sets [0, 1, base, base * base, ... min(base*n, max)] 56 result_type min = 0, 59 : min_(min), in min_() argument 62 range_(static_cast<unsigned_type>(max_) - in min_() 71 log_range_ = (std::min)(random_internal::LeadingSetBit(range()), in min_() 81 // Thus a result which should equal K may equal K +/- epsilon, in min_() [all …]
|
/external/openscreen/third_party/abseil/src/absl/random/ |
D | log_uniform_int_distribution.h | 3 // Licensed under the Apache License, Version 2.0 (the "License"); 7 // https://www.apache.org/licenses/LICENSE-2.0 37 // Returns a random variate R in range [min, max] such that 38 // floor(log(R-min, base)) is uniformly distributed. 40 // boundary sets [0, 1, base, base * base, ... min(base*n, max)] 56 result_type min = 0, 59 : min_(min), in min_() argument 62 range_(static_cast<unsigned_type>(max_) - in min_() 71 log_range_ = (std::min)(random_internal::LeadingSetBit(range()), in min_() 81 // Thus a result which should equal K may equal K +/- epsilon, in min_() [all …]
|
/external/libtextclassifier/abseil-cpp/absl/random/ |
D | log_uniform_int_distribution.h | 3 // Licensed under the Apache License, Version 2.0 (the "License"); 7 // https://www.apache.org/licenses/LICENSE-2.0 37 // Returns a random variate R in range [min, max] such that 38 // floor(log(R-min, base)) is uniformly distributed. 40 // boundary sets [0, 1, base, base * base, ... min(base*n, max)] 56 result_type min = 0, 59 : min_(min), in min_() argument 62 range_(static_cast<unsigned_type>(max_) - in min_() 71 log_range_ = (std::min)(random_internal::LeadingSetBit(range()), in min_() 81 // Thus a result which should equal K may equal K +/- epsilon, in min_() [all …]
|
/external/abseil-cpp/absl/random/ |
D | log_uniform_int_distribution.h | 3 // Licensed under the Apache License, Version 2.0 (the "License"); 7 // https://www.apache.org/licenses/LICENSE-2.0 37 // Returns a random variate R in range [min, max] such that 38 // floor(log(R-min, base)) is uniformly distributed. 40 // boundary sets [0, 1, base, base * base, ... min(base*n, max)] 56 result_type min = 0, 59 : min_(min), in min_() argument 62 range_(static_cast<unsigned_type>(max_) - in min_() 71 log_range_ = (std::min)(random_internal::LeadingSetBit(range()), in min_() 81 // Thus a result which should equal K may equal K +/- epsilon, in min_() [all …]
|
/external/autotest/client/site_tests/power_AudioDetector/ |
D | power_AudioDetector.py | 1 # Copyright (c) 2012 The Chromium OS Authors. All rights reserved. 2 # Use of this source code is governed by a BSD-style license that can be 6 import os 21 version = 1 variable in power_AudioDetector 35 audio_loop_time_sec = min(10, run_time_sec / 10 + 0.5) 40 # Start a subprocess that uses dbus-monitor to listen for suspend 43 os.unlink(dbus_log_name) 44 dbus_log = os.fdopen(dbus_log_fd) 46 'dbus-monitor --monitor --system ' + 58 dim_ms = min(10000, gap_ms) [all …]
|
/external/sfntly/cpp/src/sfntly/data/ |
D | byte_array.cc | 4 * Licensed under the Apache License, Version 2.0 (the "License"); 8 * http://www.apache.org/licenses/LICENSE-2.0 30 filled_length_ = std::min<int32_t>(filled_length, storage_length_); in SetFilledLength() 36 return -1; in Get() 42 return Get(index, &((*b)[0]), 0, b->size()); in Get() 56 int32_t actual_length = std::min<int32_t>(length, filled_length_ - index); in Get() 75 return Put(index, &((*b)[0]), 0, b->size()); in Put() 91 int32_t actual_length = std::min<int32_t>(length, Size() - index); in Put() 108 if (array->Size() < dst_offset + length) { // insufficient space in CopyTo() 109 return -1; in CopyTo() [all …]
|
/external/iptables/extensions/ |
D | libxt_osf.c | 7 * the Free Software Foundation; either version 2 of the License, or 8 * (at your option) any later version. 17 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. 21 * xtables interface for OS fingerprint matching module. 38 printf("OS fingerprint match options:\n" in osf_help() 39 "[!] --genre string Match a OS genre by passive fingerprinting.\n" in osf_help() 40 "--ttl level Use some TTL check extensions to determine OS:\n" in osf_help() 44 "--log level Log determined genres into dmesg even if they do not match desired one:\n" in osf_help() 57 .flags = XTOPT_PUT, XTOPT_POINTER(s, ttl), .min = 0, .max = 2}, 59 .flags = XTOPT_PUT, XTOPT_POINTER(s, loglevel), .min = 0, .max = 2}, [all …]
|
/external/python/pybind11/pybind11/ |
D | setup_helpers.py | 1 # -*- coding: utf-8 -*- 43 import os 65 STD_TMPL = "/std:c++{}" if WIN else "-std=c++{}" 78 recommended flags when you init the extension and assumes C++ sources - you 85 * ``visibility=hidden`` and ``-g0`` on Unix 98 Warning: do not use property-based access to the instance on Python 2 - 99 this is an ugly old-style class due to Distutils. 103 # ``extra_compile_args=["-g"]``. 121 # Can't use super here because distutils has old-style classes in 127 # If using setup_requires, this fails the first time - that's okay [all …]
|
/external/skqp/infra/bots/recipe_modules/flavor/examples/full.expected/ |
D | cpu_scale_failed_golo.json | 5 "-u", 6 "import os\nprint os.environ.get('SWARMING_BOT_ID', '')\n" 11 "@@@STEP_LOG_LINE@python.inline@import os@@@", 12 "@@@STEP_LOG_LINE@python.inline@print os.environ.get('SWARMING_BOT_ID', '')@@@", 18 "/opt/infra-android/tools/adb", 25 "ADB_VENDOR_KEYS": "/home/chrome-bot/.android/chrome_infrastructure_adbkey", 35 "-u", 37 "--json-output", 48 "-u", 50 "--json-output", [all …]
|
D | cpu_scale_failed.json | 5 "-u", 6 "import os\nprint os.environ.get('SWARMING_BOT_ID', '')\n" 11 "@@@STEP_LOG_LINE@python.inline@import os@@@", 12 "@@@STEP_LOG_LINE@python.inline@print os.environ.get('SWARMING_BOT_ID', '')@@@", 25 "ADB_VENDOR_KEYS": "/home/chrome-bot/.android/adbkey", 35 "-u", 37 "--json-output", 48 "-u", 50 "--json-output", 52 "ensure-directory", [all …]
|
/external/llvm-project/lldb/test/API/macosx/simulator/ |
D | TestSimulatorPlatform.py | 18 ['otool', '-l', self.getBuildArtifact()] 19 ).decode("utf-8") 46 def run_with(self, arch, os, vers, env, expected_load_command): argument 48 triple = '-'.join([arch, 'apple', os + vers] + env_list) 49 sdk = lldbutil.get_xcode_sdk(os, env) 55 version_min = '-m{}-simulator-version-min={}'.format(os, vers) 56 elif os == 'macosx': 57 version_min = '-m{}-version-min={}'.format(os, vers) 64 'ARCH_CFLAGS': '-target {} {}'.format(triple, version_min), 70 self.expect("log enable gdb-remote packets -f "+log) [all …]
|
/external/libiio/src/ |
D | Distribution.xml.cmakein | 1 <?xml version="1.0" encoding="utf-8" standalone="yes" ?> 2 <installer-gui-script minSpecVersion="2" > 5 <allowed-os-versions> 6 <os-version min="10.6.6" /> 7 </allowed-os-versions> 8 <license file="@CMAKE_CURRENT_SOURCE_DIR@/COPYING.txt" mime-type="text/plain" /> 9 <product id="libiio" version="@VERSION@" /> 10 <choices-outline> 14 </choices-outline> 17 <pkg-ref id="libiio" /> [all …]
|
/external/deqp/scripts/android/ |
D | build_apk.py | 1 # -*- coding: utf-8 -*- 3 #------------------------------------------------------------------------- 5 # -------------------------------------- 9 # Licensed under the Apache License, Version 2.0 (the "License"); 13 # http://www.apache.org/licenses/LICENSE-2.0 21 #------------------------------------------------------------------------- 23 # \todo [2017-04-10 pyry] 25 # * cmake -E copy_directory doesn't copy timestamps which will cause 26 # assets to be always re-packaged 29 import os [all …]
|
/external/compiler-rt/cmake/ |
D | config-ix.cmake | 15 check_cxx_compiler_flag(-fPIC COMPILER_RT_HAS_FPIC_FLAG) 16 check_cxx_compiler_flag(-fPIE COMPILER_RT_HAS_FPIE_FLAG) 17 check_cxx_compiler_flag(-fno-builtin COMPILER_RT_HAS_FNO_BUILTIN_FLAG) 18 check_cxx_compiler_flag(-fno-exceptions COMPILER_RT_HAS_FNO_EXCEPTIONS_FLAG) 19 check_cxx_compiler_flag(-fomit-frame-pointer COMPILER_RT_HAS_FOMIT_FRAME_POINTER_FLAG) 20 check_cxx_compiler_flag(-funwind-tables COMPILER_RT_HAS_FUNWIND_TABLES_FLAG) 21 check_cxx_compiler_flag(-fno-stack-protector COMPILER_RT_HAS_FNO_STACK_PROTECTOR_FLAG) 22 check_cxx_compiler_flag(-fno-sanitize=safe-stack COMPILER_RT_HAS_FNO_SANITIZE_SAFE_STACK_FLAG) 23 check_cxx_compiler_flag(-fvisibility=hidden COMPILER_RT_HAS_FVISIBILITY_HIDDEN_FLAG) 24 check_cxx_compiler_flag(-frtti COMPILER_RT_HAS_FRTTI_FLAG) [all …]
|
/external/llvm-project/llvm/tools/llvm-xray/ |
D | xray-graph.cpp | 1 //===-- xray-graph.cpp: XRay Function Call Graph Renderer -----------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 12 //===----------------------------------------------------------------------===// 14 #include "xray-graph.h" 15 #include "xray-registry.h" 23 // Setup llvm-xray graph subcommand and its options. 24 static cl::SubCommand GraphC("graph", "Generate function-call graph"); 30 GraphKeepGoing("keep-going", cl::desc("Keep going on errors encountered"), 33 cl::desc("Alias for -keep-going")); [all …]
|