HomeSort by relevance Sort by last modified time
    Searched refs:Pool (Results 1 - 25 of 31) sorted by null

1 2

  /external/llvm/lib/Target/NVPTX/
ManagedStringPool.h 1 //===-- ManagedStringPool.h - Managed String Pool ---------------*- C++ -*-===//
10 // The strings allocated from a managed string pool are owned by the string
11 // pool and will be deleted together with the managed string pool.
24 /// ManagedStringPool - The strings allocated from a managed string pool are
25 /// owned by the string pool and will be deleted together with the managed
26 /// string pool.
28 SmallVector<std::string *, 8> Pool;
33 SmallVector<std::string *, 8>::iterator Current = Pool.begin();
34 while (Current != Pool.end())
    [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...]
Pool.java 22 public interface Pool<T extends Poolable<T>> {
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;
FinitePool.java 22 class FinitePool<T extends Poolable<T>> implements Pool<T> {
26 * Factory used to create new pool objects
30 * Maximum number of objects in the pool
43 * Number of objects in the pool
54 if (limit <= 0) throw new IllegalArgumentException("The pool limit must be > 0");
91 Log.w(LOG_TAG, "Element is already in pool: " + element);
  /external/llvm/lib/Support/
StringPool.cpp 1 //===-- StringPool.cpp - Interned string pool -----------------------------===//
31 S->getValue().Pool = this;
  /external/llvm/include/llvm/Support/
StringPool.h 1 //===-- StringPool.h - Interned string pool ---------------------*- C++ -*-===//
10 // This file declares an interned string pool, which helps reduce the cost of
15 // StringPool Pool;
16 // PooledStringPtr Str = Pool.intern("wakka wakka");
25 // strings in the string pool are reference-counted (automatically).
40 /// StringPool - An interned string pool. Use the intern method to add a
44 /// PooledString - This is the value of an entry in the pool's interning
47 StringPool *Pool; ///< So the string can remove itself.
51 PooledString() : Pool(0), Refcount(0) { }
64 /// intern - Adds a string to the pool and returns a reference-counte
    [all...]
  /frameworks/compile/mclinker/unittests/
StringTableTest.cpp 22 StrSymPool* Pool = new StrSymPool(1, 1, *R);
23 m_pTestee = new StringTable(*Pool);
  /cts/suite/audio_quality/test_description/processing/
calc_delay.py 24 from multiprocessing import Pool
53 pool = Pool(processes = 4)
55 result = pool.map(convolutionstar, TASK)
  /frameworks/base/core/java/android/view/
VelocityTracker.java 20 import android.util.Pool;
35 private static final Pool<VelocityTracker> sPool = Pools.synchronizedPool(
GLES20RecordingCanvas.java 27 import android.util.Pool;
39 // The recording canvas pool should be large enough to handle a deeply nested
43 private static final Pool<GLES20RecordingCanvas> sPool = Pools.synchronizedPool(
  /external/llvm/lib/TableGen/
Record.cpp 436 typedef FoldingSet<BitsInit> Pool;
437 static Pool ThePool;
538 typedef DenseMap<int64_t, IntInit *> Pool;
539 static Pool ThePool;
566 typedef StringMap<StringInit *> Pool;
567 static Pool ThePool;
588 typedef FoldingSet<ListInit> Pool;
589 static Pool ThePool;
706 typedef DenseMap<Key, UnOpInit *> Pool;
707 static Pool ThePool;
    [all...]
  /cts/tools/utils/
buildCts.py 26 from multiprocessing import Pool
81 pool = Pool(processes=2)
84 pool.apply_async(GenerateSignatureCheckDescription, [self.test_repository])
88 pool.close()
89 pool.join()
  /external/libvpx/vp8/common/arm/armv6/
dc_only_idct_add_v6.asm 65 ; Constant Pool
iwalsh_v6.asm 150 ; Constant Pool
  /external/clang/lib/Sema/
IdentifierResolver.cpp 42 IdDeclInfo Pool[POOL_SIZE];
425 IdDeclInfo *IDI = &CurPool->Pool[CurIndex];
  /external/webkit/Tools/Scripts/
run-qtwebkit-tests 190 from multiprocessing import Pool
196 class Pool(object):
197 """ A hack, created to avoid problems with multiprocessing module, this class is single thread replacement for the multiprocessing.Pool class. """
207 self._Pool = Pool
238 """ Executes given files by using a pool of workers. """
241 self.debug("Using %s the workers pool, number of workers %i", repr(workers), self._options.parallel_level)
  /external/libvpx/vp8/decoder/arm/neon/
dequant_idct_neon.asm 125 ; Constant Pool
idct_dequant_dc_full_2x_neon.asm 200 ; Constant Pool
  /external/ppp/pppd/plugins/radius/etc/
dictionary.ascend 40 ATTRIBUTE Ascend-Assign-IP-Global-Pool 146 string
42 ATTRIBUTE Ascend-DHCP-Pool-Number 148 integer
111 ATTRIBUTE Ascend-IP-Pool-Definition 217 string
112 ATTRIBUTE Ascend-Assign-IP-Pool 218 integer
  /external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/
gjslint.py 93 pool = multiprocessing.Pool()
95 for results in pool.imap(_CheckPath, paths):
99 pool.close()
100 pool.join()
  /external/libvpx/vp8/decoder/arm/armv6/
dequant_idct_v6.asm 191 ; Constant Pool
dequant_dc_idct_v6.asm 213 ; Constant Pool
  /external/v8/tools/
presubmit.py 244 pool = multiprocessing.Pool(count)
246 results = pool.map_async(CppLintWorker, commands).get(999999)
  /external/protobuf/src/google/protobuf/
descriptor_database_unittest.cc 478 INSTANTIATE_TEST_CASE_P(Pool, DescriptorDatabaseTest,

Completed in 399 milliseconds

1 2