Searched refs:platform (Results 1 - 25 of 209) sorted by relevance

123456789

/freebsd-current/crypto/openssl/Configurations/platform/Windows/
H A Dcppbuilder.pm1 package platform::Windows::cppbuilder;
5 require platform::Windows::MSVC;
6 @ISA = qw(platform::Windows::MSVC);
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());
/freebsd-current/usr.sbin/bsdinstall/partedit/
H A Dpartedit_powerpc.c35 static char platform[255] = ""; variable
39 size_t platlen = sizeof(platform);
40 if (strlen(platform) == 0)
41 sysctlbyname("hw.platform", platform, &platlen, NULL, -1);
43 if (strcmp(platform, "powermac") == 0)
45 if (strcmp(platform, "chrp") == 0 || strcmp(platform, "ps3") == 0 ||
46 strcmp(platform, "mpc85xx") == 0)
55 size_t platlen = sizeof(platform);
[all...]
/freebsd-current/crypto/openssl/Configurations/platform/
H A DCygwin.pm1 package platform::Cygwin;
9 require platform::mingw;
10 @ISA = qw(platform::mingw);
17 my $lib = platform::mingw->sharedname(@_);
H A DAIX.pm1 package platform::AIX;
9 require platform::Unix;
10 @ISA = qw(platform::Unix);
24 my $in_libname = platform::BASE->staticname($_[1]);
28 return platform::BASE->staticname($_[1]) . ($disabled{shared} ? '' : '_a');
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
[all...]
H A DVMS.pm1 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]),
H A Dmingw.pm1 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 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
[all...]
/freebsd-current/usr.bin/etdump/
H A Doutput_shell.c40 const char *platform; local
51 platform = "default";
53 platform = system_id_string(platform_id);
57 platform, system_id_string(bcse->system_type[0]),
/freebsd-current/crypto/openssl/Configurations/
H A Dplatform.pm1 package platform; package
13 require "platform/$module_path.pm";
14 @ISA = ("platform::$module");
H A Dunix-checker.pm6 # we expect for the platform
15 building platform.
H A Dwindows-checker.pm6 # we expect for the platform
15 building platform.
/freebsd-current/contrib/llvm-project/lldb/source/Interpreter/
H A DCommandOptionValidators.cpp18 Platform &platform, const ExecutionContext &target) const {
20 platform.GetSystemArchitecture().GetTriple().getOS();
17 IsValid( Platform &platform, const ExecutionContext &target) const argument
H A DOptionGroupArchitecture.cpp26 bool OptionGroupArchitecture::GetArchitecture(Platform *platform, argument
28 arch = Platform::GetAugmentedArchSpec(platform, m_arch_str);
/freebsd-current/crypto/openssl/test/recipes/
H A D00-prep_fipsmodule_cnf.t21 use platform;
27 my $fipsmodule = bldtop_file('providers', platform->dso('fips'));
H A D01-test_fipsmodule_cnf.t24 use platform;
31 my $fipsmodule = bldtop_file('providers', platform->dso('fips'));
H A D90-test_fipsload.t17 use platform;
28 my $fips = bldtop_file('providers', platform->dso('fips'));
/freebsd-current/usr.sbin/bhyve/
H A Dpci_irq.h40 #error Unsupported platform
/freebsd-current/tools/tools/notescheck/
H A Dnotescheck.py23 # This special platform string is used for managing MI options.
70 def add_define(self, platform):
71 self.defines.add(platform)
73 def add_test(self, platform):
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):
287 option.add_define(platform)
[all...]
/freebsd-current/sys/contrib/dev/acpica/include/
H A Dacpi.h164 #include <contrib/dev/acpica/include/platform/acenv.h> /* Environment-specific items */
166 #include <contrib/dev/acpica/include/platform/acenvex.h> /* Extra environment-specific items */
/freebsd-current/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DCommandOptionValidators.h20 bool IsValid(Platform &platform,
/freebsd-current/contrib/ntp/libntp/lib/isc/pthreads/include/isc/
H A Donce.h27 #include <isc/platform.h>
/freebsd-current/contrib/llvm-project/llvm/lib/Support/
H A DAtomic.cpp39 # error No memory fence implementation for your platform!
57 # error No compare-and-swap implementation for your platform!
/freebsd-current/contrib/ntp/libntp/lib/isc/include/isc/
H A Derror.h29 #include <isc/platform.h>

Completed in 292 milliseconds

123456789