HomeSort by relevance Sort by last modified time
    Searched refs:reallocateBuffer (Results 1 - 3 of 3) sorted by null

  /external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/org/jbox2d/common/
BufferUtils.java 10 public static <T> T[] reallocateBuffer(Class<T> klass, T[] oldBuffer, int oldCapacity,
29 public static int[] reallocateBuffer(int[] oldBuffer, int oldCapacity, int newCapacity) {
39 public static float[] reallocateBuffer(float[] oldBuffer, int oldCapacity, int newCapacity) {
52 public static <T> T[] reallocateBuffer(Class<T> klass, T[] buffer, int userSuppliedCapacity,
57 buffer = reallocateBuffer(klass, buffer, oldCapacity, newCapacity);
66 public static int[] reallocateBuffer(int[] buffer, int userSuppliedCapacity, int oldCapacity,
71 buffer = reallocateBuffer(buffer, oldCapacity, newCapacity);
80 public static float[] reallocateBuffer(float[] buffer, int userSuppliedCapacity, int oldCapacity,
85 buffer = reallocateBuffer(buffer, oldCapacity, newCapacity);
  /external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/org/jbox2d/collision/broadphase/
DynamicTreeFlatNodes.java 69 m_aabb = BufferUtils.reallocateBuffer(AABB.class, m_aabb, oldSize, newSize);
70 m_userData = BufferUtils.reallocateBuffer(Object.class, m_userData, oldSize, newSize);
71 m_parent = BufferUtils.reallocateBuffer(m_parent, oldSize, newSize);
72 m_child1 = BufferUtils.reallocateBuffer(m_child1, oldSize, newSize);
73 m_child2 = BufferUtils.reallocateBuffer(m_child2, oldSize, newSize);
74 m_height = BufferUtils.reallocateBuffer(m_height, oldSize, newSize);
190 BufferUtils.reallocateBuffer(nodeStack, nodeStack.length, nodeStack.length * 2);
  /external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/org/jbox2d/particle/
ParticleSystem.java 192 reallocateBuffer(m_flagsBuffer, m_internalAllocatedCapacity, capacity, false);
194 reallocateBuffer(m_positionBuffer, m_internalAllocatedCapacity, capacity, false);
196 reallocateBuffer(m_velocityBuffer, m_internalAllocatedCapacity, capacity, false);
198 BufferUtils.reallocateBuffer(m_accumulationBuffer, 0, m_internalAllocatedCapacity,
201 BufferUtils.reallocateBuffer(Vec2.class, m_accumulation2Buffer, 0,
204 BufferUtils.reallocateBuffer(m_depthBuffer, 0, m_internalAllocatedCapacity, capacity,
207 reallocateBuffer(m_colorBuffer, m_internalAllocatedCapacity, capacity, true);
209 BufferUtils.reallocateBuffer(ParticleGroup.class, m_groupBuffer, 0,
212 reallocateBuffer(m_userDataBuffer, m_internalAllocatedCapacity, capacity, true);
241 BufferUtils.reallocateBuffer(Proxy.class, m_proxyBuffer, oldCapacity, newCapacity)
    [all...]

Completed in 891 milliseconds