Home
last modified time | relevance | path

Searched refs:Platform (Results 1 – 25 of 180) sorted by relevance

12345678

/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/TextAPI/
H A DTarget.h27 Target(Architecture Arch, PlatformKind Platform) in Target() argument
28 : Arch(Arch), Platform(Platform) {} in Target()
30 : Arch(mapToArchitecture(Triple)), Platform(mapToPlatformKind(Triple)) {} in Target()
37 PlatformKind Platform; variable
41 return std::tie(LHS.Arch, LHS.Platform) == std::tie(RHS.Arch, RHS.Platform);
45 return std::tie(LHS.Arch, LHS.Platform) != std::tie(RHS.Arch, RHS.Platform);
49 return std::tie(LHS.Arch, LHS.Platform) < std::tie(RHS.Arch, RHS.Platform);
H A DPlatform.h38 PlatformKind mapToPlatformKind(PlatformKind Platform, bool WantSim);
41 StringRef getPlatformName(PlatformKind Platform);
43 std::string getOSAndEnvironmentName(PlatformKind Platform,
/freebsd-13.1/contrib/llvm-project/lldb/source/Target/
H A DPlatform.cpp149 void Platform::Terminate() { in Terminate()
221 Status Platform::GetSharedModule( in GetSharedModule()
378 ArchSpec Platform::GetAugmentedArchSpec(Platform *platform, llvm::StringRef triple) { in GetAugmentedArchSpec()
385 Platform::Platform(bool is_host) in Platform() function in Platform
402 Platform::~Platform() { in ~Platform()
407 void Platform::GetStatus(Stream &strm) { in GetStatus()
548 Platform *platform_ptr;
811 const char *Platform::GetHostname() { in GetHostname()
979 Status Platform::DisconnectRemote() { in DisconnectRemote()
1520 Status Platform::GetCachedExecutable( in GetCachedExecutable()
[all …]
H A DRemoteAwarePlatform.cpp233 return Platform::CloseFile(fd, error); in CloseFile()
265 return Platform::GetFileSize(file_spec); in GetFileSize()
274 return Platform::CreateSymlink(src, dst); in CreateSymlink()
282 return Platform::GetFileExists(file_spec); in GetFileExists()
290 return Platform::Unlink(file_spec); in Unlink()
296 return Platform::CalculateMD5(file_spec, low, high); in CalculateMD5()
305 return Platform::GetRemoteWorkingDirectory(); in GetRemoteWorkingDirectory()
357 return Platform::GetHostname(); in GetHostname()
391 return Platform::GetProcessInfo(pid, process_info); in GetProcessInfo()
423 error = Platform::LaunchProcess(launch_info); in LaunchProcess()
[all …]
H A DTargetList.cpp174 PlatformSP host_platform_sp = Platform::GetHostPlatform(); in CreateTargetInternal()
204 Platform::GetPlatformForArchitecture( in CreateTargetInternal()
212 Platform *platform_ptr = nullptr; in CreateTargetInternal()
237 std::set<Platform *> platform_set; in CreateTargetInternal()
261 platform_sp = Platform::GetPlatformForArchitecture(arch, &platform_arch); in CreateTargetInternal()
270 platform_sp = Platform::GetPlatformForArchitecture(platform_arch, in CreateTargetInternal()
302 platform_sp = Platform::GetPlatformForArchitecture(specified_arch, &arch); in CreateTargetInternal()
/freebsd-13.1/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%
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%
47 msbuild /m /v:n /p:Configuration=LtcgDebug /p:Platform=x64 %solution% >> %log%
50 msbuild /m /v:n /p:Configuration=LtcgRelease /p:Platform=x64 %solution% >> %log%
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/lib/TextAPI/
H A DTarget.cpp25 PlatformKind Platform; in create() local
26 Platform = StringSwitch<PlatformKind>(PlatformStr) in create()
39 if (Platform == PlatformKind::unknown) { in create()
44 Platform = (PlatformKind)RawValue; in create()
48 return Target{Architecture, Platform}; in create()
52 return (getArchitectureName(Arch) + " (" + getPlatformName(Platform) + ")") in operator std::string()
64 Result.insert(Target.Platform); in mapToPlatformSet()
77 getOSAndEnvironmentName(Targ.Platform)) in getTargetTripleName()
H A DPlatform.cpp21 PlatformKind mapToPlatformKind(PlatformKind Platform, bool WantSim) { in mapToPlatformKind() argument
22 switch (Platform) { in mapToPlatformKind()
24 return Platform; in mapToPlatformKind()
65 StringRef getPlatformName(PlatformKind Platform) { in getPlatformName() argument
66 switch (Platform) { in getPlatformName()
108 std::string getOSAndEnvironmentName(PlatformKind Platform, in getOSAndEnvironmentName() argument
110 switch (Platform) { in getOSAndEnvironmentName()
H A DTextStubCommon.cpp108 auto Platform = StringSwitch<PlatformKind>(Scalar) in input() local
118 if (Platform == PlatformKind::macCatalyst) in input()
122 if (Platform == PlatformKind::unknown) in input()
125 Values.insert(Platform); in input()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/
H A DAvailability.h37 StringRef Platform; variable
42 AvailabilitySpec(VersionTuple Version, StringRef Platform, in AvailabilitySpec() argument
44 : Version(Version), Platform(Platform), BeginLoc(BeginLoc), in AvailabilitySpec()
52 StringRef getPlatform() const { return Platform; } in getPlatform()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Platform/OpenBSD/
H A DPlatformOpenBSD.cpp76 static ConstString g_host_name(Platform::GetHostPlatformName()); in GetPluginNameStatic()
96 Platform::Initialize(); in Initialize()
102 Platform::SetHostPlatform(default_platform_sp); in Initialize()
174 Platform::GetStatus(strm); in GetStatus()
/freebsd-13.1/sys/contrib/device-tree/Bindings/rng/
H A Dsparc_sun_oracle_rng.txt7 - 'SUNW,n2-rng' for Niagara 2 Platform (SUN UltraSPARC T2 CPU)
8 - 'SUNW,vf-rng' for Victoria Falls Platform (SUN UltraSPARC T2 Plus CPU)
9 …- 'SUNW,kt-rng' for Rainbow/Yosemite Falls Platform (SUN SPARC T3/T4), (UltraSPARC KT/Niagara 3 - …
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Platform/FreeBSD/
H A DPlatformFreeBSD.cpp81 static ConstString g_host_name(Platform::GetHostPlatformName()); in GetPluginNameStatic()
101 Platform::Initialize(); in Initialize()
107 Platform::SetHostPlatform(default_platform_sp); in Initialize()
198 Platform::GetStatus(strm); in GetStatus()
/freebsd-13.1/sys/contrib/libsodium/packaging/nuget/
H A Dpackage.gsl144 …<ItemDefinitionGroup Condition="'$\(Platform)' == 'Win32' And ('$\(PlatformToolset)' == '$(package…
149 …<ItemDefinitionGroup Condition="'$\(Platform)' == 'x64' And ('$\(PlatformToolset)' == '$(package.p…
154 …<ItemDefinitionGroup Condition="'$\(Platform)' == 'x64' And ('$\(PlatformToolset)' == '$(package.p…
166 …<ItemDefinitionGroup Condition="'$\(Platform)' == 'Win32' And ('$\(PlatformToolset)' == '$(package…
171 …<ItemDefinitionGroup Condition="'$\(Platform)' == 'x64' And ('$\(PlatformToolset)' == '$(package.p…
176 …<ItemDefinitionGroup Condition="'$\(Platform)' == 'x64' And ('$\(PlatformToolset)' == '$(package.p…
198 …<ItemDefinitionGroup Condition="'$\(Platform)' == 'x64' And ('$\(PlatformToolset)' == '$(package.p…
207 …Condition="'$\(Platform)' == 'Win32' And ('$\(PlatformToolset)' == '$(package.platformtoolset)' Or…
213 …Condition="'$\(Platform)' == 'Win32' And ('$\(PlatformToolset)' == '$(package.platformtoolset)' Or…
219 …Condition="'$\(Platform)' == 'x64' And ('$\(PlatformToolset)' == '$(package.platformtoolset)' Or '…
[all …]
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DCommandOptionValidators.h16 class Platform; variable
20 bool IsValid(Platform &platform,
/freebsd-13.1/sys/contrib/device-tree/Bindings/nds32/
H A Dandestech-boards1 Andestech(nds32) AE3XX Platform
18 Andestech(nds32) AG101P Platform
20 AG101P is a generic SoC Platform IP that works with any of Andestech(nds32)
/freebsd-13.1/contrib/llvm-project/lldb/source/Interpreter/
H A DOptionGroupArchitecture.cpp26 bool OptionGroupArchitecture::GetArchitecture(Platform *platform, in GetArchitecture()
28 arch = Platform::GetAugmentedArchSpec(platform, m_arch_str); in GetArchitecture()
/freebsd-13.1/sys/contrib/zstd/
H A Dappveyor.yml111 …" /m /verbosity:minimal /property:PlatformToolset=v90 /t:Clean,Build /p:Platform=%PLATFORM% /p:Con…
118 …PPVEYOR_BUILD_FOLDER%\build\VS2010\CompileAsCpp.props /t:Clean,Build /p:Platform=%PLATFORM% /p:Con…
121 … /m /verbosity:minimal /property:PlatformToolset=v100 /t:Clean,Build /p:Platform=%PLATFORM% /p:Con…
128 …PPVEYOR_BUILD_FOLDER%\build\VS2010\CompileAsCpp.props /t:Clean,Build /p:Platform=%PLATFORM% /p:Con…
131 … /m /verbosity:minimal /property:PlatformToolset=v110 /t:Clean,Build /p:Platform=%PLATFORM% /p:Con…
138 …PPVEYOR_BUILD_FOLDER%\build\VS2010\CompileAsCpp.props /t:Clean,Build /p:Platform=%PLATFORM% /p:Con…
141 … /m /verbosity:minimal /property:PlatformToolset=v120 /t:Clean,Build /p:Platform=%PLATFORM% /p:Con…
148 …PPVEYOR_BUILD_FOLDER%\build\VS2010\CompileAsCpp.props /t:Clean,Build /p:Platform=%PLATFORM% /p:Con…
151 … /m /verbosity:minimal /property:PlatformToolset=v140 /t:Clean,Build /p:Platform=%PLATFORM% /p:Con…
275 …PPVEYOR_BUILD_FOLDER%\build\VS2010\CompileAsCpp.props /t:Clean,Build /p:Platform=%PLATFORM% /p:Con…
[all …]
/freebsd-13.1/sys/contrib/device-tree/Bindings/arm/
H A Darm,realview.yaml27 - description: ARM RealView Platform Baseboard for ARM1176JZF-S
32 - description: ARM RealView Platform Baseboard for ARM 11 MPCore
38 - description: ARM RealView Platform Baseboard for Cortex-A8 (HBI-0178,
43 - description: ARM RealView Platform Baseboard Explore for Cortex-A9
H A Darm,integrator.yaml23 - description: ARM Integrator Application Platform, this board has a PCI
32 - description: ARM Integrator Compact Platform (HBI-0086), this board has
37 - description: ARM Integrator Standard Development Board (SDB) Platform,
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Target/
H A DRemoteAwarePlatform.h18 class RemoteAwarePlatform : public Platform {
20 using Platform::Platform;
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Platform/NetBSD/
H A DPlatformNetBSD.cpp70 static ConstString g_host_name(Platform::GetHostPlatformName()); in GetPluginNameStatic()
96 Platform::SetHostPlatform(default_platform_sp); in Initialize()
169 Platform::GetStatus(strm); in GetStatus()
/freebsd-13.1/sys/contrib/device-tree/Bindings/interrupt-controller/
H A Dti,cp-intc.txt1 * TI Common Platform Interrupt Controller
3 Common Platform Interrupt Controller (cp_intc) is used on
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/
H A Dlldb-private-types.h25 class Platform; variable
104 virtual bool IsValid(Platform &platform,
/freebsd-13.1/sys/contrib/device-tree/Bindings/dma/
H A Dsifive,fu540-c000-pdma.yaml7 title: SiFive Unleashed Rev C000 Platform DMA
15 Platform DMA is a DMA engine of SiFive Unleashed. It supports 4

12345678