Searched refs:tempArray (Results 1 – 9 of 9) sorted by relevance
/external/apache-commons-math/src/main/java/org/apache/commons/math/util/ |
D | ResizableDoubleArray.java | 313 final double[] tempArray = new double[numElements + values.length + 1]; in addElements() local 314 System.arraycopy(internalArray, startIndex, tempArray, 0, numElements); in addElements() 315 System.arraycopy(values, 0, tempArray, numElements, values.length); in addElements() 316 internalArray = tempArray; in addElements() 426 double[] tempArray = new double[numElements + 1]; in contract() local 429 System.arraycopy(internalArray, startIndex, tempArray, 0, numElements); in contract() 430 internalArray = tempArray; in contract() 530 double[] tempArray = new double[newSize]; in expand() local 533 System.arraycopy(internalArray, 0, tempArray, 0, internalArray.length); in expand() 534 internalArray = tempArray; in expand() [all …]
|
/external/libgdx/extensions/gdx-bullet/jni/swig-src/collision/com/badlogic/gdx/physics/bullet/collision/ |
D | btBroadphasePairArray.java | 66 …gic.gdx.utils.Array<btCollisionObject> out, final btCollisionObject other, final int[] tempArray) { in getCollisionObjects() argument 67 …final int c = getCollisionObjects(tempArray, tempArray.length, (int)btCollisionObject.getCPtr(othe… in getCollisionObjects() 69 out.add(btCollisionObject.getInstance(tempArray[i], false)); in getCollisionObjects()
|
/external/libgdx/extensions/gdx-bullet/jni/swig/collision/ |
D | btBroadphasePairArray.i | 12 …gic.gdx.utils.Array<btCollisionObject> out, final btCollisionObject other, final int[] tempArray) { 13 …final int c = getCollisionObjects(tempArray, tempArray.length, (int)btCollisionObject.getCPtr(othe… 15 out.add(btCollisionObject.getInstance(tempArray[i], false));
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/ |
D | CompactByteArray.java | 372 byte[] tempArray; in expand() 374 tempArray = new byte[UNICODECOUNT]; in expand() 377 tempArray[i] = value; in expand() 384 values = tempArray; in expand()
|
D | CompactCharArray.java | 397 char[] tempArray; in expand() local 399 tempArray = new char[UNICODECOUNT]; in expand() 401 tempArray[i] = elementAt((char)i); in expand() 407 values = tempArray; in expand()
|
/external/icu/android_icu4j/src/main/java/android/icu/util/ |
D | CompactByteArray.java | 374 byte[] tempArray; in expand() 376 tempArray = new byte[UNICODECOUNT]; in expand() 379 tempArray[i] = value; in expand() 386 values = tempArray; in expand()
|
D | CompactCharArray.java | 399 char[] tempArray; in expand() local 401 tempArray = new char[UNICODECOUNT]; in expand() 403 tempArray[i] = elementAt((char)i); in expand() 409 values = tempArray; in expand()
|
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/shaders/ |
D | BaseShader.java | 213 private final IntArray tempArray = new IntArray(); field in BaseShader 216 tempArray.clear(); in getAttributeLocations() 219 tempArray.add(attributes.get(attrs.get(i).getKey(), -1)); in getAttributeLocations() 221 return tempArray.items; in getAttributeLocations() 239 if (currentMesh != null) currentMesh.unbind(program, tempArray.items); in render() 249 currentMesh.unbind(program, tempArray.items); in end()
|
/external/icu/icu4c/source/i18n/ |
D | csdetect.cpp | 87 CSRecognizerInfo *tempArray[] = { in initRecognizers() local 123 int32_t rCount = ARRAY_SIZE(tempArray); in initRecognizers() 133 fCSRecognizers[r] = tempArray[r]; in initRecognizers()
|