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

1 2 3 4 5 6 7 8 91011>>

  /external/llvm/test/MC/ARM/
pool.s 6 .global pool
7 .type pool,%function
8 pool: label
11 .pool
13 @ CHECK-LABEL: pool
  /art/compiler/utils/
arena_allocator_test.cc 24 ArenaPool pool; local
25 ArenaAllocator arena(&pool);
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRFastQueue.h 37 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/
ANTLRFastQueue.h 37 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/
ANTLRFastQueue.h 37 NSAutoreleasePool *pool; variable
42 @property (retain, getter=getPool, setter=setPool) NSAutoreleasePool *pool; variable
  /external/chromium_org/gpu/command_buffer/tests/
gl_tests_main.cc 29 base::mac::ScopedNSAutoreleasePool pool; local
  /external/chromium_org/third_party/npapi/npspy/extern/nspr/
plarenas.h 44 ** Allocate an arena pool as specified by the parameters.
59 ** Destroy an arena pool previously allocated by PL_AllocArenaPool().
65 PR_EXTERN(PRStatus) PL_DestroyArenaPool(PLArenaPool *pool, PRBool checkEmpty);
70 ** Initialize an arena pool with the given name for debugging and metering,
74 PLArenaPool *pool, const char *name, PRUint32 size, PRUint32 align);
82 ** Free the arenas in pool. The user may continue to allocate from pool
84 ** again unless PL_FinishArenaPool(pool) has been called.
86 PR_EXTERN(void) PL_FreeArenaPool(PLArenaPool *pool); variable
89 ** Free the arenas in pool and finish using it altogether
91 PR_EXTERN(void) PL_FinishArenaPool(PLArenaPool *pool); variable
96 PR_EXTERN(void) PL_CompactArenaPool(PLArenaPool *pool); variable
    [all...]
  /external/chromium_org/third_party/skia/tools/
LazyDecodeBitmap.cpp 41 SkDiscardableMemory::Factory* pool = NULL; local
44 pool = SkGetGlobalDiscardableMemoryPool();
46 // memory implementation that differs from the global DM pool.
48 return SkInstallDiscardablePixelRef(gen.detach(), dst, pool);
  /external/llvm/unittests/Support/
StringPool.cpp 18 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/skia/tools/
LazyDecodeBitmap.cpp 41 SkDiscardableMemory::Factory* pool = NULL; local
44 pool = SkGetGlobalDiscardableMemoryPool();
46 // memory implementation that differs from the global DM pool.
48 return SkInstallDiscardablePixelRef(gen.detach(), dst, pool);
  /external/chromium_org/gpu/gles2_conform_support/native/
main.cc 33 base::mac::ScopedNSAutoreleasePool pool; local
  /external/deqp/framework/delibs/depool/
dePoolHashSet.c 2 * drawElements Memory Pool Library
21 * \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);
dePoolHashArray.c 2 * drawElements Memory Pool Library
21 * \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);
  /external/chromium_org/third_party/libjpeg_turbo/
jcomapi.c 23 * 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/jpeg/
jcomapi.c 23 * 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/pdfium/core/src/fxcodec/libjpeg/
fpdfapi_jcomapi.c 24 * the permanent pool, so we will be able to close all temp files here.
32 int pool; local
41 for (pool = JPOOL_NUMPOOLS-1; pool > JPOOL_PERMANENT; pool--) {
42 (*cinfo->mem->free_pool) (cinfo, pool);
  /external/qemu/distrib/jpeg-6b/
jcomapi.c 23 * 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/smali/dexlib2/src/main/java/org/jf/dexlib2/writer/pool/
BaseNullableOffsetPool.java 32 package org.jf.dexlib2.writer.pool;
  /frameworks/base/libs/androidfw/tests/
TestHelpers.cpp 36 const ResStringPool* pool = table.getTableStringBlock(block); local
37 if (pool == NULL) {
38 return ::testing::AssertionFailure() << "table has no string pool for block " << block;
41 const String8 actual = pool->string8ObjectAt(val.data);
  /libcore/luni/src/main/java/java/util/concurrent/
ForkJoinWorkerThread.java 29 * This class just maintains links to its pool and WorkQueue. The
30 * pool field is set immediately upon construction, but the
37 final ForkJoinPool pool; // the pool this thread works in field in class:ForkJoinWorkerThread
41 * Creates a ForkJoinWorkerThread operating in the given pool.
43 * @param pool the pool this thread works in
44 * @throws NullPointerException if pool is null
46 protected ForkJoinWorkerThread(ForkJoinPool pool) {
49 this.pool = pool
    [all...]
  /development/samples/WiFiDirectServiceDiscovery/src/com/example/android/wifidirect/discovery/
GroupOwnerSocketHandler.java 31 pool.shutdownNow();
40 private final ThreadPoolExecutor pool = new ThreadPoolExecutor( field in class:GroupOwnerSocketHandler
50 pool.execute(new ChatManager(socket.accept(), handler));
61 pool.shutdownNow();
  /art/compiler/optimizing/
linearize_test.cc 37 ArenaPool pool; local
38 ArenaAllocator allocator(&pool);
stack_map_test.cc 35 ArenaPool pool; local
36 ArenaAllocator arena(&pool);
72 ArenaPool pool; local
73 ArenaAllocator arena(&pool);
  /external/chromium_org/base/test/
sequenced_worker_pool_owner.cc 24 const scoped_refptr<SequencedWorkerPool>& SequencedWorkerPoolOwner::pool() { function in class:base::SequencedWorkerPoolOwner
  /external/chromium_org/remoting/host/it2me/
it2me_native_messaging_host_main.cc 42 base::mac::ScopedNSAutoreleasePool pool; local

Completed in 982 milliseconds

1 2 3 4 5 6 7 8 91011>>