Home
last modified time | relevance | path

Searched refs:Adapter (Results 1 - 25 of 73) sorted by relevance

123

/third_party/skia/third_party/externals/dawn/src/dawn_native/
H A DDawnNative.cpp38 // Adapter
40 Adapter::Adapter() = default;
42 Adapter::Adapter(AdapterBase* impl) : mImpl(impl) { in Adapter() function in dawn_native::Adapter
45 Adapter::~Adapter() { in ~Adapter()
49 Adapter::Adapter(const Adapter
[all...]
/third_party/typescript/tests/baselines/reference/
H A DtypeFromPropertyAssignmentWithExport.js4 export const Adapter = {};
6 Adapter.prop = {};
9 Adapter.asyncMethod = function() {}
15 exports.Adapter = void 0;
16 exports.Adapter = {};
17 exports.Adapter.prop = {};
19 exports.Adapter.asyncMethod = function () { };
/third_party/skia/third_party/externals/dawn/src/dawn_native/d3d12/
H A DAdapterD3D12.cpp29 Adapter::Adapter(Backend* backend, ComPtr<IDXGIAdapter3> hardwareAdapter) in Adapter() function in dawn_native::d3d12::Adapter
35 Adapter::~Adapter() { in ~Adapter()
39 bool Adapter::SupportsExternalImages() const { in SupportsExternalImages()
44 const D3D12DeviceInfo& Adapter::GetDeviceInfo() const { in GetDeviceInfo()
48 IDXGIAdapter3* Adapter::GetHardwareAdapter() const { in GetHardwareAdapter()
52 Backend* Adapter::GetBackend() const { in GetBackend()
56 ComPtr<ID3D12Device> Adapter::GetDevice() const { in GetDevice()
60 const gpu_info::D3DDriverVersion& Adapter
[all...]
H A DAdapterD3D12.h18 #include "dawn_native/Adapter.h"
28 class Adapter : public AdapterBase { class
30 Adapter(Backend* backend, ComPtr<IDXGIAdapter3> hardwareAdapter);
31 ~Adapter() override;
H A DD3D12Info.h24 class Adapter;
38 ResultOrError<D3D12DeviceInfo> GatherDeviceInfo(const Adapter& adapter);
H A DForward.h22 class Adapter;
42 using AdapterType = Adapter;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
H A DFormatCommon.h20 detail::format_adapter &Adapter; member
25 FmtAlign(detail::format_adapter &Adapter, AlignStyle Where, size_t Amount, in FmtAlign()
27 : Adapter(Adapter), Where(Where), Amount(Amount), Fill(Fill) {} in FmtAlign()
36 Adapter.format(S, Options); in format()
42 Adapter.format(Stream, Options); in format()
H A DFormatAdapters.h39 auto Adapter = detail::build_format_adapter(std::forward<T>(this->Item)); in format() local
40 FmtAlign(Adapter, Where, Amount, Fill).format(Stream, Style); in format()
53 auto Adapter = detail::build_format_adapter(std::forward<T>(this->Item)); in format() local
55 Adapter.format(Stream, Style); in format()
68 auto Adapter = detail::build_format_adapter(std::forward<T>(this->Item)); in format() local
70 Adapter.format(Stream, Style); in format()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/Support/
H A DFormatCommon.h21 detail::format_adapter &Adapter; member
25 FmtAlign(detail::format_adapter &Adapter, AlignStyle Where, size_t Amount) in FmtAlign()
26 : Adapter(Adapter), Where(Where), Amount(Amount) {} in FmtAlign()
35 Adapter.format(S, Options); in format()
41 Adapter.format(Stream, Options); in format()
/third_party/skia/third_party/externals/dawn/src/include/dawn_native/
H A DDawnNative.h63 // An optional parameter of Adapter::CreateDevice() to send additional information when creating
97 class DAWN_NATIVE_EXPORT Adapter { class
99 Adapter();
100 Adapter(AdapterBase* impl);
101 ~Adapter();
103 Adapter(const Adapter& other);
104 Adapter& operator=(const Adapter& other);
122 // Check that the Adapter i
[all...]
/third_party/skia/third_party/externals/dawn/src/dawn_native/vulkan/
H A DAdapterVk.cpp25 Adapter::Adapter(InstanceBase* instance, in Adapter() function in dawn_native::vulkan::Adapter
33 const VulkanDeviceInfo& Adapter::GetDeviceInfo() const { in GetDeviceInfo()
37 VkPhysicalDevice Adapter::GetPhysicalDevice() const { in GetPhysicalDevice()
41 VulkanInstance* Adapter::GetVulkanInstance() const { in GetVulkanInstance()
45 bool Adapter::IsDepthStencilFormatSupported(VkFormat format) { in IsDepthStencilFormatSupported()
55 MaybeError Adapter::InitializeImpl() { in InitializeImpl()
90 MaybeError Adapter::InitializeSupportedFeaturesImpl() { in InitializeSupportedFeaturesImpl()
157 MaybeError Adapter::InitializeSupportedLimitsImpl(CombinedLimits* limits) { in InitializeSupportedLimitsImpl()
328 bool Adapter
[all...]
H A DAdapterVk.h18 #include "dawn_native/Adapter.h"
28 class Adapter : public AdapterBase { class
30 Adapter(InstanceBase* instance,
33 ~Adapter() override = default;
H A DVulkanInfo.h27 class Adapter;
84 ResultOrError<VulkanDeviceInfo> GatherDeviceInfo(const Adapter& adapter);
85 ResultOrError<VulkanSurfaceInfo> GatherSurfaceInfo(const Adapter& adapter,
/third_party/skia/third_party/externals/dawn/src/dawn_native/null/
H A DDeviceNull.cpp27 Adapter::Adapter(InstanceBase* instance) : AdapterBase(instance, wgpu::BackendType::Null) { in Adapter() function in dawn_native::null::Adapter
34 Adapter::~Adapter() = default;
36 bool Adapter::SupportsExternalImages() const { in SupportsExternalImages()
41 void Adapter::SetSupportedFeatures(const std::vector<const char*>& requiredFeatures) { in SetSupportedFeatures()
45 MaybeError Adapter::InitializeImpl() { in InitializeImpl()
49 MaybeError Adapter::InitializeSupportedFeaturesImpl() { in InitializeSupportedFeaturesImpl()
55 MaybeError Adapter::InitializeSupportedLimitsImpl(CombinedLimits* limits) { in InitializeSupportedLimitsImpl()
60 ResultOrError<DeviceBase*> Adapter
[all...]
H A DDeviceNull.h18 #include "dawn_native/Adapter.h"
41 class Adapter;
59 using AdapterType = Adapter;
89 static ResultOrError<Device*> Create(Adapter* adapter,
169 class Adapter : public AdapterBase { class
171 Adapter(InstanceBase* instance);
172 ~Adapter() override;
/third_party/skia/third_party/externals/dawn/src/dawn_native/opengl/
H A DBackendGL.cpp118 // The OpenGL backend's Adapter.
120 class Adapter : public AdapterBase { class
122 Adapter(InstanceBase* instance, wgpu::BackendType backendType) in Adapter() function in dawn_native::opengl::Adapter
131 ~Adapter() override = default;
291 std::unique_ptr<Adapter> adapter = std::make_unique<Adapter>( in DiscoverAdapters()
H A DForward.h22 class Adapter;
41 using AdapterType = Adapter;
/third_party/skia/third_party/externals/dawn/src/tests/unittests/
H A DFeatureTests.cpp42 dawn_native::null::Adapter mAdapterBase;
46 // Adapter.
56 dawn_native::Adapter adapterWithoutFeature(&mAdapterBase); in TEST_F()
68 dawn_native::Adapter adapter(&mAdapterBase); in TEST_F()
/third_party/vixl/src/aarch64/
H A Ddecoder-aarch64.cc66 auto msg = String("Can't find decode node ", GetAllocator().Adapter()) + name.data() + ".\n"; in GetDecodeNode()
93 auto root_node{String("Root", GetAllocator().Adapter())}; in ConstructDecodeGraph()
460 CompileNodeForBits(decoder, String("unallocated", GetAllocator().Adapter()), 0); in TryCompileOptimisedDecodeTable()
463 CompileNodeForBits(decoder, String(pattern_table_[0].handler, GetAllocator().Adapter()), 1); in TryCompileOptimisedDecodeTable()
478 String otherwise("unallocated", GetAllocator().Adapter()); in Compile()
482 Vector<MaskValuePair> matches(GetAllocator().Adapter()); in Compile()
505 CompileNodeForBits(decoder, String(pattern_table_[i].handler, GetAllocator().Adapter()), bits); in Compile()
514 CompileNodeForBits(decoder, String(otherwise, GetAllocator().Adapter()), bits); in Compile()
/third_party/vulkan-loader/tests/framework/shim/
H A Dwindows_shim.cpp192 /* [in] */ UINT Adapter, in ShimEnumAdapters1_1()
195 if (Adapter >= platform_shim.dxgi_adapters.size()) { in ShimEnumAdapters1_1()
199 *ppAdapter = setup_and_get_IDXGIAdapter1(platform_shim.dxgi_adapters.at(Adapter)); in ShimEnumAdapters1_1()
205 /* [in] */ UINT Adapter, in ShimEnumAdapters1_6()
208 if (Adapter >= platform_shim.dxgi_adapters.size()) { in ShimEnumAdapters1_6()
212 *ppAdapter = setup_and_get_IDXGIAdapter1(platform_shim.dxgi_adapters.at(Adapter)); in ShimEnumAdapters1_6()
217 HRESULT __stdcall ShimEnumAdapterByGpuPreference([[maybe_unused]] IDXGIFactory6 *This, _In_ UINT Adapter, in ShimEnumAdapterByGpuPreference() argument
220 if (Adapter >= platform_shim.dxgi_adapters.size()) { in ShimEnumAdapterByGpuPreference()
228 *ppvAdapter = setup_and_get_IDXGIAdapter1(platform_shim.dxgi_adapters.at(Adapter)); in ShimEnumAdapterByGpuPreference()
191 ShimEnumAdapters1_1([[maybe_unused]] IDXGIFactory1 *This, UINT Adapter, _COM_Outptr_ IDXGIAdapter1 **ppAdapter) ShimEnumAdapters1_1() argument
204 ShimEnumAdapters1_6([[maybe_unused]] IDXGIFactory6 *This, UINT Adapter, _COM_Outptr_ IDXGIAdapter1 **ppAdapter) ShimEnumAdapters1_6() argument
/third_party/skia/third_party/externals/dawn/src/fuzzers/
H A DDawnWireServerAndVulkanBackendFuzzer.cpp28 std::vector<dawn_native::Adapter> adapters = instance->GetAdapters(); in LLVMFuzzerTestOneInput()
31 for (dawn_native::Adapter adapter : adapters) { in LLVMFuzzerTestOneInput()
H A DDawnWireServerAndD3D12BackendFuzzer.cpp28 std::vector<dawn_native::Adapter> adapters = instance->GetAdapters(); in LLVMFuzzerTestOneInput()
31 for (dawn_native::Adapter adapter : adapters) { in LLVMFuzzerTestOneInput()
H A DDawnWireServerAndFrontendFuzzer.cpp29 std::vector<dawn_native::Adapter> adapters = instance->GetAdapters(); in LLVMFuzzerTestOneInput()
32 for (dawn_native::Adapter adapter : adapters) { in LLVMFuzzerTestOneInput()
/third_party/mesa3d/src/gallium/frontends/d3d10umd/
H A DAdapter.cpp75 Adapter *pAdaptor = (Adapter *)calloc(sizeof *pAdaptor, 1); in OpenAdapterCommon()
261 Adapter *pAdapter = CastAdapter(hAdapter); in CloseAdapter()
/third_party/skia/third_party/externals/dawn/src/dawn_node/binding/
H A DGPUAdapter.h26 // GPUAdapter is an implementation of interop::GPUAdapter that wraps a dawn_native::Adapter.
29 GPUAdapter(dawn_native::Adapter a, const Flags& flags);
41 dawn_native::Adapter adapter_;

Completed in 11 milliseconds

123