Home
last modified time | relevance | path

Searched defs:pool (Results 1 – 25 of 2494) sorted by relevance

12345678910>>...100

/aosp_15_r20/hardware/google/gfxstream/host/vulkan/
DVkDecoderSnapshot.cpp62 android::base::BumpPool* pool, VkResult input_result, in vkCreateInstance()
78 android::base::BumpPool* pool, VkInstance instance, in vkDestroyInstance()
85 android::base::BumpPool* pool, VkResult input_result, in vkEnumeratePhysicalDevices()
108 android::base::BumpPool* pool, VkPhysicalDevice physicalDevice, in vkGetPhysicalDeviceFeatures()
112 android::base::BumpPool* pool, in vkGetPhysicalDeviceFormatProperties()
116 const uint8_t* snapshotTraceBegin, size_t snapshotTraceBytes, android::base::BumpPool* pool, in vkGetPhysicalDeviceImageFormatProperties()
121 android::base::BumpPool* pool, in vkGetPhysicalDeviceProperties()
126 android::base::BumpPool* pool, in vkGetPhysicalDeviceQueueFamilyProperties()
133 android::base::BumpPool* pool, in vkGetPhysicalDeviceMemoryProperties()
137 android::base::BumpPool* pool, PFN_vkVoidFunction input_result, in vkGetInstanceProcAddr()
[all …]
DVkDecoderGlobalState.cpp1005 VkResult on_vkEnumerateInstanceVersion(android::base::BumpPool* pool, uint32_t* pApiVersion) { in on_vkEnumerateInstanceVersion()
1019 VkResult on_vkCreateInstance(android::base::BumpPool* pool, in on_vkCreateInstance()
1178 void on_vkDestroyInstance(android::base::BumpPool* pool, VkInstance boxed_instance, in on_vkDestroyInstance()
1258 VkResult on_vkEnumeratePhysicalDevices(android::base::BumpPool* pool, VkInstance boxed_instance, in on_vkEnumeratePhysicalDevices()
1340 void on_vkGetPhysicalDeviceFeatures(android::base::BumpPool* pool, in on_vkGetPhysicalDeviceFeatures()
1351 void on_vkGetPhysicalDeviceFeatures2(android::base::BumpPool* pool, in on_vkGetPhysicalDeviceFeatures2()
1437 android::base::BumpPool* pool, VkPhysicalDevice boxed_physicalDevice, VkFormat format, in on_vkGetPhysicalDeviceImageFormatProperties()
1466 android::base::BumpPool* pool, VkPhysicalDevice boxed_physicalDevice, in on_vkGetPhysicalDeviceImageFormatProperties2()
1553 void on_vkGetPhysicalDeviceFormatProperties(android::base::BumpPool* pool, in on_vkGetPhysicalDeviceFormatProperties()
1567 void on_vkGetPhysicalDeviceFormatProperties2(android::base::BumpPool* pool, in on_vkGetPhysicalDeviceFormatProperties2()
[all …]
/aosp_15_r20/external/cronet/third_party/apache-portable-runtime/src/memory/unix/
H A Dapr_pools.c175 apr_pool_t *pool) in apr_allocator_owner_set()
668 APR_DECLARE(void *) apr_palloc(apr_pool_t *pool, apr_size_t in_size) in apr_palloc()
741 APR_DECLARE(void *) apr_pcalloc(apr_pool_t *pool, apr_size_t size) in apr_pcalloc()
757 APR_DECLARE(void) apr_pool_clear(apr_pool_t *pool) in apr_pool_clear()
798 APR_DECLARE(void) apr_pool_destroy(apr_pool_t *pool) in apr_pool_destroy()
873 apr_pool_t *pool; in apr_pool_create_ex() local
962 apr_pool_t *pool; in apr_pool_create_unmanaged_ex() local
1039 apr_pool_t *pool; member
1052 apr_pool_t *pool; in psprintf_flush() local
1117 APR_DECLARE(char *) apr_pvsprintf(apr_pool_t *pool, const char *fmt, va_list ap) in apr_pvsprintf()
[all …]
/aosp_15_r20/external/rust/android-crates-io/crates/futures-executor/tests/
Dlocal_pool.rs33 let mut pool = LocalPool::new(); in run_until_single_future() localVariable
45 let mut pool = LocalPool::new(); in run_until_ignores_spawned() localVariable
54 let mut pool = LocalPool::new(); in run_until_executes_spawned() localVariable
69 let mut pool = LocalPool::new(); in run_returns_if_empty() localVariable
79 let mut pool = LocalPool::new(); in run_executes_spawned() localVariable
110 let mut pool = LocalPool::new(); in run_spawn_many() localVariable
132 let mut pool = LocalPool::new(); in try_run_one_returns_if_empty() localVariable
142 let mut pool = LocalPool::new(); in try_run_one_executes_one_ready() localVariable
175 let mut pool = LocalPool::new(); in try_run_one_returns_on_no_progress() localVariable
212 let mut pool = LocalPool::new(); in try_run_one_runs_sub_futures() localVariable
[all …]
/aosp_15_r20/art/libartbase/base/
H A Darena_allocator_test.cc38 MallocArenaPool pool; in TEST_F() local
49 MallocArenaPool pool; in TEST_F() local
76 MallocArenaPool pool; in TEST_F() local
85 MallocArenaPool pool; in TEST_F() local
97 MallocArenaPool pool; in TEST_F() local
110 MallocArenaPool pool; in TEST_F() local
123 MallocArenaPool pool; in TEST_F() local
138 MallocArenaPool pool; in TEST_F() local
155 MallocArenaPool pool; in TEST_F() local
168 MallocArenaPool pool; in TEST_F() local
[all …]
/aosp_15_r20/external/skia/tests/
H A DSkBlockAllocatorTest.cpp24 static size_t ScratchBlockSize(SkSBlockAllocator<N>& pool) { in ScratchBlockSize()
31 static int block_count(const SkSBlockAllocator<N>& pool) { in block_count()
41 static Block* get_block(SkSBlockAllocator<N>& pool, int blockIndex) { in get_block()
60 static size_t total_size(SkSBlockAllocator<N>& pool) { in total_size()
65 static size_t add_block(SkSBlockAllocator<N>& pool) { in add_block()
75 static void* alloc_byte(SkSBlockAllocator<N>& pool) { in alloc_byte()
107 SkSBlockAllocator<1024> pool{}; in DEF_TEST() local
188 SkSBlockAllocator<1024> pool{}; in DEF_TEST() local
241 SkSBlockAllocator<1024> pool{}; in DEF_TEST() local
275 SkSBlockAllocator<1024> pool{}; in DEF_TEST() local
[all …]
/aosp_15_r20/external/rust/android-crates-io/crates/sharded-slab/src/tests/
Dloom_pool.rs74 let pool: Pool<DontDropMe> = Pool::new(); in dont_drop() localVariable
93 let pool: Arc<Pool<DontDropMe>> = Arc::new(Pool::new()); in concurrent_create_with_clear() localVariable
136 let pool = Arc::new(Pool::new()); in racy_clear() localVariable
164 let pool = Arc::new(Pool::new_with_config::<TinyConfig>()); in clear_local_and_reuse() localVariable
198 let pool = Arc::new(Pool::<String>::new()); in create_mut_guard_prevents_access() localVariable
214 let pool = Arc::new(Pool::<String>::new()); in create_mut_guard() localVariable
233 let pool = Arc::new(Pool::<String>::new()); in create_mut_guard_2() localVariable
257 let pool = Arc::new(Pool::<String>::new()); in create_mut_guard_downgrade() localVariable
282 let pool = Arc::new(Pool::<String>::new()); in create_mut_guard_downgrade_clear() localVariable
311 let pool = Arc::new(Pool::<String>::new()); in create_mut_downgrade_during_clear() localVariable
[all …]
/aosp_15_r20/external/mesa3d/src/intel/vulkan/
H A Danv_allocator.c350 anv_block_pool_init(struct anv_block_pool *pool, in anv_block_pool_init()
397 anv_block_pool_finish(struct anv_block_pool *pool) in anv_block_pool_finish()
406 anv_block_pool_expand_range(struct anv_block_pool *pool, uint32_t size) in anv_block_pool_expand_range()
467 anv_block_pool_map(struct anv_block_pool *pool, int32_t offset, uint32_t size) in anv_block_pool_map()
506 anv_block_pool_grow(struct anv_block_pool *pool, struct anv_block_state *state, in anv_block_pool_grow()
572 anv_block_pool_alloc_new(struct anv_block_pool *pool, in anv_block_pool_alloc_new()
635 anv_block_pool_alloc(struct anv_block_pool *pool, in anv_block_pool_alloc()
643 anv_state_pool_init(struct anv_state_pool *pool, in anv_state_pool_init()
679 anv_state_pool_finish(struct anv_state_pool *pool) in anv_state_pool_finish()
687 anv_fixed_size_state_pool_alloc_new(struct anv_fixed_size_state_pool *pool, in anv_fixed_size_state_pool_alloc_new()
[all …]
/aosp_15_r20/external/crosvm/resources/src/
H A Daddress_allocator.rs489 let mut pool = AddressAllocator::new( in example() localVariable
524 let mut pool = AddressAllocator::new_from_list(Vec::new(), None, None).unwrap(); in empty_allocator() localVariable
560 let mut pool = AddressAllocator::new( in allocate_fails_exising_alloc() localVariable
581 let mut pool = AddressAllocator::new( in allocate_fails_not_enough_space() localVariable
606 let mut pool = AddressAllocator::new( in allocate_with_special_alignment() localVariable
638 let mut pool = AddressAllocator::new( in allocate_and_split_allocate_at() localVariable
737 let mut pool = AddressAllocator::new( in allocate_alignment() localVariable
758 let mut pool = AddressAllocator::new( in allocate_retrieve_alloc() localVariable
785 let mut pool = AddressAllocator::new( in allocate_with_alignment_allocator_alignment() localVariable
806 let mut pool = AddressAllocator::new( in allocate_with_alignment_custom_alignment() localVariable
[all …]
/aosp_15_r20/frameworks/base/libs/androidfw/tests/
H A DStringPool_test.cpp37 StringPool pool; in TEST() local
44 StringPool pool; in TEST() local
54 StringPool pool; in TEST() local
65 StringPool pool; in TEST() local
76 StringPool pool; in TEST() local
88 StringPool pool; in TEST() local
115 StringPool pool; in TEST() local
143 StringPool pool; in TEST() local
161 StringPool pool; in TEST() local
175 StringPool pool; in TEST() local
[all …]
/aosp_15_r20/external/mesa3d/src/intel/vulkan_hasvk/
H A Danv_allocator.c367 anv_block_pool_init(struct anv_block_pool *pool, in anv_block_pool_init()
436 anv_block_pool_finish(struct anv_block_pool *pool) in anv_block_pool_finish()
453 anv_block_pool_expand_range(struct anv_block_pool *pool, in anv_block_pool_expand_range()
572 anv_block_pool_map(struct anv_block_pool *pool, int32_t offset, uint32_t size) in anv_block_pool_map()
619 anv_block_pool_grow(struct anv_block_pool *pool, struct anv_block_state *state, in anv_block_pool_grow()
739 anv_block_pool_alloc_new(struct anv_block_pool *pool, in anv_block_pool_alloc_new()
792 anv_block_pool_alloc(struct anv_block_pool *pool, in anv_block_pool_alloc()
812 anv_block_pool_alloc_back(struct anv_block_pool *pool, in anv_block_pool_alloc_back()
828 anv_state_pool_init(struct anv_state_pool *pool, in anv_state_pool_init()
868 anv_state_pool_finish(struct anv_state_pool *pool) in anv_state_pool_finish()
[all …]
/aosp_15_r20/external/perfetto/src/trace_processor/tables/
H A Dpy_tables_benchmark.cc69 StringPool pool; in BM_TableInsert() local
79 StringPool pool; in BM_TableIteratorChild() local
101 StringPool pool; in BM_TableFilterRootId() local
117 StringPool pool; in BM_TableFilterRootIdAndOther() local
138 StringPool pool; in BM_TableFilterChildId() local
157 StringPool pool; in BM_TableFilterChildIdAndSortedInRoot() local
181 StringPool pool; in BM_TableFilterRootNonNullEqMatchMany() local
202 StringPool pool; in BM_TableFilterRootMultipleNonNull() local
225 StringPool pool; in BM_TableFilterRootNullableEqMatchMany() local
250 StringPool pool; in BM_TableFilterChildNonNullEqMatchMany() local
[all …]
/aosp_15_r20/external/mesa3d/src/freedreno/vulkan/
H A Dtu_query_pool.cc97 #define query_iova(type, pool, query, field) \ argument
99 #define query_addr(type, pool, query, field) \ argument
103 #define occlusion_query_iova(pool, query, field) \ argument
105 #define occlusion_query_addr(pool, query, field) \ argument
108 #define pipeline_stat_query_iova(pool, query, field, idx) \ argument
112 #define primitive_query_iova(pool, query, field, stream_id, i) \ argument
117 #define perf_query_iova(pool, query, field, i) \ argument
123 #define primitives_generated_query_iova(pool, query, field) \ argument
126 #define query_available_iova(pool, query) \ argument
129 #define query_result_iova(pool, query, type, i) \ argument
[all …]
/aosp_15_r20/external/deqp/framework/delibs/depool/
H A DdeMemPool.c171 deMemPool *pool; in createPoolInternal() local
244 deMemPool *pool = createPoolInternal(DE_NULL); in deMemPool_createRoot() local
284 deMemPool *pool; in deMemPool_create() local
299 void deMemPool_destroy(deMemPool *pool) in deMemPool_destroy()
381 int deMemPool_getNumChildren(const deMemPool *pool) in deMemPool_getNumChildren()
393 int deMemPool_getNumAllocatedBytes(const deMemPool *pool, bool recurse) in deMemPool_getNumAllocatedBytes()
411 int deMemPool_getCapacity(const deMemPool *pool, bool recurse) in deMemPool_getCapacity()
429 DE_INLINE void *deMemPool_allocInternal(deMemPool *pool, size_t numBytes, uint32_t alignBytes) in deMemPool_allocInternal()
503 void *deMemPool_alloc(deMemPool *pool, size_t numBytes) in deMemPool_alloc()
521 void *deMemPool_alignedAlloc(deMemPool *pool, size_t numBytes, uint32_t alignBytes) in deMemPool_alignedAlloc()
[all …]
/aosp_15_r20/external/angle/infra/specs/
H A Dangle.json23 "pool": "chromium.tests.gpu" string
50 "pool": "chromium.tests.gpu" string
77 "pool": "chromium.tests.gpu" string
103 "pool": "chromium.tests.gpu" string
129 "pool": "chromium.tests.gpu" string
156 "pool": "chromium.tests.gpu" string
182 "pool": "chromium.tests.gpu" string
208 "pool": "chromium.tests.gpu" string
238 "pool": "chromium.tests.gpu" string
267 "pool": "chromium.tests.gpu" string
[all …]
/aosp_15_r20/external/mesa3d/src/gallium/drivers/r600/
H A Dcompute_memory_pool.c57 struct compute_memory_pool* pool = (struct compute_memory_pool*) in compute_memory_pool_new() local
80 static void compute_memory_pool_init(struct compute_memory_pool * pool, in compute_memory_pool_init()
95 void compute_memory_pool_delete(struct compute_memory_pool* pool) in compute_memory_pool_delete()
114 static int compute_memory_grow_defrag_pool(struct compute_memory_pool *pool, in compute_memory_grow_defrag_pool()
176 static void compute_memory_shadow(struct compute_memory_pool* pool, in compute_memory_shadow()
197 int compute_memory_finalize_pending(struct compute_memory_pool* pool, in compute_memory_finalize_pending()
307 static void compute_memory_defrag(struct compute_memory_pool *pool, in compute_memory_defrag()
337 static int compute_memory_promote_item(struct compute_memory_pool *pool, in compute_memory_promote_item()
386 void compute_memory_demote_item(struct compute_memory_pool *pool, in compute_memory_demote_item()
447 static void compute_memory_move_item(struct compute_memory_pool *pool, in compute_memory_move_item()
[all …]
/aosp_15_r20/external/swiftshader/third_party/marl/src/
H A Dpool_test.cpp22 marl::UnboundedPool<int> pool; in TEST_P() local
26 marl::BoundedPool<int, 10> pool; in TEST_P() local
40 marl::UnboundedPool<int> pool; in TEST_P() local
47 marl::UnboundedPool<int> pool; in TEST_P() local
60 marl::BoundedPool<int, 100> pool; in TEST_P() local
67 marl::BoundedPool<int, 10> pool; in TEST_P() local
95 marl::UnboundedPool<CtorDtorCounter, marl::PoolPolicy::Reconstruct> pool; in TEST_P() local
116 marl::BoundedPool<CtorDtorCounter, 10, marl::PoolPolicy::Reconstruct> pool; in TEST_P() local
138 marl::UnboundedPool<CtorDtorCounter, marl::PoolPolicy::Preserve> pool; in TEST_P() local
162 marl::BoundedPool<CtorDtorCounter, 10, marl::PoolPolicy::Preserve> pool; in TEST_P() local
[all …]
/aosp_15_r20/external/perfetto/src/trace_processor/db/column/
H A Dstring_storage_unittest.cc45 StringPool pool; in TEST() local
106 StringPool pool; in TEST() local
158 StringPool pool; in TEST() local
216 StringPool pool; in TEST() local
235 StringPool pool; in TEST() local
254 StringPool pool; in TEST() local
268 StringPool pool; in TEST() local
283 StringPool pool; in TEST() local
326 StringPool pool; in TEST() local
369 StringPool pool; in TEST() local
[all …]
/aosp_15_r20/external/webrtc/common_video/
H A Dvideo_frame_buffer_pool_unittest.cc24 VideoFrameBufferPool pool; in TEST() local
43 VideoFrameBufferPool pool(/*zero_initialize=*/false, 1); in TEST() local
59 VideoFrameBufferPool pool; in TEST() local
70 VideoFrameBufferPool pool(false, 1); in TEST() local
77 VideoFrameBufferPool pool(false, 1); in TEST() local
83 VideoFrameBufferPool pool(false, 1); in TEST() local
89 VideoFrameBufferPool pool(false, 1); in TEST() local
95 VideoFrameBufferPool pool(false, 1); in TEST() local
101 VideoFrameBufferPool pool(false, 1); in TEST() local
107 VideoFrameBufferPool pool(false, 1); in TEST() local
/aosp_15_r20/external/rust/android-crates-io/crates/threadpool/src/
Dlib.rs794 let mut pool = ThreadPool::new(TEST_TASKS); in test_set_num_threads_increasing() localVariable
815 let mut pool = ThreadPool::new(TEST_TASKS); in test_set_num_threads_decreasing() localVariable
833 let pool = ThreadPool::new(TEST_TASKS); in test_active_count() localVariable
848 let pool = ThreadPool::new(TEST_TASKS); in test_works() localVariable
869 let pool = ThreadPool::new(TEST_TASKS); in test_recovery_from_subtask_panic() localVariable
893 let pool = ThreadPool::new(TEST_TASKS); in test_should_not_panic_on_drop_if_subtasks_panic_after_drop() localVariable
915 let pool = ThreadPool::new(TEST_TASKS); in test_massive_task_creation() localVariable
956 let mut pool = ThreadPool::new(test_tasks_begin); in test_shrink() localVariable
993 let mut pool = ThreadPool::with_name(name.to_owned(), 2); in test_name() localVariable
1027 let pool = ThreadPool::new(4); in test_debug() localVariable
[all …]
/aosp_15_r20/external/mesa3d/src/gfxstream/guest/vulkan_enc/
H A DVkEncoder.cpp80 auto pool = mImpl->pool(); in vkCreateInstance() local
176 auto pool = mImpl->pool(); in vkDestroyInstance() local
251 auto pool = mImpl->pool(); in vkEnumeratePhysicalDevices() local
364 auto pool = mImpl->pool(); in vkGetPhysicalDeviceFeatures() local
420 auto pool = mImpl->pool(); in vkGetPhysicalDeviceFormatProperties() local
481 auto pool = mImpl->pool(); in vkGetPhysicalDeviceImageFormatProperties() local
566 auto pool = mImpl->pool(); in vkGetPhysicalDeviceProperties() local
623 auto pool = mImpl->pool(); in vkGetPhysicalDeviceQueueFamilyProperties() local
739 auto pool = mImpl->pool(); in vkGetPhysicalDeviceMemoryProperties() local
795 auto pool = mImpl->pool(); in vkGetInstanceProcAddr() local
[all …]
/aosp_15_r20/external/mesa3d/src/broadcom/vulkan/
H A Dv3dv_query.c31 struct v3dv_query_pool *pool, in kperfmon_create()
59 struct v3dv_query_pool *pool, in kperfmon_destroy()
143 struct v3dv_query_pool *pool) in create_pool_descriptors()
199 struct v3dv_query_pool *pool) in destroy_pool_descriptors()
215 struct v3dv_query_pool *pool) in pool_create_meta_resources()
236 struct v3dv_query_pool *pool) in pool_destroy_meta_resources()
258 struct v3dv_query_pool *pool = in v3dv_CreateQueryPool() local
453 struct v3dv_query_pool *pool, in query_wait_available()
525 struct v3dv_query_pool *pool, in query_check_available()
568 struct v3dv_query_pool *pool, in query_is_available()
[all …]
/aosp_15_r20/libcore/luni/src/test/java/libcore/java/util/concurrent/
H A DForkJoinPoolTest.java38 final ForkJoinPool pool = new ForkJoinPool(); in testSubmit() local
51 final ForkJoinPool pool = new ForkJoinPool(); in testGetRunningThreadCount() local
84 ForkJoinPool pool = new ForkJoinPool(0, in testConstructor_withKeepAliveTime() local
99 ForkJoinPool pool = new ForkJoinPool(-1, in testConstructor_withKeepAliveTime() local
114 ForkJoinPool pool = new ForkJoinPool(8, in testConstructor_withKeepAliveTime() local
129 ForkJoinPool pool = new ForkJoinPool(8, in testConstructor_withKeepAliveTime() local
144 ForkJoinPool pool = new ForkJoinPool(8, in testConstructor_withKeepAliveTime() local
158 ForkJoinPool pool = new ForkJoinPool(8, in testConstructor_withKeepAliveTime() local
/aosp_15_r20/libcore/ojluni/src/test/java/util/concurrent/tck/
H A DForkJoinPool20Test.java74 try (var pool = new ForkJoinPool()) { in testExternalSubmit1()
93 try (var pool = new ForkJoinPool(1)) { in testExternalSubmit2()
114 try (var pool = new ForkJoinPool()) { in testExternalSubmitReturnsTask()
125 try (var pool = new ForkJoinPool()) { in testExternalSubmitWithNull()
135 try (var pool = new ForkJoinPool()) { in testExternalSubmitWhenShutdown()
148 try (var pool = new ForkJoinPool(1)) { in testSubmit()
177 try (var pool = new ForkJoinPool(1)) { in testGetQueuedTaskCount1()
201 try (var pool = new ForkJoinPool(2)) { in testGetQueuedTaskCount2()
227 static ForkJoinWorkerThread submitBusyTask(ForkJoinPool pool) throws Exception { in submitBusyTask()
/aosp_15_r20/external/cronet/third_party/apache-portable-runtime/src/file_io/unix/
H A Dopen.c94 apr_pool_t *pool) in apr_file_open()
258 APR_DECLARE(apr_status_t) apr_file_remove(const char *path, apr_pool_t *pool) in apr_file_remove()
287 apr_int32_t flags, apr_pool_t *pool) in apr_os_file_put()
335 apr_pool_t *pool) in apr_file_open_flags_stderr()
344 apr_pool_t *pool) in apr_file_open_flags_stdout()
353 apr_pool_t *pool) in apr_file_open_flags_stdin()
361 apr_pool_t *pool) in apr_file_open_stderr()
367 apr_pool_t *pool) in apr_file_open_stdout()
373 apr_pool_t *pool) in apr_file_open_stdin()
378 APR_IMPLEMENT_INHERIT_SET(file, flags, pool, apr_unix_file_cleanup) in APR_IMPLEMENT_INHERIT_SET() argument

12345678910>>...100