Home
last modified time | relevance | path

Searched refs:tempArray (Results 1 – 9 of 9) sorted by relevance

/external/apache-commons-math/src/main/java/org/apache/commons/math/util/
DResizableDoubleArray.java313 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/
DbtBroadphasePairArray.java66 …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/
DbtBroadphasePairArray.i12 …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/
DCompactByteArray.java372 byte[] tempArray; in expand()
374 tempArray = new byte[UNICODECOUNT]; in expand()
377 tempArray[i] = value; in expand()
384 values = tempArray; in expand()
DCompactCharArray.java397 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/
DCompactByteArray.java374 byte[] tempArray; in expand()
376 tempArray = new byte[UNICODECOUNT]; in expand()
379 tempArray[i] = value; in expand()
386 values = tempArray; in expand()
DCompactCharArray.java399 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/
DBaseShader.java213 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/
Dcsdetect.cpp87 CSRecognizerInfo *tempArray[] = { in initRecognizers() local
123 int32_t rCount = ARRAY_SIZE(tempArray); in initRecognizers()
133 fCSRecognizers[r] = tempArray[r]; in initRecognizers()