HomeSort by relevance Sort by last modified time
    Searched full:pool (Results 76 - 100 of 1445) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/javassist/src/main/javassist/
CtArray.java 22 protected ClassPool pool; field in class:CtArray
27 pool = cp;
31 return pool;
57 interfaces[i] = pool.get(intfs[i].getName());
82 return pool.get(name.substring(0, name.length() - 2));
86 return pool.get(javaLangObject);
Translator.java 35 * @param pool the <code>ClassPool</code> that this translator
42 void start(ClassPool pool)
50 * pool.get(classname).toBytecode()</pre></ul>
60 * @param pool the <code>ClassPool</code> that this translator
68 void onLoad(ClassPool pool, String classname)
  /external/proguard/src/proguard/obfuscate/
NameAndTypeShrinker.java 30 * This ClassVisitor removes NameAndType constant pool entries
47 // Shift the used constant pool entries together, filling out the
54 // Remap all constant pool references.
69 * from the given constant pool.
84 // Shift the used constant pool entries together.
104 // Clear the remaining constant pool elements.
Utf8Shrinker.java 30 * This ClassVisitor removes UTF-8 constant pool entries that are not marked
47 // Shift the used constant pool entries together, filling out the
53 // Remap all constant pool references.
68 * from the given constant pool.
82 // Shift the used constant pool entries together.
102 // Clear the remaining constant pool elements.
  /external/valgrind/main/memcheck/tests/
leak-pool.c 15 struct pool struct
23 allocate_from_pool(struct pool *p, size_t n)
32 struct pool *
35 struct pool *p = malloc(sizeof(struct pool));
100 struct pool *p = allocate_pool();
  /external/llvm/include/llvm/CodeGen/
MachineConstantPool.h 1 //===-- CodeGen/MachineConstantPool.h - Abstract Constant Pool --*- C++ -*-===//
12 /// constant pool to keep track of constants referenced by a function.
72 /// the constant pool.
114 /// 0: This constant pool entry is guaranteed to never have a relocation
128 /// Instructions reference the address of these constant pool constants through
131 /// address of the function constant pool values.
132 /// @brief The machine constant pool.
135 unsigned PoolAlignment; ///< The alignment for the pool.
136 std::vector<MachineConstantPoolEntry> Constants; ///< The pool of constants.
146 /// the whole constant pool, of which the first element must be aligned
    [all...]
  /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...]
  /external/wpa_supplicant_8/src/crypto/
random.c 51 static u32 pool[POOL_WORDS]; variable
93 w ^= pool[pool_pos];
94 w ^= pool[(pool_pos + POOL_TAP1) & POOL_WORDS_MASK];
95 w ^= pool[(pool_pos + POOL_TAP2) & POOL_WORDS_MASK];
96 w ^= pool[(pool_pos + POOL_TAP3) & POOL_WORDS_MASK];
97 w ^= pool[(pool_pos + POOL_TAP4) & POOL_WORDS_MASK];
98 w ^= pool[(pool_pos + POOL_TAP5) & POOL_WORDS_MASK];
99 pool[pool_pos] = (w >> 3) ^ twist[w & 7];
111 /* First, add hash back to pool to make backtracking more difficult. */
112 hmac_sha1(dummy_key, sizeof(dummy_key), (const u8 *) pool,
    [all...]
  /external/libxml2/
dict.c 159 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 == NULL)
219 xmlDictStringsPtr pool; local
664 xmlDictStringsPtr pool, nextp; local
1066 xmlDictStringsPtr pool; local
    [all...]
  /external/clang/test/ARCMT/
atautorelease-2.m 17 NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
26 [pool drain];
  /external/clang/test/SemaObjC/
ivar-access-package.m 40 NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
44 [pool drain];
  /external/emma/core/java12/com/vladium/jcd/cls/
IConstantCollection.java 16 * An abstraction of constant pool in .class format. This interface disallows
17 * any pool mutation that invalidates already existing pool indices.
76 * Returns a CONSTANT_info at a given pool index. Note that 'index' is
83 * @param index constant pool index [must be in [1, size()] range]
84 * @return CONSTANT_info constant pool entry at this index [never null]
94 * Returns a fail-fast iterator over all valid entries in the pool. The
96 * underlying collection pool.
103 * Searches the pool for a matching constant of given type with equality
106 * O(pool size). When multiple matches exist, the location of the first on
    [all...]
  /frameworks/base/media/tests/SoundPoolTest/
AndroidManifest.xml 4 <activity android:name="SoundPoolTest" android:label="Sound Pool Test">
  /dalvik/dx/tests/061-dex-try-catch/
Blort.java 38 // constant pool references.
48 // pool reference.
58 // throwing instruction that has a constant pool reference and
  /external/chromium/base/mac/
scoped_nsautorelease_pool.h 24 // autorelease pool to be maintained in ordinary C++ code without bringing in
39 // Clear out the pool in case its position on the stack causes it to be
41 // Only use then when you're certain the items currently in the pool are
  /external/chromium/base/threading/
