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

1 23 4 5 6 7 8 9

  /external/libgdx/extensions/gdx-bullet/jni/swig-src/collision/com/badlogic/gdx/physics/bullet/collision/
Collision.java 22 /** Pool of Vector3, used by native (callback) method for the arguments */
23 public final static com.badlogic.gdx.utils.Pool<Vector3> poolVector3 = new com.badlogic.gdx.utils.Pool<Vector3>() {
33 /** Pool of Quaternion, used by native (callback) method for the arguments */
34 public final static com.badlogic.gdx.utils.Pool<Quaternion> poolQuaternion = new com.badlogic.gdx.utils.Pool<Quaternion>() {
44 /** Pool of Matrix3, used by native (callback) method for the arguments */
45 public final static com.badlogic.gdx.utils.Pool<Matrix3> poolMatrix3 = new com.badlogic.gdx.utils.Pool<Matrix3>() {
55 /** Pool of Matrix4, used by native (callback) method for the arguments *
    [all...]
btBroadphasePair.java 67 /** Pool of btBroadphasePair instances, used by director interface to provide the arguments. */
68 protected static final com.badlogic.gdx.utils.Pool<btBroadphasePair> pool = new com.badlogic.gdx.utils.Pool<btBroadphasePair>() { field in class:btBroadphasePair
76 final btBroadphasePair result = pool.obtain();
83 pool.free(inst);
btBroadphaseProxy.java 67 /** Pool of btBroadphaseProxy instances, used by director interface to provide the arguments. */
68 protected static final com.badlogic.gdx.utils.Pool<btBroadphaseProxy> pool = new com.badlogic.gdx.utils.Pool<btBroadphaseProxy>() { field in class:btBroadphaseProxy
76 final btBroadphaseProxy result = pool.obtain();
83 pool.free(inst);
  /external/libgdx/extensions/gdx-bullet/jni/swig-src/linearmath/com/badlogic/gdx/physics/bullet/linearmath/
LinearMath.java 21 /** Pool of Vector3, used by native (callback) method for the arguments */
22 public final static com.badlogic.gdx.utils.Pool<Vector3> poolVector3 = new com.badlogic.gdx.utils.Pool<Vector3>() {
32 /** Pool of Quaternion, used by native (callback) method for the arguments */
33 public final static com.badlogic.gdx.utils.Pool<Quaternion> poolQuaternion = new com.badlogic.gdx.utils.Pool<Quaternion>() {
43 /** Pool of Matrix3, used by native (callback) method for the arguments */
44 public final static com.badlogic.gdx.utils.Pool<Matrix3> poolMatrix3 = new com.badlogic.gdx.utils.Pool<Matrix3>() {
54 /** Pool of Matrix4, used by native (callback) method for the arguments *
    [all...]
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/utils/
ShapeCache.java 32 import com.badlogic.gdx.utils.Pool;
118 public void getRenderables (Array<Renderable> renderables, Pool<Renderable> pool) {
BaseAnimationController.java 31 import com.badlogic.gdx.utils.Pool;
32 import com.badlogic.gdx.utils.Pool.Poolable;
92 private final Pool<Transform> transformPool = new Pool<Transform>() {
235 final Pool<Transform> pool, final float alpha, final float time) {
249 out.put(node, pool.obtain().set(transform));
251 out.put(node, pool.obtain().set(node.translation, node.rotation, node.scale).lerp(transform, alpha));
256 protected static void applyAnimation (final ObjectMap<Node, Transform> out, final Pool<Transform> pool, final float alpha,
    [all...]
  /external/libgdx/gdx/src/com/badlogic/gdx/utils/
PooledLinkedList.java 34 private final Pool<Item<T>> pool; field in class:PooledLinkedList
37 this.pool = new Pool<Item<T>>(16, maxPoolSize) {
47 Item<T> item = pool.obtain();
109 pool.free(curr);
ReflectionPool.java 23 /** Pool that creates new instances of a type using reflection. The type must have a zero argument constructor.
26 public class ReflectionPool<T> extends Pool<T> {
  /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/g3d/shadows/utils/
AABBNearFarAnalyzer.java 26 import com.badlogic.gdx.utils.Pool;
37 protected static class RenderablePool extends Pool<Renderable> {
  /frameworks/base/core/java/android/view/
InputQueue.java 23 import android.util.Pools.Pool;
36 private final Pool<ActiveInputEvent> mActiveInputEventPool =
  /packages/apps/Gallery2/src/com/android/photos/data/
GalleryBitmapPool.java 21 import android.util.Pools.Pool;
27 * Pool allowing the efficient reuse of bitmaps in order to avoid long
42 // to the pool with different non-square aspect ratios but the same width, as
55 private Pool<Node> mSharedNodePool = new SynchronizedPool<Node>(128);
104 * @return Capacity of the pool in bytes.
111 * @return Approximate total size in bytes of the bitmaps stored in the pool.
115 // might be getting and putting Bitmaps from the pool and we lock at the
116 // sub-pool level to avoid unnecessary blocking.
125 * @return Bitmap from the pool with the desired height/width or null if none available.
128 SparseArrayBitmapPool pool = getPoolForDimensions(width, height) local
144 SparseArrayBitmapPool pool = getPoolForDimensions(b.getWidth(), b.getHeight()); local
    [all...]
  /toolchain/binutils/binutils-2.25/gas/testsuite/gas/aarch64/
litpool.d 2 #name: AArch64 Bignums in Literal Pool (PR 16688)
  /external/chromium-trace/catapult/experimental/buildbot/
query.py 56 process_pool = multiprocessing.Pool(8)
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/
Renderable.java 27 import com.badlogic.gdx.utils.Pool;
47 * A ModelInstance returns all Renderables via its {@link ModelInstance#getRenderables(Array, Pool)} method. In which case the
  /external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/
Event.java 19 import com.badlogic.gdx.utils.Pool.Poolable;
  /external/mesa3d/src/gallium/drivers/r300/compiler/
radeon_rename_regs.c 64 used = memory_pool_malloc(&c->Pool, sizeof(unsigned char) * used_length);
  /external/universal-tween-engine/java/api/src/aurelienribon/tweenengine/
Timeline.java 48 // Static -- pool
51 private static final Pool.Callback<Timeline> poolCallback = new Pool.Callback<Timeline>() {
56 static final Pool<Timeline> pool = new Pool<Timeline>(10, poolCallback) { field in class:Timeline
62 * are waiting in the Timeline pool.
65 return pool.size();
69 * Increases the minimum capacity of the pool. Capacity defaults to 10.
72 pool.ensureCapacity(minCapacity)
    [all...]
  /external/webrtc/webrtc/tools/barcode_tools/
helper_functions.py 86 process_pool = multiprocessing.Pool(processes=multiprocessing.cpu_count())
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/particles/influencers/
ModelInfluencer.java 12 import com.badlogic.gdx.utils.Pool;
50 private class ModelInstancePool extends Pool<ModelInstance>{
59 ModelInstancePool pool; field in class:ModelInfluencer.Random
62 pool = new ModelInstancePool();
67 pool = new ModelInstancePool();
72 pool = new ModelInstancePool();
77 pool.clear();
83 modelChannel.data[i] = pool.obtain();
89 pool.free(modelChannel.data[i]);
  /external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/actions/
ParallelAction.java 22 import com.badlogic.gdx.utils.Pool;
66 Pool pool = getPool(); local
67 setPool(null); // Ensure this action can't be returned to the pool while executing.
77 setPool(pool);
  /external/autotest/client/site_tests/power_CameraSuspend/
power_CameraSuspend.py 46 pool = multiprocessing.Pool(processes=1)
48 result = pool.apply_async(async_suspend)
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/utils/shapebuilders/
BaseShapeBuilder.java 26 import com.badlogic.gdx.utils.Pool;
  /external/libgdx/extensions/gdx-controllers/gdx-controllers-gwt/src/com/badlogic/gdx/controllers/gwt/
GwtControllers.java 28 import com.badlogic.gdx.utils.Pool;
37 private final Pool<GwtControllerEvent> eventPool = new Pool<GwtControllerEvent>() {
  /external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/decals/
DecalBatch.java 27 import com.badlogic.gdx.utils.Pool;
57 private final Pool<Array<Decal>> groupPool = new Pool<Array<Decal>>(16) {
  /external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/bullet/
CollisionTest.java 28 import com.badlogic.gdx.utils.Pool;
84 private Pool<Color> colorPool = new Pool<Color>() {

Completed in 7122 milliseconds

1 23 4 5 6 7 8 9