/freebsd/tools/tools/notescheck/ |
H A D | notescheck.py | 23 # This special platform string is used for managing MI options. 30 # Format the contents of a set into a sorted, comma-separated string 43 for item in l[1:-1]: 45 s = "%s, and %s" % (s, l[-1]) 53 # config(8) treats the names as case-insensitive. 55 def __init__(self, name): argument 56 self.name = name 67 (self.name, self.type, type, location)) 70 def add_define(self, platform): argument 71 self.defines.add(platform) [all …]
|
/freebsd/crypto/openssl/Configurations/platform/ |
H A D | Unix.pm | 1 package platform::Unix; 9 require platform::BASE; 10 @ISA = qw(platform::BASE); 16 sub dsoext { $target{dso_extension} || platform->shlibextsimple() 30 # Other extra that aren't defined in platform::BASE 45 # Non-installed libraries are *always* static, and their names remain 47 my $in_libname = platform::BASE->staticname($_[1]); 49 if $unified_info{attributes}->{libraries}->{$_[1]}->{noinst}; 51 # We currently return the same name anyway... but we might choose to 53 return platform::BASE->staticname($_[1]); [all …]
|
H A D | mingw.pm | 1 package platform::mingw; 9 require platform::Unix; 10 @ISA = qw(platform::Unix); 21 # Other extra that aren't defined in platform::BASE 33 return platform::BASE::__concat(platform::BASE->sharedname($_[1]), 34 "-", 35 $_[0]->shlib_version_as_filename(), 37 ? "-x64" : "")); 41 # library name. However, there is a static import library. 47 return platform::BASE::__concat(platform::BASE->sharedname($_[1]), [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/TextAPI/ |
H A D | Platform.cpp | 1 //===- llvm/TextAPI/Platform.cpp - Platform ---------------------*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 9 // Implementations of Platform Helper functions. 11 //===----------------------------------------------------------------------===// 13 #include "llvm/TextAPI/Platform.h" 21 PlatformType mapToPlatformType(PlatformType Platform, bool WantSim) { in mapToPlatformType() argument 22 switch (Platform) { in mapToPlatformType() 24 return Platform; in mapToPlatformType() 69 StringRef getPlatformName(PlatformType Platform) { in getPlatformName() argument [all …]
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/ |
H A D | Platform.h | 1 //===-- Platform.h ----------------------------------------------*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 30 #include "lldb/lldb-private-forward.h" 31 #include "lldb/lldb-public.h" 63 /// \class Platform Platform.h "lldb/Target/Platform.h" 64 /// A plug-in interface definition class for debug platform that 65 /// includes many platform abilities such as: 66 /// \li getting platform information such as supported architectures, 73 /// \li attaching and possibly debugging the platform's kernel [all …]
|
/freebsd/sys/contrib/device-tree/Bindings/sound/ |
H A D | qcom,sdm845.txt | 5 - compatible: 9 "qcom,sdm845-sndcard" 10 "qcom,db845c-sndcard" 11 "lenovo,yoga-c630-sndcard" 13 - audio-routing: 22 - model: 25 Definition: The user-visible name of this sound card. 27 - aux-devs 33 using "audio-routing". 37 dailinks would be cpu/codec/platform dais. [all …]
|
H A D | qcom,apq8096.txt | 5 - compatible: 8 Definition: must be "qcom,apq8096-sndcard" 10 - audio-routing: 53 - model: 56 Definition: The user-visible name of this sound card. 58 - aux-devs 64 using "audio-routing". 68 dailinks would be cpu/codec/platform dais. 70 - link-name: 73 Definition: User friendly name for dai link [all …]
|
H A D | mt8195-mt6359.yaml | 1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 3 --- 4 $id: http://devicetree.org/schemas/sound/mt8195-mt6359.yaml# 5 $schema: http://devicetree.org/meta-schemas/core.yaml# 10 - Trevor Wu <trevor.wu@mediatek.com> 18 - mediatek,mt8195_mt6359_rt1019_rt5682 19 - mediatek,mt8195_mt6359_rt1011_rt5682 20 - mediatek,mt8195_mt6359_max98390_rt5682 24 description: User specified audio sound card name 26 mediatek,platform: [all …]
|
H A D | mt8195-mt6359-rt1019-rt5682.yaml | 1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 3 --- 4 $id: http://devicetree.org/schemas/sound/mt8195-mt6359-rt1019-rt5682.yaml# 5 $schema: http://devicetree.org/meta-schemas/core.yaml# 10 - Trevor Wu <trevor.wu@mediatek.com> 21 description: User specified audio sound card name 23 mediatek,platform: 25 description: The phandle of MT8195 ASoC platform. 27 mediatek,dptx-codec: 31 mediatek,hdmi-codec: [all …]
|
H A D | mediatek,mt8188-mt6359.yaml | 1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 3 --- 4 $id: http://devicetree.org/schemas/sound/mediatek,mt8188-mt635 [all...] |
H A D | qcom,sm8250.yaml | 1 # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 3 --- 5 $schema: http://devicetree.org/meta-schema [all...] |
/freebsd/contrib/llvm-project/lldb/include/lldb/API/ |
H A D | SBModule.h | 1 //===-- SBModule.h ----------------------------------------------*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 46 /// platform since we might be doing remote debugging. 52 /// Get accessor for the module platform file specification. 54 /// Platform file refers to the path of the module as it is known on 59 /// platform file could be something like: 60 /// '/tmp/lldb/platform-cache/remote.host.computer/usr/lib/liba.dylib' 71 /// When debugging to a remote platform by connecting to a remote 72 /// platform, the install path of the module can be set. If the [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/ |
H A D | LLJIT.h | 1 //===----- LLJIT.h -- An ORC-based JIT for compiling LLVM IR ----*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 9 // An ORC-based JIT for compiling LLVM IR. 11 //===----------------------------------------------------------------------===// 35 /// A pre-fabricated ORC JIT stack that can serve as an alternative to MCJIT. 58 /// Destruct this instance. If a multi-threaded instance, waits for all 74 /// Returns the ProcessSymbols JITDylib, which by default reflects non-JIT'd 81 /// Returns the Platform JITDylib, which will contain the ORC runtime (if 82 /// given) and any platform symbols. [all …]
|
/freebsd/contrib/llvm-project/lldb/source/Commands/ |
H A D | CommandObjectPlatform.cpp | 1 //===-- CommandObjectPlatform.cpp -----------------------------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 24 #include "lldb/Target/Platform.h" 39 return (mode_t)(-1); in ParsePermissionString() 88 if (perms == (mode_t)-1) in SetOptionValue() 145 // "platform select <platform-name>" 149 : CommandObjectParsed(interpreter, "platform select", in CommandObjectPlatformSelect() 150 "Create a platform if needed and select it as the " in CommandObjectPlatformSelect() 151 "current platform.", in CommandObjectPlatformSelect() [all …]
|
/freebsd/sys/contrib/dev/acpica/ |
H A D | acpica_prep.sh | 7 if [ ! $# -eq 1 ]; then 37 amlresrc.h platform/acenv.h platform/acenvex.h \ 38 platform/acfreebsd.h platform/acgcc.h" 43 # pre-clean 44 echo pre-clean 45 rm -rf ${wrk} ${dst} 46 mkdir -p ${wrk} 47 mkdir -p ${dst} 51 tar -x -z -f ${src} -C ${wrk} 56 find ${wrk} -name ${i} -type d -print | xargs rm -r [all …]
|
/freebsd/contrib/libarchive/libarchive/ |
H A D | archive_entry_perms.3 | 1 .\" Copyright (c) 2003-2007 Tim Kientzle 29 .Sh NAME 56 Streaming Archive Library (libarchive, -larchive) 80 .Fn archive_entry_copy_gname "struct archive_entry *a" "const char *name" 82 .Fn archive_entry_copy_gname_w "struct archive_entry *a" "const wchar_t *name" 84 .Fn archive_entry_update_gname_utf8 "struct archive_entry *a" "const char *name" 90 .Fn archive_entry_set_uname "struct archive_entry *a" "const char *name" 92 .Fn archive_entry_copy_uname "struct archive_entry *a" "const char *name" 94 .Fn archive_entry_copy_uname_w "struct archive_entry *a" "const wchar_t *name" 96 .Fn archive_entry_update_uname_utf8 "struct archive_entry *a" "const char *name" [all …]
|
/freebsd/contrib/kyua/m4/ |
H A D | uname.m4 | 13 dnl * Neither the name of Google Inc. nor the names of its contributors 32 dnl Checks for the current architecture name (aka processor type) and defines 36 AC_MSG_CHECKING([for architecture name]) 38 [Name of the system architecture (aka processor type)]) 39 if test x"${KYUA_ARCHITECTURE-unset}" = x"unset"; then 40 KYUA_ARCHITECTURE="$(uname -p)" 43 [Name of the system architecture (aka processor type)]) 50 dnl Checks for the current platform name (aka machine name) and defines 54 AC_MSG_CHECKING([for platform name]) 56 [Name of the system platform (aka machine name)]) [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
H A D | FileSystem.h | 1 //===- llvm/Support/FileSystem.h - File System OS Concept -------*- C++ -*-===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 24 //===----------------------------------------------------------------------===// 32 #include "llvm/Config/llvm-config.h" 78 /// space_info - Self explanatory. 269 /// @name Physical Operators 278 /// relative/../path => <current-directory>/relative/../path 289 /// relative/../path => <current-directory>/relative/../path 293 /// platform-specific error_code. [all …]
|
/freebsd/sys/contrib/openzfs/include/sys/ |
H A D | zvol_impl.h | 9 * or https://opensource.org/licenses/CDDL-1.0. 17 * information: Portions Copyright [yyyy] [name of copyright owner] 36 * The in-core state of each volume. 39 char zv_name[MAXNAMELEN]; /* name */ 52 uint64_t zv_hash; /* name hash */ 58 struct zvol_state_os *zv_zso; /* private platform state */ 66 #define ZVOL_HT_HEAD(hash) (&zvol_htable[(hash) & (ZVOL_HT_SIZE-1)]) 73 * platform independent functions exported to platform code 75 zvol_state_t *zvol_find_by_name_hash(const char *name, 78 uint64_t zvol_name_hash(const char *name); [all …]
|
/freebsd/contrib/llvm-project/lldb/source/Target/ |
H A D | Platform.cpp | 1 //===-- Platform.cpp ------------------------------------------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 32 #include "lldb/Target/Platform.h" 61 const char *Platform::GetHostPlatformName() { return "host"; } in GetHostPlatformName() 76 static constexpr llvm::StringLiteral g_setting_name("platform"); in GetSettingName() 82 m_collection_sp->Initialize(g_platform_properties); in PlatformProperties() 114 return m_collection_sp->SetPropertyAtIndex(ePropertyModuleCacheDirectory, in SetModuleCacheDirectory() 120 auto f_spec_opt = m_collection_sp->GetPropertyAtIndexAsOptionValueFileSpec( in SetDefaultModuleCacheDirectory() 123 f_spec_opt->SetDefaultValue(dir_spec); in SetDefaultModuleCacheDirectory() [all …]
|
/freebsd/sys/contrib/device-tree/Bindings/arm/ |
H A D | apple.yaml | 1 # SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause 3 --- 5 $schema: http://devicetree.org/meta-schemas/core.yaml# 10 - Hector Martin <marcan@marcan.st> 17 - Mac mini (M1, 2020) 18 - MacBook Pro (13-inch, M1, 2020) 19 - MacBook Air (M1, 2020) 20 - iMac (24-inch, M1, 2021) 24 - MacBook Air (M2, 2022) 25 - MacBook Pro (13-inch, M2, 2022) [all …]
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Platform/gdb-server/ |
H A D | PlatformRemoteGDBServer.cpp | 1 //===-- PlatformRemoteGDBServer.cpp ---------------------------------------===// 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 7 //===----------------------------------------------------------------------===// 35 #include "Plugins/Process/gdb-remote/ProcessGDBRemote.h" 48 // from the remote, these strings need persistent storage client-side. 53 Platform::Initialize(); in Initialize() 70 Platform::Terminate(); in Terminate() 77 create = !arch->TripleVendorWasSpecified() && !arch->TripleOSWasSpecified(); in CreateInstance() 85 return "A platform that uses the GDB remote protocol as the communication " in GetDescriptionStatic() 104 Log *log = GetLog(LLDBLog::Platform); in GetModuleSpec() [all …]
|
/freebsd/sys/compat/linuxkpi/common/src/ |
H A D | linux_aperture.c | 1 // SPDX-License-Identifier: MIT 21 * graphics drivers, such as EFI-GOP or VESA, early during the boot process. 23 * hardware-specific driver. To take over the device, the dedicated driver 25 * ownership of framebuffer memory and hand-over between drivers. 30 * An example for a graphics device on the platform bus is shown below. 32 * .. code-block:: c 42 * return -ENODEV; 43 * base = mem->start; 61 * The given example reads the platform device's I/O-memory range from the 68 * While the given example uses a platform device, the aperture helpers work [all …]
|
/freebsd/contrib/llvm-project/compiler-rt/lib/scudo/standalone/ |
H A D | mem_map.h | 1 //===-- mem_map.h -------- [all...] |
/freebsd/share/man/man4/ |
H A D | fdt.4 | 31 .Sh NAME 36 .Cd "makeoptions FDT_DTS_FILE=<board name>.dts" 48 Configuration data, which cannot be self discovered in run-time, has to be 51 platform and architecture independent approach for resolving such problems. 52 The idea is inherited from Open Firmware IEEE 1275 device-tree notion, and has 55 .Bl -bullet 57 Hardware platform resources are 60 self-enumerating information is gathered. 70 any information about the underlying platform hardware resources in the kernel. 73 particular first-stage bootloader or firmware features. [all …]
|