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

1 2

  /external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/org/jbox2d/pooling/arrays/
FloatArray.java 36 public float[] get( int argLength){
37 assert(argLength > 0);
39 if(!map.containsKey(argLength)){
40 map.put(argLength, getInitializedArray(argLength));
43 assert(map.get(argLength).length == argLength) : "Array not built of correct length";
44 return map.get(argLength);
47 protected float[] getInitializedArray(int argLength){
48 return new float[argLength];
    [all...]
IntArray.java 39 public int[] get( int argLength){
40 assert(argLength > 0);
42 if(!map.containsKey(argLength)){
43 map.put(argLength, getInitializedArray(argLength));
46 assert(map.get(argLength).length == argLength) : "Array not built of correct length";
47 return map.get(argLength);
50 protected int[] getInitializedArray(int argLength){
51 return new int[argLength];
    [all...]
Vec2Array.java 39 public Vec2[] get( int argLength){
40 assert(argLength > 0);
42 if(!map.containsKey(argLength)){
43 map.put(argLength, getInitializedArray(argLength));
46 assert(map.get(argLength).length == argLength) : "Array not built of correct length";
47 return map.get(argLength);
50 protected Vec2[] getInitializedArray(int argLength){
51 final Vec2[] ray = new Vec2[argLength];
    [all...]
  /external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/org/jbox2d/pooling/normal/
DefaultWorldPool.java 252 public final float[] getFloatArray(int argLength) {
253 if (!afloats.containsKey(argLength)) {
254 afloats.put(argLength, new float[argLength]);
257 assert (afloats.get(argLength).length == argLength) : "Array not built with correct length";
258 return afloats.get(argLength);
261 public final int[] getIntArray(int argLength) {
262 if (!aints.containsKey(argLength)) {
263 aints.put(argLength, new int[argLength])
    [all...]
  /external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/org/jbox2d/pooling/
IWorldPool.java 96 public float[] getFloatArray(int argLength);
98 public int[] getIntArray(int argLength);
100 public Vec2[] getVec2Array(int argLength);
  /hardware/ti/omap3/dspbridge/inc/
rms_sh.h 106 RMS_WORD argLength; /* Length (in DSP chars) of arg data */
  /hardware/ti/omap3/dspbridge/libbridge/inc/
rms_sh.h 106 RMS_WORD argLength; /* Length (in DSP chars) of arg data */
  /external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/org/jbox2d/dynamics/joints/
DistanceJoint.java 118 public void setLength(float argLength) {
119 m_length = argLength;
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/codehaus/plexus/plexus-compiler-api/2.2/
plexus-compiler-api-2.2.jar 
  /prebuilts/misc/common/ecj/
ecj.jar 
  /external/v8/test/mjsunit/asm/embenchen/
copy.js     [all...]
corrections.js     [all...]
primes.js     [all...]
  /external/v8/test/mjsunit/wasm/embenchen/
copy.js     [all...]
corrections.js     [all...]
primes.js     [all...]
  /prebuilts/devtools/tools/lib/
ecj-4.4.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/jdt/core/compiler/ecj/4.2.2/
ecj-4.2.2.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/jdt/core/compiler/ecj/4.4/
ecj-4.4.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/jdt/core/compiler/ecj/4.4.2/
ecj-4.4.2.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/jdt/core/compiler/ecj/4.5.1/
ecj-4.5.1.jar 
  /prebuilts/tools/common/offline-m2/org/eclipse/jdt/core/compiler/ecj/4.4/
ecj-4.4.jar 
  /prebuilts/tools/common/offline-m2/org/eclipse/jdt/core/compiler/ecj/4.4.2/
ecj-4.4.2.jar 
  /prebuilts/tools/common/offline-m2/org/eclipse/jdt/core/compiler/ecj/4.5.1/
ecj-4.5.1.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.apache.jasper_5.5.17.v201004212143.jar 

Completed in 2860 milliseconds

1 2