Searched refs:new_pool (Results 1 – 10 of 10) sorted by relevance
/external/rust/crates/vulkano/src/device/ |
D | mod.rs | 482 let new_pool = StdMemoryPool::new(me.clone()); in standard_pool() localVariable 483 *pool = Arc::downgrade(&new_pool); in standard_pool() 484 new_pool in standard_pool() 496 let new_pool = Arc::new(StdDescriptorPool::new(me.clone())); in standard_descriptor_pool() localVariable 497 *pool = Arc::downgrade(&new_pool); in standard_descriptor_pool() 498 new_pool in standard_descriptor_pool() 517 let new_pool = Arc::new(StandardCommandPool::new(me.clone(), queue)); in standard_command_pool() localVariable 518 *entry.get_mut() = Arc::downgrade(&new_pool); in standard_command_pool() 519 new_pool in standard_command_pool() 522 let new_pool = Arc::new(StandardCommandPool::new(me.clone(), queue)); in standard_command_pool() localVariable [all …]
|
/external/angle/third_party/vulkan-deps/spirv-tools/src/source/opt/ |
D | def_use_manager.cpp | 287 std::unique_ptr<UseListPool> new_pool = MakeUnique<UseListPool>(); in CompactUseRecords() local 289 iter.second.move_nodes(new_pool.get()); in CompactUseRecords() 291 use_pool_ = std::move(new_pool); in CompactUseRecords() 295 std::unique_ptr<UsedIdListPool> new_pool = MakeUnique<UsedIdListPool>(); in CompactUsedIds() local 297 iter.second.move_nodes(new_pool.get()); in CompactUsedIds() 299 used_id_pool_ = std::move(new_pool); in CompactUsedIds()
|
/external/swiftshader/third_party/SPIRV-Tools/source/opt/ |
D | def_use_manager.cpp | 287 std::unique_ptr<UseListPool> new_pool = MakeUnique<UseListPool>(); in CompactUseRecords() local 289 iter.second.move_nodes(new_pool.get()); in CompactUseRecords() 291 use_pool_ = std::move(new_pool); in CompactUseRecords() 295 std::unique_ptr<UsedIdListPool> new_pool = MakeUnique<UsedIdListPool>(); in CompactUsedIds() local 297 iter.second.move_nodes(new_pool.get()); in CompactUsedIds() 299 used_id_pool_ = std::move(new_pool); in CompactUsedIds()
|
/external/angle/third_party/vulkan-deps/spirv-tools/src/source/util/ |
D | pooled_linked_list.h | 205 void move_nodes(NodePool* new_pool) { in move_nodes() argument 212 int32_t this_entry = new_pool->insert(node.element); in move_nodes() 217 new_pool->at(prev_entry).next = this_entry; in move_nodes() 224 nodes_ = new_pool; in move_nodes()
|
/external/swiftshader/third_party/SPIRV-Tools/source/util/ |
D | pooled_linked_list.h | 205 void move_nodes(NodePool* new_pool) { in move_nodes() argument 212 int32_t this_entry = new_pool->insert(node.element); in move_nodes() 217 new_pool->at(prev_entry).next = this_entry; in move_nodes() 224 nodes_ = new_pool; in move_nodes()
|
/external/rust/crates/vulkano/src/descriptor_set/pool/ |
D | standard.rs | 111 let mut new_pool = UnsafeDescriptorPool::new(self.device.clone(), &count, 40, true)?; in alloc() localVariable 114 match new_pool.alloc(Some(layout)) { in alloc() 130 pool: new_pool, in alloc()
|
/external/rust/crates/vulkano/src/descriptor_set/ |
D | fixed_size_pool.rs | 229 let mut new_pool = in alloc() localVariable 232 match new_pool.alloc((0..self.next_capacity).map(|_| layout)) { in alloc() 256 actual_pool: new_pool, in alloc()
|
/external/rust/crates/vulkano/src/command_buffer/pool/ |
D | standard.rs | 102 let new_pool = in alloc() localVariable 105 pool: Mutex::new(new_pool), in alloc()
|
/external/rust/crates/regex/src/ |
D | exec.rs | 313 let pool = ExecReadOnly::new_pool(&ro); in build() 354 let pool = ExecReadOnly::new_pool(&ro); in build() 1318 let pool = ExecReadOnly::new_pool(&self.ro); in clone() 1453 fn new_pool(ro: &Arc<ExecReadOnly>) -> Box<Pool<ProgramCache>> { in new_pool() method
|
/external/ipsec-tools/src/racoon/ |
D | isakmp_cfg.c | 2078 struct isakmp_cfg_port *new_pool; local 2105 new_pool = racoon_realloc(isakmp_cfg_config.port_pool, len); 2106 if (new_pool == NULL) { 2121 bzero((char *)new_pool + (old_size * unit), 2125 isakmp_cfg_config.port_pool = new_pool;
|