HomeSort by relevance Sort by last modified time
    Searched refs:Pool (Results 76 - 100 of 219) sorted by null

1 2 34 5 6 7 8 9

  /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/g3d/
SkeletonTest.java 37 import com.badlogic.gdx.utils.Pool;
54 private final static Pool<Vector3> vectorPool = new Pool<Vector3>() {
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_variable.c 280 memory_pool_malloc(&c->Pool, sizeof(struct rc_variable));
308 rc_list_add(variable_list, rc_list(&variable->C->Pool, variable));
436 rc_list_add(&list, rc_list(&var->C->Pool, a));
484 rc_list_add(&writer_list, rc_list(&var->C->Pool, var));
489 rc_list(&var->C->Pool, friend));
radeon_compiler.h 45 struct memory_pool Pool;
radeon_dataflow_deadcode.c 94 memory_pool_array_reserve(&s->C->Pool, struct updatemask_state,
102 memory_pool_array_reserve(&s->C->Pool, struct loopinfo, s->LoopStack,
111 memory_pool_array_reserve(&s->C->Pool, struct branchinfo, s->BranchStack,
225 s.Instructions = memory_pool_malloc(&c->Pool, sizeof(struct instruction_state)*nr_instructions);
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g2d/
GlyphLayout.java 26 import com.badlogic.gdx.utils.Pool;
27 import com.badlogic.gdx.utils.Pool.Poolable;
90 Pool<GlyphRun> glyphRunPool = Pools.get(GlyphRun.class);
101 Pool<Color> colorPool = Pools.get(Color.class);
240 Pool<GlyphRun> glyphRunPool) {
282 private GlyphRun wrap (BitmapFontData fontData, GlyphRun first, Pool<GlyphRun> glyphRunPool, int wrapIndex, int widthIndex) {
340 private int parseColorMarkup (CharSequence str, int start, int end, Pool<Color> colorPool) {
  /prebuilts/tools/common/m2/repository/com/sun/istack/istack-commons-runtime/2.21/
istack-commons-runtime-2.21.jar 
  /external/chromium-trace/catapult/third_party/mapreduce/mapreduce/
context.py 27 "Pool",
48 # Maximum number of items. Pool will be flushed when reaches this amount.
56 # Deadline in seconds for mutation pool datastore operations.
196 class Pool(object):
197 """Mutation pool accumulates changes to perform them in patch.
199 Any Pool subclass should not be public. Instead, Pool should define an
216 class _MutationPool(Pool):
217 """Mutation pool accumulates datastore changes to perform them in batch.
343 class _Counters(Pool)
    [all...]
  /external/libgdx/extensions/gdx-controllers/gdx-controllers-android/src/com/badlogic/gdx/controllers/android/
AndroidControllers.java 36 import com.badlogic.gdx.utils.Pool;
44 private final Pool<AndroidControllerEvent> eventPool = new Pool<AndroidControllerEvent>() {
  /external/v8/tools/sanitizers/
sancov_formatter.py 50 from multiprocessing import Pool, cpu_count
160 Called trough multiprocessing pool.
222 pool = Pool(CPUS)
224 results = pool.imap_unordered(get_instrumented_lines, exe_list)
226 pool.close()
243 Called trough multiprocessing pool. The args are expected to unpack to:
353 pool = Pool(CPUS)
355 results = pool.imap_unordered(get_covered_lines, inputs
    [all...]
sancov_merger.py 32 from multiprocessing import Pool, cpu_count
60 Called trough multiprocessing pool. The args are expected to unpack to:
121 pool = Pool(CPUS)
123 return pool.map(merge_fun, inputs)
125 pool.close()
163 Called trough multiprocessing pool. The args are expected to unpack to:
  /external/autotest/client/site_tests/power_HotCPUSuspend/
power_HotCPUSuspend.py 70 # create processs pool with enough workers to spin all CPUs
74 pool = multiprocessing.Pool(workers)
79 results = [pool.apply_async(cpu_stress) for _ in xrange(workers)]
105 pool.terminate()
  /external/libgdx/extensions/gdx-bullet/jni/swig/common/
gdxPooledObject.i 1 /** Creates a pool for the type and sets SWIG to use the pool instead of creating a new java object every time.
14 /** Pool of JTYPE instances, used by director interface to provide the arguments. */
15 protected static final com.badlogic.gdx.utils.Pool<JTYPE> pool = new com.badlogic.gdx.utils.Pool<JTYPE>() {
23 final JTYPE result = pool.obtain();
30 pool.free(inst);
62 // Inline method to obtain an instance from the pool
75 // Inline method to free an instance from the pool
    [all...]
  /external/universal-tween-engine/java/api/src/aurelienribon/tweenengine/
Tween.java 117 // Static -- pool
120 private static final Pool.Callback<Tween> poolCallback = new Pool.Callback<Tween>() {
125 private static final Pool<Tween> pool = new Pool<Tween>(20, poolCallback) { field in class:Tween
131 * waiting in the Tween pool.
134 return pool.size();
138 * Increases the minimum capacity of the pool. Capacity defaults to 20.
141 pool.ensureCapacity(minCapacity)
    [all...]
  /external/vixl/tools/
threaded_tests.py 142 pool = multiprocessing.Pool(jobs)
146 work = pool.map_async(RunTest, tests).get(9999999)
147 pool.close()
148 pool.join()
  /prebuilts/gdb/darwin-x86/lib/python2.7/multiprocessing/
pool.py 2 # Module providing the `Pool` class for managing a process pool
4 # multiprocessing/pool.py
35 __all__ = ['Pool']
51 # Constants representing the state of a pool
127 # Class representing a process pool
130 class Pool(object):
162 target=Pool._handle_workers,
171 target=Pool._handle_tasks,
179 target=Pool._handle_results
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/multiprocessing/
pool.py 2 # Module providing the `Pool` class for managing a process pool
4 # multiprocessing/pool.py
35 __all__ = ['Pool']
51 # Constants representing the state of a pool
127 # Class representing a process pool
130 class Pool(object):
162 target=Pool._handle_workers,
171 target=Pool._handle_tasks,
179 target=Pool._handle_results
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/multiprocessing/
pool.py 2 # Module providing the `Pool` class for managing a process pool
4 # multiprocessing/pool.py
35 __all__ = ['Pool']
51 # Constants representing the state of a pool
127 # Class representing a process pool
130 class Pool(object):
162 target=Pool._handle_workers,
171 target=Pool._handle_tasks,
179 target=Pool._handle_results
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/multiprocessing/
pool.py 2 # Module providing the `Pool` class for managing a process pool
4 # multiprocessing/pool.py
35 __all__ = ['Pool']
51 # Constants representing the state of a pool
127 # Class representing a process pool
130 class Pool(object):
162 target=Pool._handle_workers,
171 target=Pool._handle_tasks,
179 target=Pool._handle_results
    [all...]
  /external/libgdx/extensions/gdx-bullet/jni/swig/extras/
extras.i 36 import com.badlogic.gdx.utils.Pool;
  /external/libgdx/extensions/gdx-bullet/jni/swig/softbody/
softbody.i 34 import com.badlogic.gdx.utils.Pool;
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/particles/influencers/
ParticleControllerInfluencer.java 15 import com.badlogic.gdx.utils.Pool;
69 private class ParticleControllerPool extends Pool<ParticleController>{
82 for(int i=0, free = pool.getFree(); i < free; ++i){
83 pool.obtain().dispose();
89 ParticleControllerPool pool; field in class:ParticleControllerInfluencer.Random
93 pool = new ParticleControllerPool();
97 pool = new ParticleControllerPool();
102 pool = new ParticleControllerPool();
107 pool.clear();
110 pool.free(pool.newObject())
    [all...]
  /external/libvpx/libvpx/vp8/common/arm/armv6/
dc_only_idct_add_v6.asm 68 ; Constant Pool
  /frameworks/base/services/accessibility/java/com/android/server/accessibility/
KeyEventDispatcher.java 27 import android.util.Pools.Pool;
58 private final Pool<PendingKeyEvent> mPendingEventPool = new Pools.SimplePool<>(MAX_POOL_SIZE);
  /frameworks/base/tools/layoutlib/rename_font/
build_font.py 26 from multiprocessing import Pool
93 pool = Pool(processes=None)
94 pool.map(convert_font, input_fonts)
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/arm/armv6/
dc_only_idct_add_v6.asm 68 ; Constant Pool

Completed in 400 milliseconds

1 2 34 5 6 7 8 9