Home
last modified time | relevance | path

Searched refs:systemInfo (Results 1 – 25 of 460) sorted by relevance

12345678910>>...19

/dports/lang/intel-compute-runtime/compute-runtime-21.52.22081/opencl/test/unit_test/os_interface/linux/
H A Ddrm_system_info_tests.cpp32 SystemInfo systemInfo(nullptr, 0); in TEST() local
35 EXPECT_EQ(0u, systemInfo.getL3BankCount()); in TEST()
36 EXPECT_EQ(0u, systemInfo.getMemoryType()); in TEST()
39 EXPECT_EQ(0u, systemInfo.getMaxFillRate()); in TEST()
48 EXPECT_EQ(0u, systemInfo.getMaxRCS()); in TEST()
49 EXPECT_EQ(0u, systemInfo.getMaxCCS()); in TEST()
87 auto systemInfo = drm.getSystemInfo(); in TEST() local
88 EXPECT_NE(nullptr, systemInfo); in TEST()
101 EXPECT_NE(0u, systemInfo->getMaxRCS()); in TEST()
102 EXPECT_NE(0u, systemInfo->getMaxCCS()); in TEST()
[all …]
/dports/net-mgmt/pandorafms_console/pandorafms_console-6.0SP2/extensions/
H A Dsystem_info.php49 $systemInfo["PHP Version"] = phpversion();
113 $systemInfo['php_ini'] = ini_get_all();
139 $systemInfo['disk'] = $disk;
153 $systemInfo['process'] = $process;
161 $systemInfo['date'] = $result;
298 $systemInfo = array();
299 getPandoraDiagnostic($systemInfo);
655 $systemInfo = array();
656 getPandoraDiagnostic($systemInfo);
679 $systemInfo = array();
[all …]
/dports/graphics/krita/krita-4.4.8/libs/global/
H A DKisUsageLogger.cpp71 QString systemInfo = basicSystemInfo(); in initialize() local
72 s_instance->d->sysInfoFile.write(systemInfo.toUtf8()); in initialize()
77 QString systemInfo; in basicSystemInfo() local
82 systemInfo.append("Krita\n"); in basicSystemInfo()
86 systemInfo.append("\n\n"); in basicSystemInfo()
88 systemInfo.append("Qt\n"); in basicSystemInfo()
90 systemInfo.append("\n Version (loaded): ").append(qVersion()); in basicSystemInfo()
91 systemInfo.append("\n\n"); in basicSystemInfo()
94 systemInfo.append("OS Information\n"); in basicSystemInfo()
106 systemInfo.append("\n\n"); in basicSystemInfo()
[all …]
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/angle/src/feature_support_util/
H A Dfeature_support_util_unittest.cpp68 SystemInfo systemInfo = mSystemInfo; in TEST_F() local
69 systemInfo.machineManufacturer = "BAD"; in TEST_F()
70 systemInfo.machineModelName = "BAD"; in TEST_F()
72 ANGLEAddDeviceInfoToSystemInfo(kMfr, kModel, &systemInfo); in TEST_F()
73 EXPECT_EQ(kMfr, systemInfo.machineManufacturer); in TEST_F()
74 EXPECT_EQ(kModel, systemInfo.machineModelName); in TEST_F()
100 SystemInfo systemInfo = mSystemInfo; in TEST_F() local
150 EXPECT_FALSE(ANGLEShouldBeUsedForApplication(rulesHandle, rulesVersion, &systemInfo, kApp1)); in TEST_F()
153 systemInfo.gpus[0].detailedDriverVersion = {1, 2, 3, 5}; in TEST_F()
154 EXPECT_TRUE(ANGLEShouldBeUsedForApplication(rulesHandle, rulesVersion, &systemInfo, kApp1)); in TEST_F()
[all …]
H A Dfeature_support_util.cpp850 angle::SystemInfo *systemInfo = new angle::SystemInfo; in ANGLEGetSystemInfo() local
851 systemInfo->gpus.resize(1); in ANGLEGetSystemInfo()
852 GPUDeviceInfo &gpu = systemInfo->gpus[0]; in ANGLEGetSystemInfo()
858 *systemInfoHandle = systemInfo; in ANGLEGetSystemInfo()
868 if (!deviceMfr || !deviceModel || !systemInfo) in ANGLEAddDeviceInfoToSystemInfo()
873 systemInfo->machineManufacturer = deviceMfr; in ANGLEAddDeviceInfoToSystemInfo()
874 systemInfo->machineModelName = deviceModel; in ANGLEAddDeviceInfoToSystemInfo()
886 if (!rules || !systemInfo || !appName || (systemInfo->gpus.size() != 1)) in ANGLEShouldBeUsedForApplication()
897 GPU gpuDriver(systemInfo->gpus[0].driverVendor, systemInfo->gpus[0].deviceId, gpuDriverVersion); in ANGLEShouldBeUsedForApplication()
921 if (systemInfo) in ANGLEFreeSystemInfoHandle()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/angle/src/feature_support_util/
H A Dfeature_support_util_unittest.cpp68 SystemInfo systemInfo = mSystemInfo; in TEST_F() local
69 systemInfo.machineManufacturer = "BAD"; in TEST_F()
70 systemInfo.machineModelName = "BAD"; in TEST_F()
72 ANGLEAddDeviceInfoToSystemInfo(kMfr, kModel, &systemInfo); in TEST_F()
73 EXPECT_EQ(kMfr, systemInfo.machineManufacturer); in TEST_F()
74 EXPECT_EQ(kModel, systemInfo.machineModelName); in TEST_F()
100 SystemInfo systemInfo = mSystemInfo; in TEST_F() local
150 EXPECT_FALSE(ANGLEShouldBeUsedForApplication(rulesHandle, rulesVersion, &systemInfo, kApp1)); in TEST_F()
153 systemInfo.gpus[0].detailedDriverVersion = {1, 2, 3, 5}; in TEST_F()
154 EXPECT_TRUE(ANGLEShouldBeUsedForApplication(rulesHandle, rulesVersion, &systemInfo, kApp1)); in TEST_F()
[all …]
H A Dfeature_support_util.cpp811 angle::SystemInfo *systemInfo = new angle::SystemInfo; in ANGLEGetSystemInfo() local
812 systemInfo->gpus.resize(1); in ANGLEGetSystemInfo()
813 GPUDeviceInfo &gpu = systemInfo->gpus[0]; in ANGLEGetSystemInfo()
819 *systemInfoHandle = systemInfo; in ANGLEGetSystemInfo()
829 if (!deviceMfr || !deviceModel || !systemInfo) in ANGLEAddDeviceInfoToSystemInfo()
834 systemInfo->machineManufacturer = deviceMfr; in ANGLEAddDeviceInfoToSystemInfo()
835 systemInfo->machineModelName = deviceModel; in ANGLEAddDeviceInfoToSystemInfo()
847 if (!rules || !systemInfo || !appName || (systemInfo->gpus.size() != 1)) in ANGLEShouldBeUsedForApplication()
858 GPU gpuDriver(systemInfo->gpus[0].driverVendor, systemInfo->gpus[0].deviceId, in ANGLEShouldBeUsedForApplication()
883 if (systemInfo) in ANGLEFreeSystemInfoHandle()
[all …]
/dports/science/gromacs/gromacs-2021.4/src/gromacs/domdec/
H A Ddomdec.cpp599 const DDSystemInfo& systemInfo = comm.systemInfo; in dd_cutoff_multibody() local
2142 (systemInfo.minCutoffForMultiBody > systemInfo.cutoff); in getSystemInfo()
2146 systemInfo.cutoff = std::max(systemInfo.cutoff, systemInfo.minCutoffForMultiBody); in getSystemInfo()
2159 systemInfo.minCutoffForMultiBody = systemInfo.cutoff / 2; in getSystemInfo()
2200 systemInfo.cutoff = std::max(systemInfo.cutoff, systemInfo.minCutoffForMultiBody); in getSystemInfo()
2207systemInfo.cellsizeLimit = std::max(systemInfo.cellsizeLimit, systemInfo.minCutoffForMultiBody); in getSystemInfo()
2218 if (systemInfo.constraintCommunicationRange > systemInfo.cellsizeLimit) in getSystemInfo()
2237systemInfo.cellsizeLimit = std::max(systemInfo.cellsizeLimit, systemInfo.constraintCommunicationRa… in getSystemInfo()
2239 return systemInfo; in getSystemInfo()
2420 comm->systemInfo = systemInfo; in set_dd_limits()
[all …]
H A Dutility.h113 static inline real atomToAtomIntoDomainToDomainCutoff(const DDSystemInfo& systemInfo, real cutoff) in atomToAtomIntoDomainToDomainCutoff() argument
115 if (systemInfo.useUpdateGroups) in atomToAtomIntoDomainToDomainCutoff()
117 cutoff += 2 * systemInfo.maxUpdateGroupRadius; in atomToAtomIntoDomainToDomainCutoff()
124 static inline real domainToDomainIntoAtomToDomainCutoff(const DDSystemInfo& systemInfo, real cutoff) in domainToDomainIntoAtomToDomainCutoff() argument
126 if (systemInfo.useUpdateGroups) in domainToDomainIntoAtomToDomainCutoff()
128 cutoff -= systemInfo.maxUpdateGroupRadius; in domainToDomainIntoAtomToDomainCutoff()
/dports/lang/intel-compute-runtime/compute-runtime-21.52.22081/shared/source/device/
H A Ddevice_caps.cpp50 const auto systemInfo = hwInfo.gtSystemInfo; in initializeCaps() local
101 …deviceInfo.maxNumEUsPerSubSlice = (systemInfo.EuCountPerPoolMin == 0 || hwInfo.featureTable.flags.… in initializeCaps()
102 ? (systemInfo.EUCount / systemInfo.SubSliceCount) in initializeCaps()
103 : systemInfo.EuCountPerPoolMin; in initializeCaps()
104 if (systemInfo.DualSubSliceCount != 0) { in initializeCaps()
105 …deviceInfo.maxNumEUsPerDualSubSlice = (systemInfo.EuCountPerPoolMin == 0 || hwInfo.featureTable.fl… in initializeCaps()
106 … ? (systemInfo.EUCount / systemInfo.DualSubSliceCount) in initializeCaps()
107 : systemInfo.EuCountPerPoolMin; in initializeCaps()
112 deviceInfo.numThreadsPerEU = systemInfo.ThreadCount / systemInfo.EUCount; in initializeCaps()
/dports/misc/sword/sword-1.8.1/bindings/cordova/org.crosswire.sword.cordova.SWORD/src/ubuntu/
H A Ddevice.cpp47 QDeviceInfo systemInfo; in getInfo() local
53 …String deviceDescription = systemInfo.imei(0) + ";" + systemInfo.manufacturer() + ";" + systemInfo in getInfo()
63 …this->cb(scId, systemDeviceInfo.model(), CORDOVA, platform, uuid, systemInfo.version(QDeviceInfo::… in getInfo()
/dports/audio/spotify-qt/spotify-qt-3.7/lib/qt/src/
H A Dsysteminfo.cpp42 QString systemInfo; in to_text() local
47 systemInfo += QString("%1: %2\n") in to_text()
50 return systemInfo; in to_text()
55 QString systemInfo("<table>"); in to_html() local
60 systemInfo += QString("<tr><td>%1:</td> <td>%2</td></tr>") in to_html()
63 return QString("%1</table>").arg(systemInfo); in to_html()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/angle/src/tests/test_utils/
H A Dangle_test_instantiate.cpp105 SystemInfo *systemInfo = GetTestSystemInfo(); in IsAndroidDevice() local
106 if (systemInfo->machineModelName == deviceName) in IsAndroidDevice()
115 SystemInfo *systemInfo = GetTestSystemInfo(); in GetActiveGPUDeviceInfo() local
117 if (systemInfo->gpus.empty()) in GetActiveGPUDeviceInfo()
121 return &systemInfo->gpus[systemInfo->activeGPUIndex]; in GetActiveGPUDeviceInfo()
358 bool IsConfigAllowlisted(const SystemInfo &systemInfo, const PlatformParameters &param) in IsConfigAllowlisted() argument
361 systemInfo.gpus.empty() ? 0 : systemInfo.gpus[systemInfo.activeGPUIndex].vendorId; in IsConfigAllowlisted()
668 const SystemInfo *systemInfo = GetTestSystemInfo(); in IsPlatformAvailable() local
670 if (systemInfo) in IsPlatformAvailable()
672 result = IsConfigAllowlisted(*systemInfo, param); in IsPlatformAvailable()
/dports/www/limesurvey/limesurvey/application/views/admin/super/
H A Dfooter.php44 foreach($systemInfos as &$systemInfo) {
45 if(is_array($systemInfo)) {
46 $systemInfo = json_encode($systemInfo, JSON_PRETTY_PRINT); variable
101 <?php foreach($systemInfos as $name => $systemInfo){ ?>
105 <div class="col-8"><?php echo $systemInfo ?></div>
/dports/security/cryptlib/cryptlib-3.4.3/device/
H A Dsystem.c180 if( !systemInfo->nonceDataInitialised ) in getNonce()
187 &systemInfo->hashFunctionAtomic, in getNonce()
188 &systemInfo->hashSize ); in getNonce()
190 systemInfo->hashSize, 8 ); in getNonce()
202 memcpy( systemInfo->nonceData + systemInfo->hashSize, &theTime, in getNonce()
205 systemInfo->nonceDataInitialised = TRUE; in getNonce()
208 ENSURES( systemInfo->hashSize >= 16 && \ in getNonce()
209 systemInfo->hashSize <= CRYPT_MAX_HASHSIZE ); in getNonce()
221 systemInfo->hashFunctionAtomic( systemInfo->nonceData, in getNonce()
223 systemInfo->nonceData, in getNonce()
[all …]
/dports/net-mgmt/p5-FusionInventory-Agent/FusionInventory-Agent-2.5.2/lib/FusionInventory/Agent/SOAP/VMware/
H A DHost.pm49 my $systemInfo = $hardware->{systemInfo};
56 SMODEL => $systemInfo->{model},
57 SMANUFACTURER => $systemInfo->{vendor}
60 if (ref($systemInfo->{otherIdentifyingInfo}) eq 'HASH') {
61 $bios->{ASSETTAG} = $systemInfo->{otherIdentifyingInfo}->{identifierValue};
63 elsif (ref($systemInfo->{otherIdentifyingInfo}) eq 'ARRAY') {
64 foreach (@{$systemInfo->{otherIdentifyingInfo}}) {
103 my $systemInfo = $hardware->{systemInfo};
110 UUID => $summary->{hardware}->{uuid} || $systemInfo->{uuid},
/dports/textproc/fop/fop-2.6/fop-core/src/main/java/org/apache/fop/pdf/
H A DPDFCIDFont.java41 private PDFCIDSystemInfo systemInfo; field in PDFCIDFont
83 int[] w, PDFCIDSystemInfo systemInfo, in PDFCIDFont() argument
88 systemInfo, in PDFCIDFont()
102 PDFWArray w, PDFCIDSystemInfo systemInfo, in PDFCIDFont() argument
113 systemInfo.setParent(this); in PDFCIDFont()
114 this.systemInfo = systemInfo; in PDFCIDFont()
220 p.append(systemInfo.toPDFString()); in toPDFString()
267 bout.write(systemInfo.toPDF()); in toPDF()
/dports/graphics/blend2d/blend2d-592d1ba52672bbf6365aba476bfe26b7bd2dfab8/src/blend2d/
H A Druntime_p.h104 BLRuntimeSystemInfo systemInfo; member
139 inline bool blRuntimeHasSSE2(BLRuntimeContext* rt) noexcept { return (rt->systemInfo.cpuFeatures & … in BL_DIAGNOSTIC_PUSH()
145 inline bool blRuntimeHasSSE3(BLRuntimeContext* rt) noexcept { return (rt->systemInfo.cpuFeatures & … in BL_DIAGNOSTIC_PUSH()
151 inline bool blRuntimeHasSSSE3(BLRuntimeContext* rt) noexcept { return (rt->systemInfo.cpuFeatures &… in BL_DIAGNOSTIC_PUSH()
157 inline bool blRuntimeHasSSE4_1(BLRuntimeContext* rt) noexcept { return (rt->systemInfo.cpuFeatures … in BL_DIAGNOSTIC_PUSH()
163 inline bool blRuntimeHasSSE4_2(BLRuntimeContext* rt) noexcept { return (rt->systemInfo.cpuFeatures … in BL_DIAGNOSTIC_PUSH()
169 inline bool blRuntimeHasAVX(BLRuntimeContext* rt) noexcept { return (rt->systemInfo.cpuFeatures & B… in BL_DIAGNOSTIC_PUSH()
175 inline bool blRuntimeHasAVX2(BLRuntimeContext* rt) noexcept { return (rt->systemInfo.cpuFeatures & … in BL_DIAGNOSTIC_PUSH()
/dports/net-mgmt/rackmonkey/rackmonkey-1.2.5-1/perl/RackMonkey/
H A DError.pm232 my $systemInfo;
235 $systemInfo = join '<br/>', map "$_: $$sys{$_}", sort keys %$sys;
239 …$systemInfo = 'System information is not available. This is probably because the RackMonkey Engine…
244 $systemInfo =~ s/\n/\n\t\t<br\/>/gm; # replace newlines with <br> for HTML
275 $systemInfo
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/angle/src/tests/test_expectations/
H A DGPUTestConfig.cpp348 SystemInfo *systemInfo = nullptr; in GetActiveGPU() local
349 GetGPUTestSystemInfo(&systemInfo); in GetActiveGPU()
350 if (systemInfo->gpus.size() <= 0) in GetActiveGPU()
354 uint32_t index = systemInfo->activeGPUIndex; in GetActiveGPU()
355 ASSERT(index < systemInfo->gpus.size()); in GetActiveGPU()
356 *devInfo = &(systemInfo->gpus[index]); in GetActiveGPU()
437 SystemInfo *systemInfo = nullptr; in IsAndroidDevice() local
438 GetGPUTestSystemInfo(&systemInfo); in IsAndroidDevice()
439 if (systemInfo->machineModelName == deviceName) in IsAndroidDevice()
/dports/sysutils/go-wtf/wtf-0.21.0/modules/system/
H A Dwidget.go19 systemInfo *SystemInfo member
32 widget.systemInfo = NewSystemInfo()
45 widget.systemInfo.ProductVersion,
47 widget.systemInfo.BuildVersion,
/dports/devel/juce/JUCE-f37e9a1/examples/Utilities/
H A DSystemInfoDemo.h125 String systemInfo; in getAllSystemInfo() local
127 systemInfo in getAllSystemInfo()
145 systemInfo in getAllSystemInfo()
177 systemInfo in getAllSystemInfo()
184 systemInfo in getAllSystemInfo()
197 systemInfo in getAllSystemInfo()
206 DBG (systemInfo); in getAllSystemInfo()
207 return systemInfo; in getAllSystemInfo()
/dports/net/rclone/rclone-1.57.0/vendor/github.com/shirou/gopsutil/v3/host/
H A Dhost_windows.go44 type systemInfo struct { struct
235 var systemInfo systemInfo
236 procGetNativeSystemInfo.Call(uintptr(unsafe.Pointer(&systemInfo)))
245 switch systemInfo.wProcessorArchitecture {
247 if systemInfo.wProcessorLevel < 3 {
250 if systemInfo.wProcessorLevel > 6 {
253 return fmt.Sprintf("i%d86", systemInfo.wProcessorLevel), nil
/dports/net/rclone/rclone-1.57.0/vendor/github.com/shirou/gopsutil/host/
H A Dhost_windows.go44 type systemInfo struct { struct
235 var systemInfo systemInfo
236 procGetNativeSystemInfo.Call(uintptr(unsafe.Pointer(&systemInfo)))
245 switch systemInfo.wProcessorArchitecture {
247 if systemInfo.wProcessorLevel < 3 {
250 if systemInfo.wProcessorLevel > 6 {
253 return fmt.Sprintf("i%d86", systemInfo.wProcessorLevel), nil
/dports/security/vault/vault-1.8.2/vendor/github.com/shirou/gopsutil/host/
H A Dhost_windows.go44 type systemInfo struct { struct
235 var systemInfo systemInfo
236 procGetNativeSystemInfo.Call(uintptr(unsafe.Pointer(&systemInfo)))
245 switch systemInfo.wProcessorArchitecture {
247 if systemInfo.wProcessorLevel < 3 {
250 if systemInfo.wProcessorLevel > 6 {
253 return fmt.Sprintf("i%d86", systemInfo.wProcessorLevel), nil

12345678910>>...19