Home
last modified time | relevance | path

Searched refs:GetInfo (Results 1 – 25 of 53) sorted by relevance

123

/third_party/skia/third_party/externals/dawn/src/tests/unittests/
DBuddyMemoryAllocatorTests.cpp80 ASSERT_EQ(invalidAllocation.GetInfo().mMethod, AllocationMethod::kInvalid); in TEST()
84 ASSERT_EQ(allocation1.GetInfo().mBlockOffset, 0u); in TEST()
85 ASSERT_EQ(allocation1.GetInfo().mMethod, AllocationMethod::kSubAllocated); in TEST()
91 ASSERT_EQ(invalidAllocation.GetInfo().mMethod, AllocationMethod::kInvalid); in TEST()
113 ASSERT_EQ(invalidAllocation.GetInfo().mMethod, AllocationMethod::kInvalid); in TEST()
117 ASSERT_EQ(invalidAllocation.GetInfo().mMethod, AllocationMethod::kInvalid); in TEST()
121 ASSERT_EQ(allocation1.GetInfo().mBlockOffset, 0u); in TEST()
122 ASSERT_EQ(allocation1.GetInfo().mMethod, AllocationMethod::kSubAllocated); in TEST()
128 ASSERT_EQ(allocation2.GetInfo().mBlockOffset, heapSize); in TEST()
129 ASSERT_EQ(allocation2.GetInfo().mMethod, AllocationMethod::kSubAllocated); in TEST()
[all …]
/third_party/skia/third_party/externals/dawn/src/dawn_native/d3d12/
DResourceAllocatorManagerD3D12.cpp205 if (subAllocation.GetInfo().mMethod != AllocationMethod::kInvalid) { in AllocateMemory()
214 if (directAllocation.GetInfo().mMethod != AllocationMethod::kInvalid) { in AllocateMemory()
225 if (allocation.GetInfo().mMethod == AllocationMethod::kSubAllocated) { in Tick()
233 if (allocation.GetInfo().mMethod == AllocationMethod::kInvalid) { in DeallocateMemory()
242 if (allocation.GetInfo().mMethod == AllocationMethod::kDirect) { in DeallocateMemory()
254 ASSERT(allocation.GetInfo().mMethod == AllocationMethod::kSubAllocated); in FreeMemory()
311 if (allocation.GetInfo().mMethod == AllocationMethod::kInvalid) { in CreatePlacedResource()
339 return ResourceHeapAllocation{allocation.GetInfo(), allocation.GetOffset(), in CreatePlacedResource()
DStagingBufferD3D12.cpp59 if (mUploadHeap.GetInfo().mMethod == AllocationMethod::kInvalid) { in ~StagingBuffer()
/third_party/mingw-w64/mingw-w64-headers/direct-x/include/
Daustream.h399 virtual HRESULT STDMETHODCALLTYPE GetInfo(
434 HRESULT (STDMETHODCALLTYPE *GetInfo)(
459 #define IMemoryData_GetInfo(This,pdwLength,ppbData,pcbActualData) (This)->lpVtbl->GetInfo(This,pdwL…
477 return This->lpVtbl->GetInfo(This,pdwLength,ppbData,pcbActualData);
534 HRESULT (STDMETHODCALLTYPE *GetInfo)(
568 #define IAudioData_GetInfo(This,pdwLength,ppbData,pcbActualData) (This)->lpVtbl->GetInfo(This,pdwLe…
589 return This->lpVtbl->GetInfo(This,pdwLength,ppbData,pcbActualData);
Daustream.idl82 HRESULT GetInfo(
/third_party/gn/src/gn/
Dfunction_write_file_unittest.cc103 foo_file.GetInfo(&original_info); in TEST_F()
109 foo_file.GetInfo(&new_info); in TEST_F()
/third_party/skia/third_party/externals/dawn/src/dawn_native/vulkan/
DResourceMemoryAllocatorVk.cpp156 if (subAllocation.GetInfo().mMethod != AllocationMethod::kInvalid) { in Allocate()
184 switch (allocation->GetInfo().mMethod) { in Deallocate()
221 ASSERT(allocation.GetInfo().mMethod == AllocationMethod::kSubAllocated); in Tick()
/third_party/mingw-w64/mingw-w64-headers/include/
Dmsdadc.h121 virtual HRESULT WINAPI GetInfo(ULONG cInfo,DCINFOTYPE rgeInfoType[],DCINFO **prgInfo) = 0;
130 … HRESULT (WINAPI *GetInfo)(IDCInfo *This,ULONG cInfo,DCINFOTYPE rgeInfoType[],DCINFO **prgInfo);
141 #define IDCInfo_GetInfo(This,cInfo,rgeInfoType,prgInfo) (This)->lpVtbl->GetInfo(This,cInfo,rgeInfoT…
Diiisext.h168 HRESULT (WINAPI *GetInfo)(IISApplicationPool *This,void *retval);
198 #define IISApplicationPool_GetInfo(This,retval) (This)->lpVtbl->GetInfo(This,retval)
243 HRESULT (WINAPI *GetInfo)(IISApplicationPools *This,void *retval);
269 #define IISApplicationPools_GetInfo(This,retval) (This)->lpVtbl->GetInfo(This,retval)
319 HRESULT (WINAPI *GetInfo)(IISWebService *This,void *retval);
361 #define IISWebService_GetInfo(This,retval) (This)->lpVtbl->GetInfo(This,retval)
450 HRESULT (WINAPI *GetInfo)(IISDsCrMap *This,void *retval);
483 #define IISDsCrMap_GetInfo(This,retval) (This)->lpVtbl->GetInfo(This,retval)
549 HRESULT (WINAPI *GetInfo)(IISApp *This,void *retval);
586 #define IISApp_GetInfo(This,retval) (This)->lpVtbl->GetInfo(This,retval)
[all …]
Dwmiutils.h116 virtual HRESULT WINAPI GetInfo(ULONG uRequestedInfo,ULONGLONG *puResponse) = 0;
133 HRESULT (WINAPI *GetInfo)(IWbemPathKeyList *This,ULONG uRequestedInfo,ULONGLONG *puResponse);
152 #define IWbemPathKeyList_GetInfo(This,uRequestedInfo,puResponse) (This)->lpVtbl->GetInfo(This,uRequ…
186 virtual HRESULT WINAPI GetInfo(ULONG uRequestedInfo,ULONGLONG *puResponse) = 0;
219 HRESULT (WINAPI *GetInfo)(IWbemPath *This,ULONG uRequestedInfo,ULONGLONG *puResponse);
254 #define IWbemPath_GetInfo(This,uRequestedInfo,puResponse) (This)->lpVtbl->GetInfo(This,uRequestedIn…
Dctfutb.h121 virtual HRESULT STDMETHODCALLTYPE GetInfo(
154 HRESULT (STDMETHODCALLTYPE *GetInfo)(
184 #define ITfLangBarItem_GetInfo(This,pInfo) (This)->lpVtbl->GetInfo(This,pInfo)
201 return This->lpVtbl->GetInfo(This,pInfo);
/third_party/skia/third_party/externals/dawn/src/dawn_native/
DResourceMemoryAllocation.cpp41 AllocationInfo ResourceMemoryAllocation::GetInfo() const { in GetInfo() function in dawn_native::ResourceMemoryAllocation
DResourceMemoryAllocation.h68 AllocationInfo GetInfo() const;
DBuddyMemoryAllocator.cpp89 const AllocationInfo info = allocation.GetInfo(); in Deallocate()
/third_party/grpc/src/cpp/common/
Dchannel_filter.cc47 void ChannelData::GetInfo(grpc_channel_element* elem, in GetInfo() function in grpc::ChannelData
Dchannel_filter.h249 virtual void GetInfo(grpc_channel_element* elem,
317 channel_data->GetInfo(elem, channel_info); in GetChannelInfo()
/third_party/skia/third_party/externals/abseil-cpp/absl/container/internal/
Dhashtablez_sampler_test.cc48 static HashtablezInfo* GetInfo(HashtablezInfoHandle* h) { return h->info_; } in GetInfo() function in absl::container_internal::HashtablezInfoHandlePeer
54 static HashtablezInfo* GetInfo(HashtablezInfoHandle*) { return nullptr; }
237 auto* info = HashtablezInfoHandlePeer::GetInfo(&h); in TEST()
/third_party/abseil-cpp/absl/container/internal/
Dhashtablez_sampler_test.cc48 static HashtablezInfo* GetInfo(HashtablezInfoHandle* h) { return h->info_; } in GetInfo() function in absl::container_internal::HashtablezInfoHandlePeer
54 static HashtablezInfo* GetInfo(HashtablezInfoHandle*) { return nullptr; }
231 auto* info = HashtablezInfoHandlePeer::GetInfo(&h); in TEST()
/third_party/gn/src/base/files/
Dfile_enumerator.h134 FileInfo GetInfo() const;
Dfile.h222 bool GetInfo(Info* info);
Dfile_enumerator_posix.cc161 FileEnumerator::FileInfo FileEnumerator::GetInfo() const { in GetInfo() function in base::FileEnumerator
Dfile_enumerator_win.cc103 FileEnumerator::FileInfo FileEnumerator::GetInfo() const { in GetInfo() function in base::FileEnumerator
/third_party/node/deps/zlib/google/
Dzip_writer.cc61 if (!file.GetInfo(&file_info)) in AddFileEntryToZip()
/third_party/skia/third_party/externals/zlib/google/
Dzip_writer.cc62 if (!file.GetInfo(&file_info)) in AddFileEntryToZip()
/third_party/flutter/skia/third_party/externals/zlib/google/
Dzip_writer.cc61 if (!file.GetInfo(&file_info)) in AddFileEntryToZip()

123