Searched refs:pool (Results 76 - 100 of 504) sorted by relevance

1234567891011>>

/external/libcxx/test/utilities/memory/specialized.algorithms/uninitialized.copy/
H A Duninitialized_copy_n.pass.cpp34 char pool[sizeof(B)*N] = {0}; local
35 B* bp = (B*)pool;
H A Duninitialized_copy.pass.cpp34 char pool[sizeof(B)*N] = {0}; local
35 B* bp = (B*)pool;
/external/libcxx/test/utilities/memory/specialized.algorithms/uninitialized.fill/
H A Duninitialized_fill.pass.cpp34 char pool[sizeof(B)*N] = {0}; local
35 B* bp = (B*)pool;
/external/chromium_org/third_party/libxml/src/
H A Ddict.c159 xmlDictStringsPtr pool; local
166 pool = dict->strings;
167 while (pool != NULL) {
168 if (pool->end - pool->free > namelen)
170 if (pool->size > size) size = pool->size;
171 pool = pool->next;
176 if (pool
219 xmlDictStringsPtr pool; local
664 xmlDictStringsPtr pool, nextp; local
1065 xmlDictStringsPtr pool; local
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/
H A Dradeon_list.h39 struct rc_list * rc_list(struct memory_pool * pool, void * item);
/external/deqp/framework/delibs/decpp/
H A DdePoolString.hpp23 * \brief Memory pool -backed string.
37 * \brief String template backed by memory pool
45 explicit PoolString (MemPool* pool);
46 PoolString (MemPool* pool, const PoolString& other);
73 inline PoolString::PoolString (MemPool* pool) argument
74 : PoolArray<char>(pool)
/external/deqp/framework/delibs/depool/
H A DdePoolStringBuilder.h31 dePoolStringBuilder* dePoolStringBuilder_create (deMemPool* pool);
/external/mesa3d/src/gallium/drivers/r300/compiler/
H A Dradeon_list.h39 struct rc_list * rc_list(struct memory_pool * pool, void * item);
/external/javassist/src/main/javassist/tools/reflect/
H A DCompiler.java93 ClassPool pool = ClassPool.getDefault();
94 implementor.start(pool);
97 CtClass c = pool.get(entries[i].classname);
112 if (!implementor.makeReflective(c, pool.get(metaobj),
113 pool.get(classobj)))
125 implementor.onLoad(pool, entries[i].classname);
126 pool.get(entries[i].classname).writeFile();
/external/javassist/src/test/test/javassist/bytecode/analysis/
H A DErrorFinder.java19 ClassPool pool = ClassPool.getDefault();
23 analyzeClass(pool, className);
33 analyzeClass(pool, line);
38 private static void analyzeClass(ClassPool pool, String className) { argument
41 CtClass clazz = pool.get(className);
/external/chromium_org/content/browser/net/
H A Dsqlite_persistent_cookie_store_perftest.cc55 return pool_owner_->pool()->GetSequencedTaskRunner(
56 pool_owner_->pool()->GetNamedSequenceToken("background"));
60 return pool_owner_->pool()->GetSequencedTaskRunner(
61 pool_owner_->pool()->GetNamedSequenceToken("client"));
92 // Shut down the pool, causing deferred (no-op) commits to be discarded.
93 pool_owner_->pool()->Shutdown();
94 // ~SequencedWorkerPoolOwner blocks on pool shutdown.
95 pool_owner_.reset(new base::SequencedWorkerPoolOwner(1, "pool"));
106 pool_owner_->pool()->Shutdown();
/external/chromium_org/third_party/cython/src/Tools/
H A Dcystdlib.py163 pool = None variable
168 pool = multiprocessing.Pool(parallel_jobs) variable
178 if pool is not None:
179 results = pool.map(_build, [(sys_args, ext) for ext in extensions])
180 pool.close()
181 pool.join()
/external/chromium_org/third_party/skia/src/utils/
H A DSkTaskGroup.cpp104 ThreadPool* pool = (ThreadPool*)arg; local
108 AutoLock lock(&pool->fReady);
109 while (pool->fWork.isEmpty()) {
110 if (pool->fDraining) {
113 pool->fReady.wait();
115 pool->fWork.pop(&work);
/external/compiler-rt/lib/interception/
H A Dinterception_win.cc60 // Trampolines are allocated from a common pool.
62 static char *pool = NULL; local
64 if (!pool) {
65 pool = (char *)VirtualAlloc(NULL, POOL_SIZE, MEM_RESERVE | MEM_COMMIT,
69 if (!pool)
71 _memset(pool, 0xCC /* int 3 */, POOL_SIZE);
77 char *ret = pool + pool_used;
/external/oauth/core/src/main/java/net/oauth/
H A DConsumerProperties.java28 * A pool of OAuthConsumers that are constructed from Properties. Each consumer
70 private final Map<String, OAuthConsumer> pool = new HashMap<String, OAuthConsumer>(); field in class:ConsumerProperties
75 synchronized (pool) {
76 consumer = pool.get(name);
81 synchronized (pool) {
82 OAuthConsumer first = pool.get(name);
84 pool.put(name, consumer);
/external/chromium_org/base/
H A Dsequence_checker_unittest.cc68 pool()->Shutdown();
74 const scoped_refptr<SequencedWorkerPool>& pool() { function in class:base::__anon2441::SequenceCheckerTest
75 return pool_owner_->pool();
80 pool()->PostNamedSequencedWorkerTask(
161 pool()->FlushForTesting();
174 pool()->FlushForTesting();
179 pool()->FlushForTesting();
249 pool()->FlushForTesting();
276 pool()->FlushForTesting();
303 pool()
[all...]
/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/chromium_org/base/threading/
H A Dsimple_thread_unittest.cc56 // have all threads outstanding until we hit our expected thread pool size.
141 DelegateSimpleThreadPool pool("seq_runner", 10);
144 pool.AddWork(&runner, 300);
147 pool.Start();
150 pool.AddWork(&runner, 300);
152 pool.JoinAll();
156 // We can reuse our pool. Verify that all 10 threads can actually run in
162 pool.Start();
164 pool.AddWork(&verifier, 10);
166 pool
[all...]
/external/chromium_org/components/autofill/core/browser/
H A Dtest_autofill_driver.cc18 blocking_pool_owner_->pool()->Shutdown();
30 return blocking_pool_owner_->pool().get();
/external/chromium_org/third_party/skia/gm/
H A Dfactory.cpp38 SkAutoTUnref<SkDiscardableMemoryPool> pool(
43 &fBitmap, pool));
/external/chromium_org/third_party/webrtc/test/testsupport/mac/
H A Drun_threaded_main_mac.mm47 NSAutoreleasePool* pool = [[NSAutoreleasePool alloc] init];
52 [pool release];
63 NSAutoreleasePool* pool = [[NSAutoreleasePool alloc] init];
88 [pool release];
/external/clang/lib/Sema/
H A DAttributeList.cpp69 assert(cur && "reclaiming empty pool!");
90 void AttributePool::takePool(AttributeList *pool) { argument
91 assert(pool);
93 // Fast path: this pool is empty.
95 Head = pool;
99 // Reverse the pool onto the current head. This optimizes for the
100 // pattern of pulling a lot of pools into a single pool.
102 AttributeList *next = pool->NextInPool;
103 pool->NextInPool = Head;
104 Head = pool;
[all...]
/external/libcxx/test/utilities/memory/specialized.algorithms/uninitialized.fill.n/
H A Duninitialized_fill_n.pass.cpp33 char pool[sizeof(B)*N] = {0}; local
34 B* bp = (B*)pool;

Completed in 575 milliseconds

1234567891011>>