worker_pool.h 20 // for the worker pool threads to finish on shutdown, so the tasks running
21 // inside the pool must be extremely careful about other objects they access
29 // return value, ownership of |task| is transferred to the worker pool.
  /external/dbus/dbus/
dbus-mempool.h 37 void _dbus_mem_pool_free (DBusMemPool *pool);
38 void* _dbus_mem_pool_alloc (DBusMemPool *pool);
39 dbus_bool_t _dbus_mem_pool_dealloc (DBusMemPool *pool,
  /external/jsilver/src/com/google/clearsilver/jsilver/data/
StringInternStrategy.java 25 * Interns a String object in a pool and returns a String equal to the one provided.
28 * If there exists a String in the pool equal to the provided value then it will be returned.
32 * There is no guarantees on when the pool will return the same object as provided. It is possible
  /external/skia/gpu/src/
GrBufferAllocPool.h 30 * A pool of geometry buffers tied to a GrGpu.
32 * The pool allows a client to make space for geometry and then put back excess
33 * space if it over allocated. When a client is ready to draw from the pool
34 * it calls unlock on the pool ensure buffers are ready for drawing. The pool
39 * be allocated at the min size and kept around until the pool is destroyed.
46 * Call before drawing using buffers from the pool.
51 * Invalidates all the data in the pool, unrefs non-preallocated buffers.
71 * Gets the GrGpu that this pool is associated with.
91 * @param frequentResetHint A hint that indicates that the pool
    [all...]
  /system/media/mca/filterfw/jni/
jni_util.h 101 // Return the shared instance to this type's pool.
106 // Delete this type's pool.
111 // Register a new C++ object with the pool. This does not affect the Java
113 // assignments. Pass true to owns if the object pool owns the object.
122 // Return the object in the pool with the specified ID.
140 // object. Pass true to owns if the object pool owns the object.
150 // Remove the object with the given ID from this pool, and delete it. This
213 ObjectPool<T>* pool = ObjectPool<T>::Instance(); local
214 return pool ? pool->WrapObject(c_object, env, j_object, owns) : false
222 ObjectPool<T>* pool = ObjectPool<T>::Instance(); local
236 ObjectPool<T>* pool = ObjectPool<T>::Instance(); local
246 ObjectPool<T>* pool = ObjectPool<T>::Instance(); local
    [all...]
  /external/clang/include/clang/Sema/
AttributeList.h 92 /// The next attribute allocated in the current Pool.
377 /// individual attributes which are deallocated with the pool.
415 /// Reclaim all the attributes in the given pool chain, which is
436 // We don't care about the order of the pool.
442 void takePool(AttributeList *pool);
445 /// Create a new pool for a factory.
448 /// Move the given pool's allocations to this pool.
449 AttributePool(AttributePool &pool) : Factory(pool.Factory), Head(pool.Head)
    [all...]
  /external/bluetooth/glib/tests/
threadpool-test.c 104 GThreadPool *pool; local
110 pool = g_thread_pool_new ((GFunc) g_usleep, NULL, -1, FALSE, NULL);
113 g_thread_pool_push (pool, GUINT_TO_POINTER (1000), NULL);
115 DEBUG_MSG (("[unused] ===> pushed %d threads onto the idle pool",
141 DEBUG_MSG (("[unused] cleaning up thread pool"));
142 g_thread_pool_free (pool, FALSE, TRUE);
152 DEBUG_MSG (("[pool] ---> [%3.3d] entered thread.", id));
165 DEBUG_MSG (("[pool] ---> [%3.3d] exiting thread (abs count:%ld, "
258 GThreadPool *pool; local
279 pool = g_thread_pool_new (test_thread_sort_entry_func
    [all...]
  /external/javassist/src/test/test/javassist/bytecode/analysis/
AnalyzerTest.java 29 ClassPool pool = ClassPool.getDefault(); local
30 CtClass clazz = pool.get(getClass().getName() + "$Dummy");
36 ClassPool pool = ClassPool.getDefault(); local
37 CtClass clazz = pool.get(getClass().getName() + "$Dummy");
196 private CtMethod generateDeadCode(ClassPool pool) throws Exception {
197 CtClass clazz = pool.makeClass(getClass().getName() + "$Generated0");
198 CtClass stringClass = pool.get("java.lang.String");
215 private CtMethod generateInvalidCode(ClassPool pool) throws Exception {
216 CtClass clazz = pool.makeClass(getClass().getName() + "$Generated4");
217 CtClass intClass = pool.get("java.lang.Integer")
    [all...]
  /external/webkit/Source/WebKit/mac/WebCoreSupport/
WebIconDatabaseClient.mm 38 NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
40 [pool drain];
46 NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
48 [pool drain];
54 // Therefore we let WebCore handle autorelease by draining its pool "from time to time"
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
StringBuilderPool.java 24 * A pool of string builders to be used from anywhere.
36 // TODO: although the pool is synchronized, the following is not thread-safe.
37 // Two threads entering this at the same time could take the same size of the pool and the
38 // second to attempt removing this index from the pool would crash with an
40 // At the moment this pool is only used in Suggest.java and only in one thread so it's

Completed in 8306 milliseconds

1 2 34 5 6 7 8 91011>>