/third_party/skia/third_party/externals/angle2/src/gpu_info_util/ |
H A D | SystemInfo.h | 7 // SystemInfo.h: gathers information available without starting a GPU driver. 50 struct SystemInfo struct 52 SystemInfo(); 53 ~SystemInfo(); 55 SystemInfo(const SystemInfo &other); 89 bool GetSystemInfo(SystemInfo *info); 92 bool GetSystemInfoVulkan(SystemInfo *info); 138 void GetDualGPUInfo(SystemInfo *info); 141 void PrintSystemInfo(const SystemInfo [all...] |
H A D | SystemInfo.cpp | 7 // SystemInfo.cpp: implementation of the system-agnostic parts of SystemInfo.h 9 #include "gpu_info_util/SystemInfo.h" 61 SystemInfo::SystemInfo() = default; 63 SystemInfo::~SystemInfo() = default; 65 SystemInfo::SystemInfo(const SystemInfo [all...] |
H A D | SystemInfo_vulkan.h | 7 // SystemInfo_vulkan.h: Reusable Vulkan implementation for SystemInfo.h 16 struct SystemInfo; 18 // Reusable vulkan implementation of GetSystemInfo(). See SystemInfo.h. 19 bool GetSystemInfoVulkan(SystemInfo *info); 20 bool GetSystemInfoVulkanWithICD(SystemInfo *info, vk::ICD preferredICD);
|
H A D | SystemInfo_internal.h | 12 #include "gpu_info_util/SystemInfo.h" 23 // Live in SystemInfo.cpp 33 bool GetSystemInfo_mac(SystemInfo *info); 37 bool GetSystemInfo_ios(SystemInfo *info);
|
H A D | SystemInfo_fuchsia.cpp | 7 // SystemInfo_fuchsia.cpp: implementation of the Fuchsia-specific parts of SystemInfo.h 14 bool GetSystemInfo(SystemInfo *info) in GetSystemInfo()
|
H A D | SystemInfo_ios.cpp | 7 // SystemInfo_ios.cpp: implementation of the iOS-specific parts of SystemInfo.h 18 bool GetSystemInfo_ios(SystemInfo *info) in GetSystemInfo_ios()
|
H A D | SystemInfo_android.cpp | 7 // SystemInfo_android.cpp: implementation of the Android-specific parts of SystemInfo.h 37 bool GetSystemInfo(SystemInfo *info) in GetSystemInfo()
|
H A D | SystemInfo_vulkan.cpp | 7 // SystemInfo_vulkan.cpp: Generic vulkan implementation of SystemInfo.h 117 bool GetSystemInfoVulkan(SystemInfo *info) in GetSystemInfoVulkan() 122 bool GetSystemInfoVulkanWithICD(SystemInfo *info, vk::ICD preferredICD) in GetSystemInfoVulkanWithICD()
|
/third_party/skia/third_party/externals/angle2/src/tests/test_utils/ |
H A D | angle_test_instantiate.cpp | 22 #include "gpu_info_util/SystemInfo.h" 106 SystemInfo *systemInfo = GetTestSystemInfo(); in IsAndroidDevice() 120 SystemInfo *systemInfo = GetTestSystemInfo(); in IsAndroid9OrNewer() 130 SystemInfo *systemInfo = GetTestSystemInfo(); in GetActiveGPUDeviceInfo() 186 SystemInfo *GetTestSystemInfo() in GetTestSystemInfo() 188 static SystemInfo *sSystemInfo = nullptr; in GetTestSystemInfo() 191 sSystemInfo = new SystemInfo; in GetTestSystemInfo() 407 bool IsConfigAllowlisted(const SystemInfo &systemInfo, const PlatformParameters ¶m) in IsConfigAllowlisted() 728 const SystemInfo *systemInfo = GetTestSystemInfo(); in IsPlatformAvailable()
|
H A D | angle_test_instantiate.h | 19 struct SystemInfo; 256 bool IsConfigAllowlisted(const SystemInfo &systemInfo, const PlatformParameters ¶m); 259 // not require SystemInfo. 264 SystemInfo *GetTestSystemInfo();
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ObjectYAML/ |
H A D | MinidumpYAML.h | 23 /// SystemInfo), there is a 1:1 mapping between Types and Kinds, but in general 34 SystemInfo, member in llvm::MinidumpYAML::Stream::StreamKind 161 /// SystemInfo minidump stream. 163 minidump::SystemInfo Info; 167 : Stream(StreamKind::SystemInfo, minidump::StreamType::SystemInfo) { in SystemInfoStream() 171 explicit SystemInfoStream(const minidump::SystemInfo &Info, in SystemInfoStream() 173 : Stream(StreamKind::SystemInfo, minidump::StreamType::SystemInfo), in SystemInfoStream() 177 return S->Kind == StreamKind::SystemInfo; in classof() [all...] |
/third_party/skia/third_party/externals/angle2/src/feature_support_util/ |
H A D | feature_support_util_unittest.cpp | 11 #include "../gpu_info_util/SystemInfo.h" 33 SystemInfo mSystemInfo; 66 TEST_F(FeatureSupportUtilTest, SystemInfo) in TEST_F() 68 SystemInfo systemInfo = mSystemInfo; in TEST_F() 100 SystemInfo systemInfo = mSystemInfo; in TEST_F() 148 // Test app1 with a SystemInfo that has an unsupported driver--should fail: in TEST_F() 152 // Test app1 with a SystemInfo that has a supported driver--should pass: in TEST_F()
|
H A D | feature_support_util.cpp | 26 #include "../gpu_info_util/SystemInfo.h" 811 angle::SystemInfo *systemInfo = new angle::SystemInfo; in ANGLEGetSystemInfo() 828 angle::SystemInfo *systemInfo = static_cast<angle::SystemInfo *>(systemInfoHandle); in ANGLEAddDeviceInfoToSystemInfo() 846 angle::SystemInfo *systemInfo = static_cast<angle::SystemInfo *>(systemInfoHandle); in ANGLEShouldBeUsedForApplication() 882 angle::SystemInfo *systemInfo = static_cast<angle::SystemInfo *>(systemInfoHandle); in ANGLEFreeSystemInfoHandle()
|
/third_party/skia/third_party/externals/angle2/src/tests/test_expectations/ |
H A D | GPUTestConfig.cpp | 16 #include "gpu_info_util/SystemInfo.h" 273 // Generic function call to populate the SystemInfo struct. This function will 274 // also cache the SystemInfo struct for future calls. Returns false if the 276 inline bool GetGPUTestSystemInfo(SystemInfo **sysInfo) in GetGPUTestSystemInfo() 278 static SystemInfo *sSystemInfo = nullptr; in GetGPUTestSystemInfo() 282 sSystemInfo = new SystemInfo; in GetGPUTestSystemInfo() 285 std::cout << "Error populating SystemInfo." << std::endl; in GetGPUTestSystemInfo() 306 // Get the active GPUDeviceInfo from the SystemInfo struct. 310 SystemInfo *systemInfo = nullptr; in GetActiveGPU() 322 // Get the vendor ID of the active GPU from the SystemInfo struc [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ObjectYAML/ |
H A D | MinidumpEmitter.cpp | 204 case Stream::StreamKind::SystemInfo: { 205 SystemInfoStream &SystemInfo = cast<SystemInfoStream>(S); 206 File.allocateObject(SystemInfo.Info); 209 SystemInfo.Info.CSDVersionRVA = File.allocateString(SystemInfo.CSDVersion);
|
H A D | MinidumpYAML.cpp | 80 case StreamType::SystemInfo: in getKind() 81 return StreamKind::SystemInfo; in getKind() 110 case StreamKind::SystemInfo: in create() 320 SystemInfo &Info = Stream.Info; in streamMapping() 425 case MinidumpYAML::Stream::StreamKind::SystemInfo: in mapping() 446 case MinidumpYAML::Stream::StreamKind::SystemInfo: in validate() 520 case StreamKind::SystemInfo: { in create()
|
/third_party/skia/third_party/externals/angle2/src/tests/util_tests/ |
H A D | PrintSystemInfoTest.cpp | 16 #include "gpu_info_util/SystemInfo.h" 32 SystemInfo info; in TEST() 50 SystemInfo info; in TEST()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Object/ |
H A D | Minidump.h | 58 /// Returns the contents of the SystemInfo stream, cast to the appropriate 60 /// the stream is smaller than the size of the SystemInfo structure. The 62 Expected<const minidump::SystemInfo &> getSystemInfo() const { in getSystemInfo() 63 return getStream<minidump::SystemInfo>(minidump::StreamType::SystemInfo); in getSystemInfo()
|
/third_party/skia/third_party/externals/angle2/src/tests/ |
H A D | angle_system_info_tests_main.cpp | 33 #include "gpu_info_util/SystemInfo.h" 52 angle::SystemInfo info; in main() 166 TEST(ANGLE, SystemInfo) in TEST()
|
/third_party/benchmark/src/ |
H A D | sysinfo.cc | 849 const SystemInfo& SystemInfo::Get() { in Get() 850 static const SystemInfo* info = new SystemInfo(); in Get() 854 SystemInfo::SystemInfo() : name(GetSystemName()) {} in SystemInfo() function in benchmark::SystemInfo
|
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/gl/apple/ |
H A D | DisplayApple_api.cpp | 13 #include "gpu_info_util/SystemInfo.h" 34 angle::SystemInfo info; in CreateDisplayCGLOrEAGL()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/BinaryFormat/ |
H A D | Minidump.h | 127 /// in the ProcessorArch field of the SystemInfo stream. 134 /// PlatformId field of the SystemInfo stream. 159 /// The SystemInfo stream, containing various information about the system where 161 struct SystemInfo { struct 180 static_assert(sizeof(SystemInfo) == 56, "");
|
/third_party/skia/third_party/externals/angle2/src/tests/egl_tests/ |
H A D | EGLReadinessCheckTest.cpp | 12 #include "gpu_info_util/SystemInfo.h" 51 // Cannot make any useful checks if SystemInfo is not supported. in TEST_P() 52 SystemInfo systemInfo; in TEST_P()
|
/third_party/lzma/CPP/7zip/UI/Console/ |
H A D | makefile | 35 $O\SystemInfo.obj \
|
/third_party/lzma/CPP/7zip/Bundles/LzmaCon/ |
H A D | makefile | 33 $O\SystemInfo.obj \
|