Home
last modified time | relevance | path

Searched refs:DescriptorPool (Results 1 – 25 of 140) sorted by relevance

123456

/external/swiftshader/src/Vulkan/
DVkDescriptorPool.cpp23 DescriptorPool::DescriptorPool(const VkDescriptorPoolCreateInfo* pCreateInfo, void* mem) : in DescriptorPool() function in vk::DescriptorPool
29 void DescriptorPool::destroy(const VkAllocationCallbacks* pAllocator) in destroy()
34 size_t DescriptorPool::ComputeRequiredAllocationSize(const VkDescriptorPoolCreateInfo* pCreateInfo) in ComputeRequiredAllocationSize()
46 VkResult DescriptorPool::allocateSets(uint32_t descriptorSetCount, const VkDescriptorSetLayout* pSe… in allocateSets()
58 VkDescriptorSet DescriptorPool::findAvailableMemory(size_t size) in findAvailableMemory()
100 VkResult DescriptorPool::allocateSets(size_t* sizes, uint32_t numAllocs, VkDescriptorSet* pDescript… in allocateSets()
150 void DescriptorPool::freeSets(uint32_t descriptorSetCount, const VkDescriptorSet* pDescriptorSets) in freeSets()
158 void DescriptorPool::freeSet(const VkDescriptorSet descriptorSet) in freeSet()
168 VkResult DescriptorPool::reset() in reset()
175 size_t DescriptorPool::computeTotalFreeSize() const in computeTotalFreeSize()
DVkDescriptorPool.hpp23 class DescriptorPool : public Object<DescriptorPool, VkDescriptorPool> class
26 DescriptorPool(const VkDescriptorPoolCreateInfo* pCreateInfo, void* mem);
27 ~DescriptorPool() = delete;
57 static inline DescriptorPool* Cast(VkDescriptorPool object) in Cast()
59 return reinterpret_cast<DescriptorPool*>(object); in Cast()
/external/protobuf/src/google/protobuf/
Ddescriptor.cc392 class DescriptorPool::Tables {
468 const DescriptorPool* pool, const string& name);
642 DescriptorPool::Tables::Tables() in Tables()
651 DescriptorPool::Tables::~Tables() { in ~Tables()
702 void DescriptorPool::Tables::AddCheckpoint() { in AddCheckpoint()
706 void DescriptorPool::Tables::ClearLastCheckpoint() { in ClearLastCheckpoint()
718 void DescriptorPool::Tables::RollbackToLastCheckpoint() { in RollbackToLastCheckpoint()
767 inline Symbol DescriptorPool::Tables::FindSymbol(const string& key) const { in FindSymbol()
794 Symbol DescriptorPool::Tables::FindByNameHelper( in FindByNameHelper()
795 const DescriptorPool* pool, const string& name) { in FindByNameHelper()
[all …]
Ddynamic_message.h55 class DescriptorPool; // descriptor.h variable
87 DynamicMessageFactory(const DescriptorPool* pool);
121 const DescriptorPool* pool_;
Ddescriptor.h85 class DescriptorPool; variable
1167 const DescriptorPool* pool() const;
1292 const DescriptorPool* pool_;
1355 class LIBPROTOBUF_EXPORT DescriptorPool {
1358 DescriptorPool();
1384 explicit DescriptorPool(DescriptorDatabase* fallback_database,
1387 ~DescriptorPool();
1392 static const DescriptorPool* generated_pool();
1543 explicit DescriptorPool(const DescriptorPool* underlay);
1556 static DescriptorPool* internal_generated_pool();
[all …]
Ddescriptor_unittest.cc182 class MockErrorCollector : public DescriptorPool::ErrorCollector {
318 DescriptorPool pool_;
471 DescriptorPool pool; in TEST_F()
482 DescriptorPool pool; in TEST_F()
672 DescriptorPool pool_;
958 DescriptorPool pool_;
1061 DescriptorPool pool_;
1238 DescriptorPool pool_;
1405 DescriptorPool pool_;
1581 DescriptorPool pool_;
[all …]
/external/protobuf/php/ext/google/protobuf/
Dprotobuf.h12 struct DescriptorPool;
22 typedef struct DescriptorPool DescriptorPool; typedef
38 extern DescriptorPool* generated_pool; // The actual generated pool
64 struct DescriptorPool { struct
181 DescriptorPool* php_to_descriptor_pool(zval* value TSRMLS_DC);
183 void descriptor_pool_free_c(DescriptorPool* object TSRMLS_DC);
185 void descriptor_pool_init_c_instance(DescriptorPool* pool TSRMLS_DC);
186 PHP_METHOD(DescriptorPool, addMessage);
187 PHP_METHOD(DescriptorPool, finalize);
Ddef.c88 PHP_ME(DescriptorPool, addMessage, NULL, ZEND_ACC_PUBLIC)
89 PHP_ME(DescriptorPool, finalize, NULL, ZEND_ACC_PUBLIC)
93 DEFINE_CLASS(DescriptorPool, descriptor_pool,
96 DescriptorPool *generated_pool; // The actual generated pool
102 generated_pool = ALLOC(DescriptorPool); in ZEND_FUNCTION()
112 void descriptor_pool_init_c_instance(DescriptorPool* pool TSRMLS_DC) { in descriptor_pool_init_c_instance()
120 void descriptor_pool_free_c(DescriptorPool *pool TSRMLS_DC) { in descriptor_pool_free_c()
126 PHP_METHOD(DescriptorPool, addMessage) { in PHP_METHOD() argument
160 PHP_METHOD(DescriptorPool, finalize) { in PHP_METHOD() argument
161 DescriptorPool *self = php_to_descriptor_pool(getThis() TSRMLS_CC); in PHP_METHOD()
[all …]
/external/protobuf/csharp/src/Google.Protobuf/Reflection/
DFileDescriptor.cs46 …iptorData, FileDescriptorProto proto, FileDescriptor[] dependencies, DescriptorPool pool, bool all… in FileDescriptor()
49 DescriptorPool = pool; in FileDescriptor()
182 internal DescriptorPool DescriptorPool { get; } property in Google.Protobuf.Reflection.FileDescriptor
203 T result = DescriptorPool.FindSymbol<T>(name);
242 DescriptorPool pool = new DescriptorPool(dependencies); in BuildFrom()
DMethodDescriptor.cs76 file.DescriptorPool.AddSymbol(this); in MethodDescriptor()
88 IDescriptor lookup = File.DescriptorPool.LookupSymbol(Proto.InputType, this); in CrossLink()
95 lookup = File.DescriptorPool.LookupSymbol(Proto.OutputType, this); in CrossLink()
DEnumDescriptor.cs65 File.DescriptorPool.AddSymbol(this); in EnumDescriptor()
103 return File.DescriptorPool.FindEnumValueByNumber(this, number); in FindValueByNumber()
113 return File.DescriptorPool.FindSymbol<EnumValueDescriptor>(FullName + "." + name); in FindValueByName()
DMessageDescriptor.cs96 file.DescriptorPool.AddSymbol(this); in MessageDescriptor()
201 …public FieldDescriptor FindFieldByName(String name) => File.DescriptorPool.FindSymbol<FieldDescrip…
208 …public FieldDescriptor FindFieldByNumber(int number) => File.DescriptorPool.FindFieldByNumber(this… in FindFieldByNumber()
217 File.DescriptorPool.FindSymbol<T>(FullName + "." + name);
DEnumValueDescriptor.cs49 file.DescriptorPool.AddSymbol(this); in EnumValueDescriptor()
50 file.DescriptorPool.AddEnumValueByNumber(this); in EnumValueDescriptor()
DServiceDescriptor.cs53 file.DescriptorPool.AddSymbol(this); in ServiceDescriptor()
78 return File.DescriptorPool.FindSymbol<MethodDescriptor>(FullName + "." + name); in FindMethodByName()
/external/protobuf/python/google/protobuf/pyext/
Ddescriptor_pool.cc60 static hash_map<const DescriptorPool*, PyDescriptorPool*> descriptor_pool_map;
97 const DescriptorPool* underlay) { in PyDescriptorPool_NewWithUnderlay()
102 cpool->pool = new DescriptorPool(underlay); in PyDescriptorPool_NewWithUnderlay()
122 cpool->pool = new DescriptorPool(database); in PyDescriptorPool_NewWithDatabase()
125 cpool->pool = new DescriptorPool(); in PyDescriptorPool_NewWithDatabase()
387 class BuildFileErrorCollector : public DescriptorPool::ErrorCollector {
556 DescriptorPool::generated_pool()); in InitDescriptorPool()
562 std::make_pair(DescriptorPool::generated_pool(), in InitDescriptorPool()
576 PyDescriptorPool* GetDescriptorPool_FromPool(const DescriptorPool* pool) { in GetDescriptorPool_FromPool()
579 pool == DescriptorPool::generated_pool()) { in GetDescriptorPool_FromPool()
[all …]
Ddescriptor_pool.h62 DescriptorPool* pool;
66 const DescriptorPool* underlay;
158 PyDescriptorPool* GetDescriptorPool_FromPool(const DescriptorPool* pool);
/external/tensorflow/tensorflow/core/util/proto/
Ddescriptors.cc32 std::unique_ptr<tensorflow::protobuf::DescriptorPool>* owned_desc_pool) { in GetDescriptorPoolFromFile()
51 owned_desc_pool->reset(new tensorflow::protobuf::DescriptorPool()); in GetDescriptorPoolFromFile()
66 tensorflow::protobuf::DescriptorPool const** desc_pool, in GetDescriptorPool()
67 std::unique_ptr<tensorflow::protobuf::DescriptorPool>* owned_desc_pool) { in GetDescriptorPool()
Dlocal_descriptor_pool_registration.cc25 tensorflow::protobuf::DescriptorPool const** desc_pool, in Function()
26 std::unique_ptr<tensorflow::protobuf::DescriptorPool>* owned_desc_pool) { in Function()
27 *desc_pool = ::tensorflow::protobuf::DescriptorPool::generated_pool(); in Function()
Ddescriptors.h37 tensorflow::protobuf::DescriptorPool const** desc_pool,
38 std::unique_ptr<tensorflow::protobuf::DescriptorPool>* owned_desc_pool);
Ddescriptor_pool_registry_test.cc25 tensorflow::protobuf::DescriptorPool const** desc_pool, in Function()
26 std::unique_ptr<tensorflow::protobuf::DescriptorPool>* owned_desc_pool) { in Function()
Ddescriptor_pool_registry.h34 tensorflow::protobuf::DescriptorPool const** desc_pool,
35 std::unique_ptr<tensorflow::protobuf::DescriptorPool>* owned_desc_pool)>
/external/protobuf/src/google/protobuf/compiler/
Dparser.cc398 DescriptorPool::ErrorCollector::ErrorLocation location) { in RecordLegacyLocation()
658 message, DescriptorPool::ErrorCollector::NAME); in ParseMessageDefinition()
821 location.RecordLegacyLocation(field, DescriptorPool::ErrorCollector::TYPE); in ParseMessageFieldNoLabel()
894 location.RecordLegacyLocation(field, DescriptorPool::ErrorCollector::NAME); in ParseMessageFieldNoLabel()
904 field, DescriptorPool::ErrorCollector::NUMBER); in ParseMessageFieldNoLabel()
932 group, DescriptorPool::ErrorCollector::NAME); in ParseMessageFieldNoLabel()
1079 field, DescriptorPool::ErrorCollector::DEFAULT_VALUE); in ParseDefaultAssignment()
1216 field, DescriptorPool::ErrorCollector::OPTION_VALUE); in ParseJsonName()
1316 uninterpreted_option, DescriptorPool::ErrorCollector::OPTION_NAME); in ParseOption()
1339 uninterpreted_option, DescriptorPool::ErrorCollector::OPTION_VALUE); in ParseOption()
[all …]
Dimporter.h93 DescriptorPool::ErrorCollector* GetValidationErrorCollector() { in GetValidationErrorCollector()
112 class LIBPROTOBUF_EXPORT ValidationErrorCollector : public DescriptorPool::ErrorCollector {
171 inline const DescriptorPool* pool() const { in pool()
180 DescriptorPool pool_;
/external/grpc-grpc/test/cpp/end2end/
Dproto_server_reflection_test.cc47 ref_desc_pool_ = protobuf::DescriptorPool::generated_pool(); in SetUp()
61 desc_pool_.reset(new protobuf::DescriptorPool(desc_db_.get())); in ResetStub()
122 std::unique_ptr<protobuf::DescriptorPool> desc_pool_;
125 const protobuf::DescriptorPool* ref_desc_pool_;
/external/protobuf/src/google/protobuf/util/
Dtype_resolver_util.h39 class DescriptorPool; variable
46 const string& url_prefix, const DescriptorPool* pool);

123456