HomeSort by relevance Sort by last modified time
    Searched full:pool (Results 1 - 25 of 1445) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/valgrind/main/memcheck/tests/
leak-pool-0.vgtest 1 prog: leak-pool
leak-pool-1.vgtest 1 prog: leak-pool
leak-pool-2.vgtest 1 prog: leak-pool
leak-pool-3.vgtest 1 prog: leak-pool
leak-pool-4.vgtest 1 prog: leak-pool
leak-pool-5.vgtest 1 prog: leak-pool
  /external/collada/src/dae/
daeMemorySystem.cpp 13 daeMemorySystem::alloc(daeString pool, size_t n)
15 (void)pool;
18 // printf("alloc[%s] - %d = 0x%x\n",pool,n,mem);
23 daeMemorySystem::dealloc(daeString pool, daeRawRef mem)
25 (void)pool;
26 // printf("free[%s] - 0x%x\n",pool,mem);
  /frameworks/media/libvideoeditor/vss/stagefrightshells/src/
VideoEditorBuffer.c 43 * @brief Allocate a pool of nbBuffers buffers
45 * @param ppool : IN The buffer pool to create
46 * @param nbBuffers : IN The number of buffers in the pool
47 * @param poolName : IN a name given to the pool
55 VIDEOEDITOR_BUFFER_Pool* pool; local
60 pool = M4OSA_NULL;
61 pool = (VIDEOEDITOR_BUFFER_Pool*)M4OSA_32bitAlignedMalloc(
63 (M4OSA_Char*)("VIDEOEDITOR_BUFFER_allocatePool: pool"));
64 if (M4OSA_NULL == pool)
70 LOGV("VIDEOEDITOR_BUFFER_allocatePool : Allocating Pool buffers")
    [all...]
  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/preprocessor/
memory.c 83 MemoryPool *pool; local
90 if (!(pool = malloc(chunksize))) return 0;
91 pool->next = 0;
92 pool->chunksize = chunksize;
93 pool->alignmask = (uintptr_t)(align)-1;
94 pool->free = ((uintptr_t)(pool + 1) + pool->alignmask) & ~pool->alignmask;
95 pool->end = (uintptr_t)pool + chunksize
    [all...]
  /frameworks/base/core/java/android/util/
