Searched defs:pool (Results 201 - 225 of 311) sorted by relevance

1234567891011>>

/external/deqp/framework/delibs/depool/
H A DdeMemPool.c21 * \brief Memory pool management.
48 * Represent a page of memory allocate by a memory pool.
69 * \brief Memory pool.
71 * A pool of memory from which individual memory allocations can be made.
73 * but rather all of the memory allocated from a pool is freed when the pool
76 * The pools can be arranged into a hierarchy. If a pool with children is
78 * the pool itself.
82 * creating the root pool with the deMemPool_createFailingRoot() function.
92 deMemPool* firstChild; /*!< Pointer to first child pool i
171 deMemPool* pool; local
243 deMemPool* pool = createPoolInternal(DE_NULL); local
283 deMemPool* pool; local
298 deMemPool_destroy(deMemPool* pool) argument
378 deMemPool_getNumChildren(const deMemPool* pool) argument
390 deMemPool_getNumAllocatedBytes(const deMemPool* pool, deBool recurse) argument
408 deMemPool_getCapacity(const deMemPool* pool, deBool recurse) argument
426 deMemPool_allocInternal(deMemPool* pool, int numBytes, deUint32 alignBytes) argument
499 deMemPool_alloc(deMemPool* pool, int numBytes) argument
517 deMemPool_alignedAlloc(deMemPool* pool, int numBytes, deUint32 alignBytes) argument
536 deMemPool_memDup(deMemPool* pool, const void* ptr, int numBytes) argument
550 deMemPool_strDup(deMemPool* pool, const char* str) argument
566 deMemPool_strnDup(deMemPool* pool, const char* str, int maxLength) argument
580 deMemPool_getMaxNumAllocatedBytes(const deMemPool* pool) argument
586 deMemPool_getMaxCapacity(const deMemPool* pool) argument
[all...]
/external/fio/
H A Dsmalloc.c27 #define INITIAL_SIZE 8192*1024 /* new pool size */
36 struct pool { struct
37 struct fio_mutex *lock; /* protects this pool */
53 static struct pool mp[MAX_POOLS];
58 static inline void pool_lock(struct pool *pool) argument
60 fio_mutex_down(pool->lock);
63 static inline void pool_unlock(struct pool *pool) argument
65 fio_mutex_up(pool
88 ptr_valid(struct pool *pool, void *ptr) argument
100 blocks_iter(struct pool *pool, unsigned int pool_idx, unsigned int idx, size_t nr_blocks, int (*func)(unsigned int *map, unsigned int mask)) argument
155 blocks_free(struct pool *pool, unsigned int pool_idx, unsigned int idx, size_t nr_blocks) argument
161 set_blocks(struct pool *pool, unsigned int pool_idx, unsigned int idx, size_t nr_blocks) argument
167 clear_blocks(struct pool *pool, unsigned int pool_idx, unsigned int idx, size_t nr_blocks) argument
180 add_pool(struct pool *pool, unsigned int alloc_size) argument
232 cleanup_pool(struct pool *pool) argument
301 sfree_pool(struct pool *pool, void *ptr) argument
331 struct pool *pool = NULL; local
352 __smalloc_pool(struct pool *pool, size_t size) argument
407 smalloc_pool(struct pool *pool, size_t size) argument
[all...]
/external/javassist/src/main/javassist/bytecode/
H A DAnnotationsAttribute.java117 * @param cp constant pool
134 * @param cp constant pool
417 * @param cp the constant pool.
466 * @param src the constant pool of the source class.
467 * @param dest the constant pool of the destination class.
533 * Copies a constant pool entry into the destination constant pool
537 * constant pool.
539 * constant pool.
546 * Copies a constant pool entr
563 ConstPool pool; field in class:AnnotationsAttribute.Parser
[all...]
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
H A DHttpConnection.java74 private final ConnectionPool pool; field in class:HttpConnection
83 public HttpConnection(ConnectionPool pool, Connection connection, Socket socket) argument
85 this.pool = pool;
93 * Configure this connection to put itself back into the connection pool when
99 // If we're already idle, go to the pool immediately.
102 pool.recycle(connection);
400 pool.recycle(connection);
/external/protobuf/src/google/protobuf/
H A Ddescriptor_database.cc392 DescriptorPoolDatabase::DescriptorPoolDatabase(const DescriptorPool& pool) argument
393 : pool_(pool) {}
/external/protobuf/src/google/protobuf/io/
H A Dcoded_stream.h359 // definitions in the pool which owns the outer message's Descriptor.
361 // pool instead. This makes it possible, for example, to parse a message
365 // Set the pool used to look up extensions. Most users do not need to call
366 // this as the correct pool will be chosen automatically.
379 // assert(pool->FindMessageTypeByName(m->GetDescriptor()->full_name()) ==
382 // 1) Use m->GetDescriptor()->pool() as the pool. This is generally useless
383 // because this is the pool that would be used anyway if you didn't call
385 // 2) Use a DescriptorPool which has m->GetDescriptor()->pool() as an
392 // through the provided pool
1020 SetExtensionRegistry(DescriptorPool* pool, MessageFactory* factory) argument
[all...]
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/pool/
H A DClassPool.java32 package org.jf.dexlib2.writer.pool;
/external/valgrind/main/VEX/priv/
H A Dmain_util.c161 const HChar* pool = "???"; local
162 if (private_LibVEX_alloc_first == &temporary[0]) pool = "TEMP";
163 if (private_LibVEX_alloc_first == &permanent[0]) pool = "PERM";
166 pool,
/external/bluetooth/bluedroid/stack/l2cap/
H A Dl2c_fcr.c336 BT_HDR *l2c_fcr_clone_buf (BT_HDR *p_buf, UINT16 new_offset, UINT16 no_of_bytes, UINT8 pool) argument
340 /* If using the common pool, should be at least 10% free. */
341 if ( (pool == HCI_ACL_POOL_ID) && (GKI_poolutilization (pool) > 90) )
343 L2CAP_TRACE_ERROR ("L2CAP - failed to clone buffer on HCI_ACL_POOL_ID Utilization: %u", GKI_poolutilization(pool));
347 if ((p_buf2 = (BT_HDR *)GKI_getpoolbuf(pool)) != NULL)
349 UINT16 pool_buf_size = GKI_get_pool_bufsize (pool);
351 /* Make sure buffer fits into buffer pool */
372 L2CAP_TRACE_ERROR ("L2CAP - failed to clone buffer, Pool: %u Count: %u", pool, GKI_poolfreecount(pool));
[all...]
/external/chromium_org/base/threading/
H A Dsequenced_worker_pool_unittest.cc103 int id, SequencedWorkerPool* pool,
107 pool->PostWorkerTaskWithShutdownBehavior(
111 pool->PostWorkerTaskWithShutdownBehavior(
114 pool->PostWorkerTaskWithShutdownBehavior(
191 pool()->Shutdown();
194 const scoped_refptr<SequencedWorkerPool>& pool() { function in class:base::__anon2551::SequencedWorkerPoolTest
195 return pool_owner_->pool();
228 pool()->PostWorkerTask(FROM_HERE,
282 void HoldPoolReference(const scoped_refptr<base::SequencedWorkerPool>& pool, argument
287 // Tests that delayed tasks are deleted upon shutdown of the pool
102 PostAdditionalTasks( int id, SequencedWorkerPool* pool, bool expected_return_value) argument
708 IsRunningOnCurrentThreadTask( SequencedWorkerPool::SequenceToken test_positive_token, SequencedWorkerPool::SequenceToken test_negative_token, SequencedWorkerPool* pool, SequencedWorkerPool* unused_pool) argument
[all...]
/external/chromium_org/chrome/browser/chromeos/app_mode/
H A Dkiosk_app_data.cc105 base::SequencedWorkerPool* pool = BrowserThread::GetBlockingPool(); local
106 base::SequencedWorkerPool::SequenceToken token = pool->GetSequenceToken();
107 task_runner_ = pool->GetSequencedTaskRunnerWithShutdownBehavior(
120 // Loads the icon from locally stored |icon_path_| on the blocking pool
H A Dkiosk_app_manager.cc67 base::SequencedWorkerPool* pool = content::BrowserThread::GetBlockingPool(); local
68 CHECK(pool);
69 return pool->GetSequencedTaskRunnerWithShutdownBehavior(
70 pool->GetSequenceToken(), base::SequencedWorkerPool::SKIP_ON_SHUTDOWN);
/external/chromium_org/chrome/browser/extensions/api/log_private/
H A Dlog_private_api_chromeos.cc55 base::SequencedWorkerPool* pool = BrowserThread::GetBlockingPool(); local
56 return pool->GetSequencedTaskRunnerWithShutdownBehavior(
57 pool->GetNamedSequenceToken(FileResource::kSequenceToken),
63 base::SequencedWorkerPool* pool = content::BrowserThread::GetBlockingPool(); local
64 return pool->IsRunningSequenceOnCurrentThread(
65 pool->GetNamedSequenceToken(FileResource::kSequenceToken));
313 // Initialize net logger on the blocking pool and start observing event
/external/chromium_org/components/storage_monitor/
H A Dportable_device_watcher_win.cc494 base::SequencedWorkerPool* pool = content::BrowserThread::GetBlockingPool(); local
495 media_task_runner_ = pool->GetSequencedTaskRunnerWithShutdownBehavior(
496 pool->GetNamedSequenceToken(kMediaTaskRunnerName),
/external/chromium_org/content/browser/renderer_host/media/
H A Dvideo_capture_controller.cc47 PoolBuffer(const scoped_refptr<VideoCaptureBufferPool>& pool, argument
51 : Buffer(buffer_id, data, size), pool_(pool) {
185 // The pool of shared-memory buffers used for capturing.
/external/chromium_org/gpu/command_buffer/service/
H A Dgles2_cmd_decoder_unittest.cc981 EXPECT_TRUE(texture->pool() == GL_TEXTURE_POOL_UNMANAGED_CHROMIUM);
998 EXPECT_TRUE(texture->pool() == GL_TEXTURE_POOL_MANAGED_CHROMIUM);
1024 Pool pool) {
1025 PoolInfo& info = pool_infos_[pool];
1029 size_t GetPoolSize(Pool pool) { argument
1030 const PoolInfo& info = pool_infos_[pool];
1022 TrackMemoryAllocatedChange(size_t old_size, size_t new_size, Pool pool) argument
H A Dtexture_manager_unittest.cc474 #define EXPECT_MEMORY_ALLOCATION_CHANGE(old_size, new_size, pool) \
476 TrackMemoryAllocatedChange(old_size, new_size, pool)) \
2172 Pool pool) OVERRIDE {
2173 DCHECK_LT(static_cast<size_t>(pool), arraysize(current_size_));
2174 current_size_[pool] += new_size - old_size;
2181 size_t GetSize(Pool pool) { argument
2182 DCHECK_LT(static_cast<size_t>(pool), arraysize(current_size_));
2183 return current_size_[pool];
/external/chromium_org/net/http/
H A Dhttp_stream_factory_impl_unittest.cc531 // Put a SpdySession in the pool.
642 // Set an existing SpdySession in the pool.
669 // Return count of distinct groups in given socket pool.
670 int GetSocketPoolGroupCount(ClientSocketPool* pool) { argument
672 scoped_ptr<base::DictionaryValue> dict(pool->GetInfoAsValue("", "", false));
/external/chromium_org/sync/tools/
H A Dsync_client.cc303 base::mac::ScopedNSAutoreleasePool pool; local
/external/chromium_org/third_party/WebKit/Source/platform/text/
H A DTextBreakIteratorICU.cpp46 static WTF::ThreadSpecific<LineBreakIteratorPool>* pool = new WTF::ThreadSpecific<LineBreakIteratorPool>; local
47 return **pool;
/external/chromium_org/third_party/libjpeg_turbo/
H A Djmemmgr.c12 * * pool-based allocation and freeing of memory;
90 * We allocate objects from "pools", where each pool is gotten with a single
92 * overhead within a pool, except for alignment padding. Each pool has a
93 * header with a link to the next pool of the same class.
94 * Small and large pool headers are identical except that the latter's
102 size_t bytes_used; /* how many bytes already used within pool */
103 size_t bytes_left; /* bytes still available in this pool */
110 size_t bytes_used; /* how many bytes already used within pool */
111 size_t bytes_left; /* bytes still available in this pool */
1037 int pool; local
1065 int pool; local
[all...]
/external/chromium_org/third_party/mesa/src/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/chromium_org/third_party/mesa/src/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/chromium_org/third_party/mesa/src/src/gallium/drivers/radeonsi/
H A Dradeonsi_pipe.h60 struct list_head pool; member in struct:r600_pipe_fences
/external/chromium_org/third_party/protobuf/src/google/protobuf/io/
H A Dcoded_stream.h380 // definitions in the pool which owns the outer message's Descriptor.
382 // pool instead. This makes it possible, for example, to parse a message
386 // Set the pool used to look up extensions. Most users do not need to call
387 // this as the correct pool will be chosen automatically.
400 // assert(pool->FindMessageTypeByName(m->GetDescriptor()->full_name()) ==
403 // 1) Use m->GetDescriptor()->pool() as the pool. This is generally useless
404 // because this is the pool that would be used anyway if you didn't call
406 // 2) Use a DescriptorPool which has m->GetDescriptor()->pool() as an
413 // through the provided pool
1063 SetExtensionRegistry(const DescriptorPool* pool, MessageFactory* factory) argument
[all...]

Completed in 827 milliseconds

1234567891011>>