/freebsd/sys/contrib/libsodium/regen-msvc/ |
H A D | tl_libsodium.vcxproj.tpl | 6 <Platform>Win32</Platform> 10 <Platform>x64</Platform> 14 <Platform>Win32</Platform> 18 <Platform>x64</Platform> 22 <Platform>Win32</Platform> 26 <Platform>x64</Platform> 30 <Platform>Win32</Platform> 34 <Platform>x64</Platform> 43 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration"> 48 <PlatformToolset>{{platform}}</PlatformToolset> [all …]
|
H A D | libsodium.vcxproj | 6 <Platform>Win32</Platform> 10 <Platform>x64</Platform> 14 <Platform>Win32</Platform> 18 <Platform>x64</Platform> 22 <Platform>Win32</Platform> 26 <Platform>x64</Platform> 30 <Platform>Win32</Platform> 34 <Platform>x64</Platform> 43 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration"> 50 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DebugDLL|Win32'" Label="Configuration"> [all …]
|
H A D | libsodium.vcxproj.tpl | 6 <PlatformToolset>{{platform}}</PlatformToolset> 11 <Platform>Win32</Platform> 15 <Platform>Win32</Platform> 19 <Platform>x64</Platform> 23 <Platform>x64</Platform> 27 <Platform>Win32</Platform> 31 <Platform>Win32</Platform> 35 <Platform>x64</Platform> 39 <Platform>x64</Platform> 43 <Platform>Win32</Platform> [all …]
|
/freebsd/usr.sbin/bsdinstall/partedit/ |
H A D | partedit_powerpc.c | 35 static char platform[255] = ""; variable 39 size_t platlen = sizeof(platform); in default_scheme() 40 if (strlen(platform) == 0) in default_scheme() 41 sysctlbyname("hw.platform", platform, &platlen, NULL, -1); in default_scheme() 43 if (strcmp(platform, "powermac") == 0) in default_scheme() 45 if (strcmp(platform, "chrp") == 0 || strcmp(platform, "ps3") == 0 || in default_scheme() 46 strcmp(platform, "mpc85xx") == 0) in default_scheme() 55 size_t platlen = sizeof(platform); in is_scheme_bootable() 56 if (strlen(platform) == 0) in is_scheme_bootable() 57 sysctlbyname("hw.platform", platform, &platlen, NULL, -1); in is_scheme_bootable() [all …]
|
/freebsd/contrib/bc/vs/ |
H A D | bc.vcxproj | 6 <Platform>Win32</Platform> 10 <Platform>Win32</Platform> 14 <Platform>x64</Platform> 18 <Platform>x64</Platform> 29 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration"> 35 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration"> 42 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration"> 48 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration"> 60 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> 61 …ect="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Micros… [all …]
|
H A D | bcl.vcxproj | 6 <Platform>Win32</Platform> 10 <Platform>Win32</Platform> 14 <Platform>x64</Platform> 18 <Platform>x64</Platform> 22 <Platform>Win32</Platform> 26 <Platform>x64</Platform> 37 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration"> 43 …<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseMD|Win32'" Label="Configuration"> 50 …<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='ReleaseMT|Win32'" Label="Configuration"> 57 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration"> [all …]
|
/freebsd/contrib/llvm-project/lldb/source/Target/ |
H A D | Platform.cpp | 1 //===-- Platform.cpp ------------------------------------------------------===// 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() 126 /// Get the native host platform plug-in. 132 /// This platform will be used as the default platform when launching 133 /// or attaching to processes unless another platform is specified. 134 PlatformSP Platform::GetHostPlatform() { return GetHostPlatformSP(); } in GetHostPlatform() 136 void Platform::Initialize() {} in Initialize() 138 void Platform::Terminate() {} in Terminate() [all …]
|
H A D | RemoteAwarePlatform.cpp | 37 // The host platform can resolve the path more aggressively. in ResolveExecutable() 54 return Platform::ResolveExecutable(resolved_module_spec, exe_module_sp, in ResolveExecutable() 74 return Platform::RunShellCommand(shell, command, working_dir, status_ptr, in RunShellCommand() 82 return Platform::MakeDirectory(file_spec, file_permissions); in MakeDirectory() 90 return Platform::GetFilePermissions(file_spec, file_permissions); in GetFilePermissions() 98 return Platform::SetFilePermissions(file_spec, file_permissions); in SetFilePermissions() 106 return Platform::OpenFile(file_spec, flags, mode, error); in OpenFile() 112 return Platform::CloseFile(fd, error); in CloseFile() 120 return Platform::ReadFile(fd, offset, dst, dst_len, error); in ReadFile() 128 return Platform::WriteFile(fd, offset, src, src_len, error); in WriteFile() [all …]
|
/freebsd/sys/contrib/zstd/ |
H A D | appveyor.yml | 16 PLATFORM: "x64" 22 PLATFORM: "x86" 29 PLATFORM: "x64" 37 - ECHO Installing %COMPILER% %PLATFORM% %CONFIGURATION% 45 - IF [%HOST%]==[visual] IF [%PLATFORM%]==[x64] ( 51 ( if [%PLATFORM%]==[x64] ( 53 ) else if [%PLATFORM%]==[x86] ( 73 cd programs\ && 7z a -tzip -mx9 zstd-win-binary-%PLATFORM%.zip zstd.exe && 74 appveyor PushArtifact zstd-win-binary-%PLATFORM%.zip && 84 7z a -tzip -mx9 zstd-win-release-%PLATFORM%.zip * && [all …]
|
/freebsd/contrib/llvm-project/lldb/source/Commands/ |
H A D | CommandObjectPlatform.cpp | 24 #include "lldb/Target/Platform.h" 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() 152 "platform select <platform-name>", 0), in CommandObjectPlatformSelect() 154 false) // Don't include the "--platform" option by passing false in CommandObjectPlatformSelect() 190 result.AppendError("invalid platform name"); in DoExecute() 194 "platform create takes a platform name as an argument\n"); in DoExecute() 202 // "platform list" [all …]
|
/freebsd/sys/contrib/libsodium/ |
H A D | libsodium.vcxproj | 6 <Platform>Win32</Platform> 10 <Platform>x64</Platform> 14 <Platform>Win32</Platform> 18 <Platform>x64</Platform> 22 <Platform>Win32</Platform> 26 <Platform>x64</Platform> 30 <Platform>Win32</Platform> 34 <Platform>x64</Platform> 43 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration"> 50 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='DebugDLL|Win32'" Label="Configuration"> [all …]
|
/freebsd/contrib/unifdef/win32/ |
H A D | unifdef.vcxproj | 6 <Platform>Win32</Platform> 10 <Platform>Win32</Platform> 19 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration"> 24 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration"> 33 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> 34 …ect="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Micros… 36 <ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> 37 …ect="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Micros… 40 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'"> 43 <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'"> [all …]
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/ |
H A D | Platform.h | 1 //===-- Platform.h ----------------------------------------------*- C++ -*-===// 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 74 class Platform : public PluginInterface { 77 Platform(bool is_host_platform); 81 ~Platform() override; 89 /// Get the native host platform plug-in. [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/TextAPI/ |
H A D | Platform.cpp | 1 //===- llvm/TextAPI/Platform.cpp - Platform ---------------------*- C++ -*-===// 9 // Implementations of Platform Helper functions. 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 70 switch (Platform) { in getPlatformName() 71 #define PLATFORM(platform, id, name, build_name, target, tapi_target, \ in getPlatformName() macro 73 case PLATFORM_##platform: \ in getPlatformName() [all …]
|
/freebsd/sys/contrib/libsodium/builds/msvc/build/ |
H A D | buildbase.bat | 16 ECHO Platform=x86 19 msbuild /m /v:n /p:Configuration=DynDebug /p:Platform=Win32 %solution% >> %log% 22 msbuild /m /v:n /p:Configuration=DynRelease /p:Platform=Win32 %solution% >> %log% 25 msbuild /m /v:n /p:Configuration=LtcgDebug /p:Platform=Win32 %solution% >> %log% 28 msbuild /m /v:n /p:Configuration=LtcgRelease /p:Platform=Win32 %solution% >> %log% 31 msbuild /m /v:n /p:Configuration=StaticDebug /p:Platform=Win32 %solution% >> %log% 34 msbuild /m /v:n /p:Configuration=StaticRelease /p:Platform=Win32 %solution% >> %log% 38 ECHO Platform=x64 41 msbuild /m /v:n /p:Configuration=DynDebug /p:Platform=x64 %solution% >> %log% 44 msbuild /m /v:n /p:Configuration=DynRelease /p:Platform=x64 %solution% >> %log% [all …]
|
/freebsd/contrib/llvm-project/lldb/bindings/interface/ |
H A D | SBPlatformDocstrings.i | 2 "Describes how :py:class:`SBPlatform.ConnectRemote` connects to a remote platform." 10 "A class that represents a platform that can represent the current host or a remote host debug plat… 13 It can be connected to a remote platform in order to provide ways 19 platform which allows the SBPlatform to be used to get a list of the 24 Every :py:class:`SBTarget` has a corresponding SBPlatform. The platform can be 25 specified upon target creation, or the currently selected platform 27 as the currently selected platform matches the target architecture 29 a suitable platform will be found automatically."
|
/freebsd/crypto/openssl/Configurations/platform/ |
H A D | Windows.pm | 1 package platform::Windows; 9 require platform::BASE; 10 @ISA = qw(platform::BASE); 24 # Other extra that aren't defined in platform::BASE 32 my $in_libname = platform::BASE->staticname($_[1]); 38 return platform::BASE->staticname($_[1]) 49 return platform::BASE::__concat(platform::BASE->sharedname($_[1]), 56 return platform::BASE::__isshared($_[1]) ? $_[1] : undef; 60 return platform::BASE::__concat($_[0]->sharedname_import($_[1]),
|
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 47 my $in_libname = platform::BASE->staticname($_[1]); 53 return platform::BASE->staticname($_[1]); 57 return platform::BASE::__concat(platform::BASE->sharedname($_[1]), 62 return platform::BASE::__isshared($_[1]) ? $_[1] : undef; 80 return platform::BASE::__concat($simplename, $simpleext);
|
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]), 47 return platform::BASE::__concat(platform::BASE->sharedname($_[1]),
|
H A D | VMS.pm | 1 package platform::VMS; 9 require platform::BASE; 10 @ISA = qw(platform::BASE); 29 # Other extra that aren't defined in platform::BASE 41 my $in_libname = platform::BASE->staticname($_[1]); 45 return platform::BASE::__concat($_[0]->osslprefix(), 46 platform::BASE->staticname($_[1]), 58 return platform::BASE::__concat($_[0]->osslprefix(), 59 platform::BASE->sharedname($_[1]),
|
/freebsd/tools/tools/notescheck/ |
H A D | notescheck.py | 23 # This special platform string is used for managing MI options. 70 def add_define(self, platform): argument 71 self.defines.add(platform) 73 def add_test(self, platform): argument 74 self.tests.add(platform) 89 # If the tested set contains the global platform, then this 109 # single MD platform, then whine about this. 166 print("Found MD NOTES file for global platform", file=sys.stderr) 247 def parse_files_line(line, platform): argument 287 option.add_define(platform) [all …]
|
/freebsd/crypto/openssl/Configurations/platform/Windows/ |
H A D | MSVC.pm | 1 package platform::Windows::MSVC; 9 require platform::Windows; 10 @ISA = qw(platform::Windows); 21 return platform::BASE::__concat(platform::BASE->sharedname($_[1]), 29 return platform::BASE::__concat($_[0]->staticname($_[1]), $_[0]->pdbext()); 33 return platform::BASE::__concat($_[0]->sharedname($_[1]), $_[0]->pdbext()); 37 return platform::BASE::__concat($_[0]->dsoname($_[1]), $_[0]->pdbext()); 41 return platform::BASE::__concat($_[0]->binname($_[1]), $_[0]->pdbext());
|
/freebsd/crypto/openssl/Configurations/ |
H A D | windows-makefile.tmpl | 9 our $sover_dirname = platform->shlib_version_as_filename(); 38 PLATFORM={- $config{target} -} 50 LIBS={- join(" ", map { ( platform->sharedlib_import($_), platform->staticlib($_) ) } @{$unified_in… 51 SHLIBS={- join(" ", map { platform->sharedlib($_) // () } @{$unified_info{libraries}}) -} 52 SHLIBPDBS={- join(" ", map { platform->sharedlibpdb($_) // () } @{$unified_info{libraries}}) -} 53 MODULES={- our @MODULES = map { platform->dso($_) } 61 MODULEPDBS={- join(" ", map { platform->dsopdb($_) } @{$unified_info{modules}}) -} 69 join(" ", map { platform->dso($_) } @fipsmodules) -} 71 join(", ", map { basename(platform->dso($_)) } @fipsmodules) -} 72 PROGRAMS={- our @PROGRAMS = map { platform->bin($_) } @{$unified_info{programs}}; join(" ", @PROGRA… [all …]
|
/freebsd/contrib/llvm-project/llvm/include/llvm/TextAPI/ |
H A D | Target.h | 17 #include "llvm/TextAPI/Platform.h" 31 Target(Architecture Arch, PlatformType Platform, 33 : Arch(Arch), Platform(Platform), MinDeployment(MinDeployment) {} in Arch() 35 : Arch(mapToArchitecture(Triple)), Platform(mapToPlatformType(Triple)), in Target() 43 PlatformType Platform; variable 49 return std::tie(LHS.Arch, LHS.Platform) == std::tie(RHS.Arch, RHS.Platform); 58 return std::tie(LHS.Arch, LHS.Platform) < std::tie(RHS.Arch, RHS.Platform);
|
/freebsd/sys/arm/arm/ |
H A D | platform_if.m | 36 #include <machine/platform.h> 42 * @defgroup PLATFORM platform - KObj methods for ARM platform 44 * @brief A set of methods required by all platform implementations. 50 INTERFACE platform; 74 * @brief Probe for whether we are on this platform, returning the standard 83 * @brief Attach this platform module. This happens before the MMU is online, 84 * so the platform module can install its own high-priority MMU module at 101 * first byte of unusable KVA space. This allows a platform to carve out
|