Pools.java 26 public static <T extends Poolable<T>> Pool<T> simplePool(PoolableManager<T> manager) {
30 public static <T extends Poolable<T>> Pool<T> finitePool(PoolableManager<T> manager, int limit) {
34 public static <T extends Poolable<T>> Pool<T> synchronizedPool(Pool<T> pool) {
35 return new SynchronizedPool<T>(pool);
38 public static <T extends Poolable<T>> Pool<T> synchronizedPool(Pool<T> pool, Object lock) {
39 return new SynchronizedPool<T>(pool, lock)
    [all...]
SynchronizedPool.java 23 class SynchronizedPool<T extends Poolable<T>> implements Pool<T> {
24 private final Pool<T> mPool;
27 public SynchronizedPool(Pool<T> pool) {
28 mPool = pool;
32 public SynchronizedPool(Pool<T> pool, Object lock) {
33 mPool = pool;
  /external/javassist/src/main/javassist/scopedpool/
package.html 3 <p>A custom class pool for several JBoss products.
  /external/webkit/Source/WebCore/platform/
Arena.cpp 93 void InitArenaPool(ArenaPool* pool, const char*, unsigned size, unsigned align)
97 pool->mask = BITMASK(CeilingLog2(align));
98 pool->first.next = NULL;
99 pool->first.base = pool->first.avail = pool->first.limit =
100 (uword)ARENA_ALIGN(&pool->first + 1);
101 pool->current = &pool->first;
102 pool->arenasize = size;
    [all...]
  /external/dbus/dbus/
dbus-mempool.c 33 * Types and functions related to DBusMemPool. A memory pool is used
41 * @defgroup DBusMemPoolInternals Memory pool implementation details
79 * block that gets chunked up into objects in the memory pool.
85 * when we free the mem pool.
99 int element_size; /**< size of a single object in the pool */
119 * Opaque object representing a memory pool. Memory pools allow
126 * Creates a new memory pool, or returns #NULL on failure. Objects in
127 * the pool must be at least sizeof(void*) bytes each, due to the way
132 * @param element_size size of an element allocated from the pool.
134 * @returns the new pool or #NUL
140 DBusMemPool *pool; local
410 DBusMemPool *pool; local
    [all...]
  /external/clang/test/ARCMT/
atautorelease.m 11 NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
14 NSAutoreleasePool * pool = [NSAutoreleasePool new];
16 [pool drain];
18 [pool drain];
43 NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
45 [pool release];
57 NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
58 [pool drain];
atautorelease-check.m 71 NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
76 // the following pool was not released in this scope, don't touch it.
81 [pool drain];
87 NSAutoreleasePool * pool; // expected-error {{'NSAutoreleasePool' is unavailable}}
90 id x = pool; // We won't touch a NSAutoreleasePool if we can't safely
94 pool = [[NSAutoreleasePool alloc] init]; // expected-error {{'NSAutoreleasePool' is unavailable}}
96 [pool release];
100 NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; // expected-error 2 {{'NSAutoreleasePool' is unavailable}} \
103 // 'x' is declared inside the "pool scope" but used outside it, if we create
104 // a @autorelease scope it will be undefined outside it so don't touch the pool
    [all...]
atautorelease-3.m 18 NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
26 [pool drain];
30 NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
39 [pool drain];
  /external/llvm/runtime/
README.txt 2 the LLVM compiler. For example, the automatic pool allocation transformation
3 inserts calls to an external pool allocator library. This runtime library is
  /dalvik/dx/src/com/android/dx/cf/attrib/
RawAttribute.java 30 * {@code null-ok;} constant pool to use for resolution of cpis in {@link
33 private final ConstantPool pool; field in class:RawAttribute
40 * @param pool {@code null-ok;} constant pool to use for cpi resolution
42 public RawAttribute(String name, ByteArray data, ConstantPool pool) {
50 this.pool = pool;
60 * @param pool {@code null-ok;} constant pool to use for cpi resolution
63 int length, ConstantPool pool) {
    [all...]
  /external/chromium/net/http/
http_network_session_peer.h 28 void SetTransportSocketPool(TransportClientSocketPool* pool);
32 SOCKSClientSocketPool* pool);
36 HttpProxyClientSocketPool* pool);
38 void SetSSLSocketPool(SSLClientSocketPool* pool);
42 SSLClientSocketPool* pool);
http_network_session_peer.cc 23 TransportClientSocketPool* pool) {
24 session_->socket_pool_manager_.transport_socket_pool_.reset(pool);
29 SOCKSClientSocketPool* pool) {
36 socket_pool_manager->socks_socket_pools_[socks_proxy] = pool;
41 HttpProxyClientSocketPool* pool) {
48 socket_pool_manager->http_proxy_socket_pools_[http_proxy] = pool;
51 void HttpNetworkSessionPeer::SetSSLSocketPool(SSLClientSocketPool* pool) {
52 session_->socket_pool_manager_.ssl_socket_pool_.reset(pool);
57 SSLClientSocketPool* pool) {
64 socket_pool_manager->ssl_socket_pools_for_proxies_[proxy_host] = pool;
    [all...]
  /external/bluetooth/glib/glib/
gthreadpool.h 44 * pool with the constructor function */
52 /* Get a thread pool with the function func, at most max_threads may
63 /* Push new data into the thread pool. This task is assigned to a thread later
64 * (when the maximal number of threads is reached for that pool) or now
67 void g_thread_pool_push (GThreadPool *pool,
71 /* Set the number of threads, which can run concurrently for that pool, -1
72 * means no limit. 0 means has the effect, that the pool won't process
74 void g_thread_pool_set_max_threads (GThreadPool *pool,
77 gint g_thread_pool_get_max_threads (GThreadPool *pool);
79 /* Get the number of threads assigned to that pool. This number doesn'
    [all...]
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
atm_zatm.h 19 /* get pool statistics */
23 /* set pool parameters */
26 int ref_count; /* free buffer pool usage counters */
34 int pool_num; /* pool number */
44 #define ZATM_OAM_POOL 0 /* free buffer pool for OAM cells */
45 #define ZATM_AAL0_POOL 1 /* free buffer pool for AAL0 cells */
46 #define ZATM_AAL5_POOL_BASE 2 /* first AAL5 free buffer pool */
  /external/collada/include/dae/
daeMemorySystem.h 16 * Every allocation passes a string pool name such that
24 * Provides a wrapper malloc with pool field.
25 * @param pool String name of the pool to use for this allocation.
29 static DLLSPEC daeRawRef alloc(daeString pool, size_t n);
32 * Provides a wrapper free with pool argument.
33 * @param pool Pool the memory should be freed from.
36 static DLLSPEC void dealloc(daeString pool, daeRawRef mem);
  /external/javassist/src/main/javassist/bytecode/
InstructionPrinter.java 41 ConstPool pool = info.getConstPool(); local
55 stream.println(pos + ": " + instructionString(iterator, pos, pool));
59 public static String instructionString(CodeIterator iter, int pos, ConstPool pool) {
72 return opstring + " " + ldc(pool, iter.byteAt(pos + 1));
75 return opstring + " " + ldc(pool, iter.u16bitAt(pos + 1));
119 return opstring + " " + fieldInfo(pool, iter.u16bitAt(pos + 1));
123 return opstring + " " + methodInfo(pool, iter.u16bitAt(pos + 1));
125 return opstring + " " + interfaceMethodInfo(pool, iter.u16bitAt(pos + 1));
129 return opstring + " " + classInfo(pool, iter.u16bitAt(pos + 1));
134 return opstring + " " + classInfo(pool, iter.u16bitAt(pos + 1))
    [all...]

Completed in 952 milliseconds

1 2 3 4 5 6 7 8 91011>>