Searched refs:pool (Results 151 - 175 of 504) sorted by relevance

1234567891011>>

/external/glide/library/src/main/java/com/bumptech/glide/load/engine/bitmap_recycle/
H A DSizeStrategy.java40 // Do a get even if we know we don't have a bitmap so that the key moves to the front in the lru pool
143 private final KeyPool pool; field in class:SizeStrategy.Key
146 private Key(KeyPool pool) { argument
147 this.pool = pool;
176 pool.offer(this);
/external/llvm/include/llvm/CodeGen/PBQP/
H A DCostAllocator.h34 PoolEntry(CostPool &pool, CostKeyT cost) argument
35 : pool(pool), cost(std::move(cost)), refCount(0) {}
36 ~PoolEntry() { pool.removeEntry(this); }
42 CostPool &pool; member in class:PBQP::CostPool::PoolEntry
/external/valgrind/main/coregrind/
H A Dm_poolalloc.c2 /*--- A simple pool (memory) allocator implementation. m_poolalloc.c --- */
36 UWord nrRef; /* nr reference to this pool allocator */
38 UWord nPerPool; /* # elems per pool */
39 void* (*alloc)(const HChar*, SizeT); /* pool allocator */
40 const HChar* cc; /* pool allocator's cc */
41 void (*free)(void*); /* pool allocator's free-er */
90 /* The freelist is empty. Allocate a new pool and put all the new
96 UWord* pool; local
99 pool = pa->alloc( pa->cc, pa->elemSzB * pa->nPerPool );
100 vg_assert(pool);
[all...]
/external/valgrind/main/memcheck/tests/
H A Dmempool2.stderr.exp2 ------ out of range reads in malloc-backed pool ------
21 ------ out of range reads in mmap-backed pool ------
40 ------ read free in malloc-backed pool ------
42 Illegal memory pool address
52 ------ read free in mmap-backed pool ------
54 Illegal memory pool address
60 ------ double free in malloc-backed pool ------
62 Illegal memory pool address
72 ------ double free in mmap-backed pool ------
74 Illegal memory pool addres
[all...]
/external/javassist/src/main/javassist/compiler/
H A DAccessorMaker.java51 ClassPool pool = clazz.getClassPool();
60 CtClass[] params = Descriptor.getParameterTypes(desc, pool);
110 ClassPool pool = clazz.getClassPool();
119 CtClass[] params = Descriptor.getParameterTypes(accDesc, pool);
131 code.addReturn(Descriptor.getReturnType(desc, pool));
162 ClassPool pool = clazz.getClassPool();
183 code.addReturn(Descriptor.toCtClass(fieldType, pool));
213 ClassPool pool = clazz.getClassPool();
227 reg = code.addLoad(0, Descriptor.toCtClass(fieldType, pool));
232 reg = code.addLoad(1, Descriptor.toCtClass(fieldType, pool))
[all...]
/external/valgrind/main/memcheck/
H A Dmc_malloc_wrappers.c72 MC_Mempool::pool. */
232 /* If a user builds a pool from a malloc-ed superblock
690 /*--- Memory pool stuff. ---*/
700 void MC_(create_mempool)(Addr pool, UInt rzB, Bool is_zeroed) argument
706 pool, rzB, is_zeroed);
711 mp = VG_(HT_lookup)(MC_(mempool_list), (UWord)pool);
713 VG_(tool_panic)("MC_(create_mempool): duplicate pool creation");
717 mp->pool = pool;
735 void MC_(destroy_mempool)(Addr pool) argument
854 mempool_alloc(ThreadId tid, Addr pool, Addr addr, SizeT szB) argument
883 mempool_free(Addr pool, Addr addr) argument
918 mempool_trim(Addr pool, Addr addr, SizeT szB) argument
1054 mempool_change(Addr pool, Addr addrA, Addr addrB, SizeT szB) argument
1087 mempool_exists(Addr pool) argument
[all...]
/external/javassist/src/main/javassist/tools/rmi/
H A DStubGenerator.java70 public void start(ClassPool pool) throws NotFoundException { argument
71 classPool = pool;
72 CtClass c = pool.get(sampleClass);
77 = pool.get(new String[] { "javassist.tools.rmi.ObjectImporter",
80 = pool.get(new String[] { "java.io.Serializable",
83 = new CtClass[] { pool.get("javassist.tools.rmi.RemoteException") };
91 public void onLoad(ClassPool pool, String classname) {} argument
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
H A DRouteSelector.java57 private final ConnectionPool pool; field in class:RouteSelector
81 public RouteSelector(Address address, URI uri, ProxySelector proxySelector, ConnectionPool pool, argument
86 this.pool = pool;
109 for (Connection pooled; (pooled = pool.get(address)) != null; ) {
121 return new Connection(pool, nextPostponed());
139 return new Connection(pool, route);
/external/chromium_org/content/browser/fileapi/
H A Dbrowser_file_system_helper.cc56 base::SequencedWorkerPool* pool = BrowserThread::GetBlockingPool(); local
58 pool->GetSequencedTaskRunnerWithShutdownBehavior(
59 pool->GetNamedSequenceToken("FileAPI"),
/external/chromium_org/content/public/test/
H A Dcontent_browser_test.cc123 // On Mac, without the following autorelease pool, code which is directly
125 // objects into a higher-level pool. This pool is not recycled in-sync with
127 // deallocation via an autorelease pool (such as browser window closure and
128 // browser shutdown). To avoid this, the following pool is recycled after each
130 base::mac::ScopedNSAutoreleasePool pool; local
137 pool.Recycle();
146 pool.Recycle();
/external/chromium_org/third_party/protobuf/python/google/protobuf/internal/
H A Dmessage_factory_test.py90 pool = descriptor_pool.DescriptorPool(db)
94 cls = factory.GetPrototype(pool.FindMessageTypeByName(
98 cls2 = factory.GetPrototype(pool.FindMessageTypeByName(
/external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/
H A Dplugin.cc113 DescriptorPool pool; local
115 const FileDescriptor* file = pool.BuildFile(request.proto_file(i));
124 parsed_files.push_back(pool.FindFileByName(request.file_to_generate(i)));
/external/glide/library/src/main/java/com/bumptech/glide/load/resource/gifbitmap/
H A DGifBitmapWrapperResourceDecoder.java28 ByteArrayPool pool = ByteArrayPool.get();
30 byte[] tempBytes = pool.getBytes();
49 pool.releaseBytes(tempBytes);
/external/javassist/src/main/javassist/convert/
H A DTransformCall.java83 private boolean matchClass(String name, ClassPool pool) { argument
88 CtClass clazz = pool.get(name);
89 CtClass declClazz = pool.get(classname);
/external/protobuf/src/google/protobuf/compiler/
H A Dplugin.cc106 DescriptorPool pool; local
108 const FileDescriptor* file = pool.BuildFile(request.proto_file(i));
120 pool.FindFileByName(request.file_to_generate(i));
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/http/
H A DRouteSelectorTest.java68 private static final ConnectionPool pool; field in class:RouteSelectorTest
74 pool = ConnectionPool.getDefault();
89 RouteSelector routeSelector = new RouteSelector(address, uri, proxySelector, pool, dns,
109 RouteSelector routeSelector = new RouteSelector(address, uri, proxySelector, pool, dns,
117 routeSelector = new RouteSelector(address, uri, proxySelector, pool, dns, routeDatabase);
131 RouteSelector routeSelector = new RouteSelector(address, uri, proxySelector, pool, dns,
149 RouteSelector routeSelector = new RouteSelector(address, uri, proxySelector, pool, dns,
169 RouteSelector routeSelector = new RouteSelector(address, uri, proxySelector, pool, dns,
185 RouteSelector routeSelector = new RouteSelector(address, uri, proxySelector, pool, dns,
206 RouteSelector routeSelector = new RouteSelector(address, uri, proxySelector, pool, dn
[all...]
/external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/
H A Dgjslint.py93 pool = multiprocessing.Pool()
95 for results in pool.imap(_CheckPath, paths):
99 pool.close()
100 pool.join()
/external/chromium_org/base/test/
H A Dsequenced_worker_pool_owner.cc24 const scoped_refptr<SequencedWorkerPool>& SequencedWorkerPoolOwner::pool() { function in class:base::SequencedWorkerPoolOwner
/external/chromium_org/chrome/browser/extensions/updater/
H A Dlocal_extension_cache_unittest.cc43 background_task_runner_ = pool_owner_->pool()->GetSequencedTaskRunner(
44 pool_owner_->pool()->GetNamedSequenceToken("background"));
48 pool_owner_->pool()->Shutdown();
97 pool_owner_->pool()->FlushForTesting();
/external/chromium_org/gpu/gles2_conform_support/native/
H A Dmain.cc33 base::mac::ScopedNSAutoreleasePool pool; local
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/egl/wayland/
H A Dnative_shm.c88 struct wl_shm_pool *pool; local
109 pool = wl_shm_create_pool(shmdpy->wl_shm, wsh.fd, wsh.size);
110 buffer = wl_shm_pool_create_buffer(pool, 0, width, height,
112 wl_shm_pool_destroy(pool);
/external/chromium_org/third_party/protobuf/src/google/protobuf/
H A Ddynamic_message.h78 // parser to look for extensions in an alternate pool. However, note that
81 DynamicMessageFactory(const DescriptorPool* pool);
87 // d->file()->pool() == DescriptorPool::generated_pool(),
/external/chromium_org/tools/gyp/pylib/gyp/
H A Dninja_syntax.py37 def pool(self, name, depth): member in class:Writer
38 self._line('pool %s' % name)
42 generator=False, pool=None, restat=False, rspfile=None,
52 if pool:
53 self.variable('pool', pool, indent=1)
/external/deqp/framework/delibs/depool/
H A DdePoolHeap.h23 * \brief Memory pool heap class.
37 * \brief Declare a template pool heap class.
42 * This macro declares a pool heap with all the necessary functions for
43 * operating with it. All allocated memory is taken from the memory pool
49 * Heap* Heap_create (deMemPool* pool);
66 DE_INLINE TYPENAME* TYPENAME##_create (deMemPool* pool); \
75 DE_INLINE TYPENAME* TYPENAME##_create (deMemPool* pool) \
77 TYPENAME* heap = DE_POOL_NEW(pool, TYPENAME); \
80 heap->array = TYPENAME##Array_create(pool); \
/external/javassist/src/main/javassist/scopedpool/
H A DScopedClassPool.java29 * A scoped class pool.
58 * the original class pool
74 * the original class pool
78 * Whether this is a temporary pool used to resolve references
116 * Close the class pool
192 ScopedClassPool pool = (ScopedClassPool)it.next();
193 if (pool.isUnloadedClassLoader()) {
194 repository.unregisterClassLoader(pool
199 clazz = pool.getCachedLocally(classname);
293 // We need to pass up the classloader stored in this pool, a
[all...]

Completed in 6538 milliseconds

1234567891011>>