Home
last modified time | relevance | path

Searched full:platform (Results 1 – 25 of 2524) sorted by relevance

12345678910>>...101

/src/sys/contrib/libsodium/regen-msvc/
H A Dtl_libsodium.vcxproj.tpl6 <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 Dlibsodium.vcxproj6 <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 Dlibsodium.vcxproj.tpl6 <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 …]
/src/usr.sbin/bsdinstall/partedit/
H A Dpartedit_powerpc.c35 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 …]
/src/contrib/bc/vs/
H A Dbc.vcxproj6 <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 Dbcl.vcxproj6 <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 …]
/src/sys/contrib/zstd/
H A Dappveyor.yml16 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 …]
/src/contrib/llvm-project/lldb/source/Target/
H A DPlatform.cpp1 //===-- 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 DRemoteAwarePlatform.cpp37 // 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 …]
/src/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectPlatform.cpp24 #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 …]
/src/crypto/krb5/src/util/support/
H A Ddeps5 $(top_srcdir)/include/fake-addrinfo.h $(top_srcdir)/include/k5-platform.h \
11 $(top_srcdir)/include/k5-platform.h $(top_srcdir)/include/k5-thread.h \
15 $(top_srcdir)/include/k5-err.h $(top_srcdir)/include/k5-platform.h \
19 $(top_srcdir)/include/k5-err.h $(top_srcdir)/include/k5-platform.h \
22 $(top_srcdir)/include/k5-buf.h $(top_srcdir)/include/k5-platform.h \
29 $(top_srcdir)/include/k5-platform.h $(top_srcdir)/include/k5-thread.h \
33 $(top_srcdir)/include/k5-platform.h $(top_srcdir)/include/k5-thread.h \
37 $(top_srcdir)/include/k5-input.h $(top_srcdir)/include/k5-platform.h \
41 $(BUILDTOP)/include/autoconf.h $(top_srcdir)/include/k5-platform.h \
44 $(top_srcdir)/include/k5-platform.h $(top_srcdir)/include/k5-thread.h \
[all …]
/src/sys/contrib/libsodium/
H A Dlibsodium.vcxproj6 <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 …]
/src/sys/contrib/edk2/Include/Protocol/
H A DPciPlatform.h3 the PCI bus driver/PCI Host Bridge Resource Allocation driver and a platform-specific
4 driver to describe the unique features of a platform.
11 This Protocol is defined in UEFI Platform Initialization Specification 1.2
42 /// enumeration. By using this selection, the platform indicates that it does
50 /// By using this selection, the platform indicates that it wants to support
71 /// platform indicates that it will support VGA devices that require VGA
72 /// ranges, including those that require VGA aliases. The platform further
94 /// the platform indicates that it wants to support PCI devices that require
100 /// this selection, the platform indicates that it will support VGA devices
146 /// EFI_PCI_EXECUTION_PHASE is used to call a platform protocol and execute
[all …]
/src/contrib/unifdef/win32/
H A Dunifdef.vcxproj6 <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 …]
/src/contrib/llvm-project/llvm/lib/TextAPI/
H A DPlatform.cpp1 //===- 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 …]
H A DTarget.cpp22 PlatformType Platform; in create() local
23 Platform = StringSwitch<PlatformType>(PlatformStr) in create()
24 #define PLATFORM(platform, id, name, build_name, target, tapi_target, \ in create() macro
26 .Case(#tapi_target, PLATFORM_##platform) in create()
30 if (Platform == PLATFORM_UNKNOWN) { in create()
35 Platform = (PlatformType)RawValue; in create()
39 return Target{Architecture, Platform}; in create()
45 return (getArchitectureName(Arch) + " (" + getPlatformName(Platform) + in operator std::string()
58 Result.insert({Target.Platform, Target.MinDeployment}); in mapToPlatformVersionSet()
65 Result.insert(Target.Platform); in mapToPlatformSet()
[all …]
/src/contrib/llvm-project/lldb/include/lldb/Target/
H A DPlatform.h1 //===-- 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 …]
/src/sys/contrib/libsodium/builds/msvc/build/
H A Dbuildbase.bat16 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 …]
/src/contrib/llvm-project/llvm/include/llvm/BinaryFormat/
H A DMachO.def123 #ifdef PLATFORM
124 // PLATFORM(platform, id, name, build_name, target, tapi_target, marketing)
125 PLATFORM(UNKNOWN, 0, unknown, unknown, unknown, unknown, unknown)
126 PLATFORM(MACOS, 1, macos, macos, macos, macos, macOS)
127 PLATFORM(IOS, 2, ios, ios, ios, ios, iOS)
128 PLATFORM(TVOS, 3, tvos, tvos, tvos, tvos, tvOS)
129 PLATFORM(WATCHOS, 4, watchos, watchos, watchos, watchos, watchOS)
130 PLATFORM(BRIDGEOS, 5, bridgeos, bridgeos, bridgeos, bridgeos, bridgeOS)
131 PLATFORM(MACCATALYST, 6, macCatalyst, macCatalyst, ios-macabi, maccatalyst, macCatalyst)
132 PLATFORM(IOSSIMULATOR, 7, iossimulator, iossimulator, ios-simulator, ios-simulator, iOS Simulator)
[all …]
/src/contrib/llvm-project/lldb/bindings/interface/
H A DSBPlatformDocstrings.i2 "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."
/src/crypto/openssl/Configurations/platform/
H A DWindows.pm1 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 DUnix.pm1 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;
82 return platform::BASE::__concat($simplename, $simpleext);
/src/crypto/openssl/Configurations/platform/Windows/
H A DMSVC.pm1 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());
/src/tools/tools/notescheck/
H A Dnotescheck.py23 # 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 …]
/src/crypto/openssl/Configurations/
H A Dwindows-makefile.tmpl9 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 …]

12345678910>>...101