Searched defs:pool (Results 226 - 250 of 311) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/skia/tools/
H A DPictureRenderer.cpp246 SkDiscardableMemoryPool* pool = SkGetGlobalDiscardableMemoryPool(); local
248 pool->dumpPool();
/external/clang/include/clang/Sema/
H A DDelayedDiagnostic.h255 /// Does this pool, or any of its ancestors, contain any diagnostics?
260 /// Add a diagnostic to this pool.
265 /// Steal the diagnostics from the given pool.
266 void steal(DelayedDiagnosticPool &pool) { argument
267 if (pool.Diagnostics.empty()) return;
270 Diagnostics = std::move(pool.Diagnostics);
272 Diagnostics.append(pool.pool_begin(), pool.pool_end());
274 pool.Diagnostics.clear();
285 /// Add a diagnostic to the current delay pool
[all...]
H A DAttributeList.h472 /// individual attributes which are deallocated with the pool.
520 /// Reclaim all the attributes in the given pool chain, which is
541 // We don't care about the order of the pool.
547 void takePool(AttributeList *pool);
550 /// Create a new pool for a factory.
553 /// Move the given pool's allocations to this pool.
554 AttributePool(AttributePool &pool) : Factory(pool.Factory), Head(pool
799 mutable AttributePool pool; member in class:clang::AttributeList
[all...]
/external/deqp/framework/delibs/decpp/
H A DdePoolArray.hpp23 * \brief Array template backed by memory pool.
45 * \brief Array template backed by memory pool
58 explicit PoolArray (MemPool* pool);
59 PoolArray (MemPool* pool, const PoolArray<T, Alignment>& other);
92 PoolArray (const PoolArray<T, Alignment>& other); // \note Default copy ctor is not allowed, use PoolArray(pool, copy) instead.
217 PoolArray<T, Alignment>::PoolArray (MemPool* pool) argument
218 : m_pool (pool)
336 // Allocate the rest of the needed pages from the pool.
/external/dnsmasq/src/
H A Ddhcp.c503 /* Is every member of check matched by a member of pool?
505 int match_netid(struct dhcp_netid *check, struct dhcp_netid *pool, int tagnotneeded) argument
516 for (tmp1 = pool; tmp1; tmp1 = tmp1->next)
523 for (tmp1 = pool; tmp1; tmp1 = tmp1->next)
/external/jpeg/
H A Djmemmgr.c12 * * pool-based allocation and freeing of memory;
78 * We allocate objects from "pools", where each pool is gotten with a single
80 * overhead within a pool, except for alignment padding. Each pool has a
81 * header with a link to the next pool of the same class.
82 * Small and large pool headers are identical except that the latter's
94 size_t bytes_used; /* how many bytes already used within pool */
95 size_t bytes_left; /* bytes still available in this pool */
105 size_t bytes_used; /* how many bytes already used within pool */
106 size_t bytes_left; /* bytes still available in this pool */
1004 int pool; local
1032 int pool; local
[all...]
/external/libxml2/
H A Ddict.c242 xmlDictStringsPtr pool; local
250 pool = dict->strings;
251 while (pool != NULL) {
252 if (pool->end - pool->free > namelen)
254 if (pool->size > size) size = pool->size;
255 limit += pool->size;
256 pool = pool
308 xmlDictStringsPtr pool; local
766 xmlDictStringsPtr pool, nextp; local
1180 xmlDictStringsPtr pool; local
1245 xmlDictStringsPtr pool; local
[all...]
/external/ltrace/sysdeps/linux-gnu/x86/
H A Dfetch.c51 /* A common pool for system call and function call return is
154 size_t sz, size_t offset, enum reg_pool pool, size_t archw)
162 if (pool != POOL_RETVAL) {
214 size_t sz, size_t offset, enum reg_pool pool)
222 switch (pool) {
299 size_t sz, size_t offset, enum reg_pool pool)
302 switch (pool) {
313 * pool. */
314 assert(pool == POOL_FUNCALL);
327 struct value *valuep, size_t sz, size_t offset, enum reg_pool pool)
153 allocate_x87(struct fetch_context *context, struct value *valuep, size_t sz, size_t offset, enum reg_pool pool, size_t archw) argument
213 allocate_integer(struct fetch_context *context, struct value *valuep, size_t sz, size_t offset, enum reg_pool pool) argument
298 allocate_sse(struct fetch_context *context, struct value *valuep, size_t sz, size_t offset, enum reg_pool pool) argument
326 allocate_class(enum arg_class cls, struct fetch_context *context, struct value *valuep, size_t sz, size_t offset, enum reg_pool pool) argument
768 arch_fetch_pool_arg_next(struct fetch_context *context, enum tof type, struct process *proc, struct arg_type_info *info, struct value *valuep, enum reg_pool pool) argument
[all...]
/external/mesa3d/src/gallium/drivers/r300/compiler/
H A Dradeon_dataflow.c476 struct memory_pool * pool,
482 memory_pool_array_reserve(pool, struct rc_reader, data->Readers,
491 struct memory_pool * pool,
497 struct rc_reader * new = add_reader(pool, data, inst, mask);
503 struct memory_pool * pool,
510 struct rc_reader * new = add_reader(pool, data, inst, mask);
475 add_reader( struct memory_pool * pool, struct rc_reader_data * data, struct rc_instruction * inst, unsigned int mask) argument
490 add_reader_normal( struct memory_pool * pool, struct rc_reader_data * data, struct rc_instruction * inst, unsigned int mask, struct rc_src_register * src) argument
502 add_reader_pair( struct memory_pool * pool, struct rc_reader_data * data, struct rc_instruction * inst, unsigned int mask, struct rc_pair_instruction_arg * arg, struct rc_pair_instruction_source * src) argument
/external/mesa3d/src/gallium/drivers/r600/
H A Devergreen_compute.c509 //FETCH1 = VTX1 (global buffer pool), FETCH2... = TEX
539 struct compute_memory_pool *pool = ctx->screen->global_pool; local
551 compute_memory_finalize_pending(pool, ctx_);
561 evergreen_set_rat(ctx->cs_shader_state.shader, 0, pool->bo, 0, pool->size_in_dw * 4);
563 (struct pipe_resource*)pool->bo);
817 ///TODO: do it better, mapping is not possible if the pool is too big
819 if (!(map = ctx->ws->buffer_map(buffer->chunk->pool->bo->cs_buf,
839 ctx->ws->buffer_unmap(buffer->chunk->pool->bo->cs_buf);
850 struct compute_memory_pool *pool local
[all...]
/external/mesa3d/src/gallium/drivers/radeonsi/
H A Dradeonsi_pipe.h60 struct list_head pool; member in struct:r600_pipe_fences
/external/pdfium/core/src/fxcodec/libjpeg/
H A Dfpdfapi_jmemmgr.c13 * * pool-based allocation and freeing of memory;
81 * We allocate objects from "pools", where each pool is gotten with a single
83 * overhead within a pool, except for alignment padding. Each pool has a
84 * header with a link to the next pool of the same class.
85 * Small and large pool headers are identical except that the latter's
97 size_t bytes_used; /* how many bytes already used within pool */
98 size_t bytes_left; /* bytes still available in this pool */
108 size_t bytes_used; /* how many bytes already used within pool */
109 size_t bytes_left; /* bytes still available in this pool */
1007 int pool; local
1035 int pool; local
[all...]
/external/qemu/distrib/jpeg-6b/
H A Djmemmgr.c12 * * pool-based allocation and freeing of memory;
78 * We allocate objects from "pools", where each pool is gotten with a single
80 * overhead within a pool, except for alignment padding. Each pool has a
81 * header with a link to the next pool of the same class.
82 * Small and large pool headers are identical except that the latter's
94 size_t bytes_used; /* how many bytes already used within pool */
95 size_t bytes_left; /* bytes still available in this pool */
105 size_t bytes_used; /* how many bytes already used within pool */
106 size_t bytes_left; /* bytes still available in this pool */
1004 int pool; local
1032 int pool; local
[all...]
/external/valgrind/main/memcheck/
H A Dmc_include.h89 /* Memory pool. Nb: first two fields must match core's VgHashNode. */
93 Addr pool; // pool identifier member in struct:_MC_Mempool
94 SizeT rzB; // pool red-zone size
95 Bool is_zeroed; // allocations from this pool are zeroed
96 VgHashTable chunks; // chunks associated with this pool
108 void MC_(create_mempool) ( Addr pool, UInt rzB, Bool is_zeroed );
109 void MC_(destroy_mempool) ( Addr pool );
110 void MC_(mempool_alloc) ( ThreadId tid, Addr pool,
112 void MC_(mempool_free) ( Addr pool, Add
[all...]
H A Dmc_malloc_wrappers.c72 MC_Mempool::pool. */
232 /* If a user builds a pool from a malloc-ed superblock
690 /*--- Memory pool stuff. ---*/
700 void MC_(create_mempool)(Addr pool, UInt rzB, Bool is_zeroed) argument
706 pool, rzB, is_zeroed);
711 mp = VG_(HT_lookup)(MC_(mempool_list), (UWord)pool);
713 VG_(tool_panic)("MC_(create_mempool): duplicate pool creation");
717 mp->pool = pool;
735 void MC_(destroy_mempool)(Addr pool) argument
854 mempool_alloc(ThreadId tid, Addr pool, Addr addr, SizeT szB) argument
883 mempool_free(Addr pool, Addr addr) argument
918 mempool_trim(Addr pool, Addr addr, SizeT szB) argument
1054 mempool_change(Addr pool, Addr addrA, Addr addrB, SizeT szB) argument
1087 mempool_exists(Addr pool) argument
[all...]
/external/antlr/antlr-3.4/runtime/C/src/
H A Dantlr3collections.c1448 // Factory memory is good, so create a new vector pool
1491 // TODO: remove this line once happy printf("Returned vector %08X to the pool, stack size is %d\n", vector, factory->freeStack->size(factory->freeStack));
1505 (ANTLR3_UINT32)((factory->thisPool + 1) * sizeof(pANTLR3_VECTOR *)) /* Memory for new pool pointers */
1508 /* Allocate a new pool for the factory
1527 pANTLR3_VECTOR pool; local
1544 /* Pointer to current pool
1546 pool = factory->pools[poolCount];
1548 /* Work out how many tokens we need to check in this pool.
1552 /* Marginal condition, we might be at the start of a brand new pool
1557 /* We have some vectors allocated from this pool
[all...]
/external/chromium_org/base/threading/
H A Dsequenced_worker_pool.cc97 const scoped_refptr<SequencedWorkerPool>& pool,
117 const scoped_refptr<SequencedWorkerPool>& pool,
119 : pool_(pool),
149 const scoped_refptr<SequencedWorkerPool>& pool,
178 const scoped_refptr<SequencedWorkerPool>& pool,
181 : pool_(pool),
218 void* pool) {
220 static_cast<uint64>(reinterpret_cast<intptr_t>(pool));
540 // You must call Shutdown() before destroying the pool.
116 SequencedWorkerPoolTaskRunner( const scoped_refptr<SequencedWorkerPool>& pool, SequencedWorkerPool::WorkerShutdown shutdown_behavior) argument
177 SequencedWorkerPoolSequencedTaskRunner( const scoped_refptr<SequencedWorkerPool>& pool, SequencedWorkerPool::SequenceToken token, SequencedWorkerPool::WorkerShutdown shutdown_behavior) argument
217 GetTaskTraceID(const SequencedTask& task, void* pool) argument
/external/chromium_org/chrome/browser/profiles/
H A Dprofile_io_data.cc503 base::SequencedWorkerPool* pool = BrowserThread::GetBlockingPool(); local
505 pool->GetSequencedTaskRunner(pool->GetSequenceToken());
/external/chromium_org/content/browser/media/capture/
H A Dweb_contents_video_capture_device_unittest.cc374 PoolBuffer(const scoped_refptr<VideoCaptureBufferPool>& pool, argument
378 : Buffer(buffer_id, data, size), pool_(pool) {}
/external/chromium_org/gpu/command_buffer/service/
H A Dtexture_manager.h63 GLenum pool() const { function in class:gpu::gles2::Texture
/external/chromium_org/net/spdy/
H A Dspdy_session_unittest.cc116 // Important to restore the per-pool limit first, since the pool limit must
504 // make itself unavailable in its pool twice).
3126 TransportClientSocketPool* pool = local
3135 EXPECT_FALSE(pool->IsStalled());
3137 // Trying to create a new connection should cause the pool to be stalled, and
3148 callback2.callback(), pool, BoundNetLog()));
3149 EXPECT_TRUE(pool->IsStalled());
3151 // The socket pool should close the connection asynchronously and establish a
3154 EXPECT_FALSE(pool
3187 TransportClientSocketPool* pool = local
3275 TransportClientSocketPool* pool = local
[all...]
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DListHashSet.h282 : m_freeList(pool())
330 return node >= pool() && node < pastPool();
336 Node* pool() { return reinterpret_cast_ptr<Node*>(m_pool.buffer); } function in struct:WTF::ListHashSetAllocator
337 Node* pastPool() { return pool() + m_poolSize; }
342 // The allocation pool for nodes is one big chunk that ASAN has no
/external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/
H A Dcommand_line_interface.cc708 DescriptorPool pool; local
712 GOOGLE_CHECK(pool.BuildFile(file) != NULL);
714 if (!EncodeOrDecode(&pool)) {
718 if (!EncodeOrDecode(importer.pool())) {
1302 bool CommandLineInterface::EncodeOrDecode(const DescriptorPool* pool) { argument
1304 const Descriptor* type = pool->FindMessageTypeByName(codec_type_);
1310 DynamicMessageFactory dynamic_factory(pool);
/external/chromium_org/third_party/webrtc/base/
H A Dhttpclient.cc268 HttpClient::HttpClient(const std::string& agent, StreamPool* pool, argument
270 : agent_(agent), pool_(pool),
813 // This shouldn't occur, since we return the stream to the pool upon command
/external/clang/tools/libclang/
H A DCXCursor.cpp1155 void cxcursor::disposeOverridenCXCursorsPool(void *pool) { argument
1156 delete static_cast<OverridenCursorsPool*>(pool);
1176 OverridenCursorsPool &pool =
1181 if (!pool.AvailableCursors.empty()) {
1182 Vec = pool.AvailableCursors.back();
1183 pool.AvailableCursors.pop_back();
1187 pool.AllCursors.push_back(Vec);
1204 // Did we get any overriden cursors? If not, return Vec to the pool
1207 pool.AvailableCursors.push_back(Vec);
1231 OverridenCursorsPool &pool local
[all...]

Completed in 588 milliseconds

1234567891011>>