Searched defs:pool (Results 1 - 25 of 333) sorted by relevance

1234567891011>>

/external/llvm/test/MC/ARM/
H A Dpool.s6 .global pool
7 .type pool,%function
8 pool: label
11 .pool
13 @ CHECK-LABEL: pool
/external/protobuf/php/ext/google/protobuf/
H A Dtest.php6 $pool = get_generated_pool(); variable
7 $pool->addMessage("TestMessage")
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
H A DANTLRFastQueue.h37 NSAutoreleasePool *pool; variable
42 @property (retain, getter=getPool, setter=setPool) NSAutoreleasePool *pool; variable
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
H A DANTLRFastQueue.h37 NSAutoreleasePool *pool; variable
42 @property (retain, getter=getPool, setter=setPool) NSAutoreleasePool *pool; variable
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
H A DANTLRFastQueue.h37 NSAutoreleasePool *pool; variable
42 @property (retain, getter=getPool, setter=setPool) NSAutoreleasePool *pool; variable
/external/llvm/unittests/Support/
H A DStringPool.cpp18 StringPool pool; local
19 const PooledStringPtr a = pool.intern("a");
20 const PooledStringPtr b = pool.intern("b");
25 StringPool pool; local
26 const PooledStringPtr a = pool.intern("a");
27 const PooledStringPtr b = pool.intern("b");
/external/deqp/framework/delibs/depool/
H A DdePoolHashSet.c21 * \brief Memory pool hash-set class.
33 deMemPool* pool = deMemPool_createRoot(DE_NULL, 0); local
34 deTestHashSet* hashSet = deTestHashSet_create(pool);
125 deTestInt16Array* keyArray = deTestInt16Array_create(pool);
126 deTestIntArray* valueArray = deTestIntArray_create(pool);
153 deMemPool_destroy(pool);
H A DdePoolHashArray.c21 * \brief Memory pool hash-array class.
33 deMemPool* pool = deMemPool_createRoot(DE_NULL, 0); local
34 deTestHashArray* hashArray = deTestHashArray_create(pool);
35 deInt16Array* keyArray = deInt16Array_create(pool);
36 deIntArray* valueArray = deIntArray_create(pool);
72 deMemPool_destroy(pool);
H A DdePoolMultiSet.c21 * \brief Memory pool multiset class.
31 deMemPool* pool = deMemPool_createRoot(DE_NULL, 0); local
32 deTestMultiSet* set = deTestMultiSet_create(pool);
145 deMemPool_destroy(pool);
H A DdePoolSet.c21 * \brief Memory pool set class.
33 deMemPool* pool = deMemPool_createRoot(DE_NULL, 0); local
34 deTestSet* set = deTestSet_create(pool);
95 deMemPool_destroy(pool);
/external/deqp/framework/delibs/decpp/
H A DdeMemPool.cpp21 * \brief Memory pool (deMemPool wrapper).
32 char* copyToPool (de::MemPool* pool, const char* string) argument
35 char* copy = (char*)pool->alloc(size);
/external/javassist/src/main/javassist/
H A DTranslator.java35 * @param pool the <code>ClassPool</code> that this translator
42 void start(ClassPool pool) argument
50 * pool.get(classname).toBytecode()</pre></ul>
60 * @param pool the <code>ClassPool</code> that this translator
68 void onLoad(ClassPool pool, String classname) argument
/external/smali/dexlib2/src/test/java/org/jf/dexlib2/pool/
H A DRollbackTest.java32 package org.jf.dexlib2.pool;
46 import org.jf.dexlib2.writer.pool.DexPool;
/external/webrtc/webrtc/common_video/
H A Di420_buffer_pool_unittest.cc19 I420BufferPool pool; local
20 rtc::scoped_refptr<VideoFrameBuffer> buffer = pool.CreateBuffer(16, 16);
27 // Release buffer so that it is returned to the pool.
30 buffer = pool.CreateBuffer(16, 16);
39 I420BufferPool pool; local
40 rtc::scoped_refptr<VideoFrameBuffer> buffer = pool.CreateBuffer(16, 16);
44 // Release buffer so that it is returned to the pool.
46 // Check that the pool doesn't try to reuse buffers of incorrect size.
47 buffer = pool.CreateBuffer(32, 16);
56 I420BufferPool pool; local
64 I420BufferPool pool; local
[all...]
/external/boringssl/include/openssl/
H A Dpkcs7.h40 STACK_OF(CRYPTO_BUFFER) *out_certs, CBS *cbs, CRYPTO_BUFFER_POOL *pool); variable
/external/boringssl/src/crypto/pool/
H A Dinternal.h29 CRYPTO_BUFFER_POOL *pool; member in struct:crypto_buffer_st
/external/boringssl/src/include/openssl/
H A Dpkcs7.h40 STACK_OF(CRYPTO_BUFFER) *out_certs, CBS *cbs, CRYPTO_BUFFER_POOL *pool); variable
/external/libcxx/test/std/utilities/memory/specialized.algorithms/specialized.destroy/
H A Ddestroy.pass.cpp38 alignas(Counted) char pool[sizeof(Counted)*N] = {}; local
39 Counted* p = (Counted*)pool;
/external/libjpeg-turbo/
H A Djcomapi.c26 * the permanent pool, so we will be able to close all temp files here.
34 int pool; local
43 for (pool = JPOOL_NUMPOOLS-1; pool > JPOOL_PERMANENT; pool--) {
44 (*cinfo->mem->free_pool) (cinfo, pool);
/external/mesa3d/src/gallium/state_trackers/nine/
H A Dresource9.h40 D3DPOOL pool; member in struct:NineResource9
/external/pdfium/third_party/libjpeg/
H A Dfpdfapi_jcomapi.c23 * the permanent pool, so we will be able to close all temp files here.
31 int pool; local
40 for (pool = JPOOL_NUMPOOLS-1; pool > JPOOL_PERMANENT; pool--) {
41 (*cinfo->mem->free_pool) (cinfo, pool);
/external/skia/src/gpu/vk/
H A DGrVkDescriptorSet.cpp15 GrVkDescriptorPool* pool,
18 , fPool(pool)
14 GrVkDescriptorSet(VkDescriptorSet descSet, GrVkDescriptorPool* pool, GrVkDescriptorSetManager::Handle handle) argument
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/pool/
H A DBaseNullableOffsetPool.java32 package org.jf.dexlib2.writer.pool;
H A DMarkable.java32 package org.jf.dexlib2.writer.pool;
H A DPoolMethodProto.java32 package org.jf.dexlib2.writer.pool;

Completed in 4225 milliseconds

1234567891011>>