Searched defs:copyArray (Results 1 - 17 of 17) sorted by relevance

/external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/
H A DRealPointValuePair.java55 * @param copyArray if true, the input array will be copied, otherwise
59 final boolean copyArray) {
60 this.point = copyArray ?
58 RealPointValuePair(final double[] point, final double value, final boolean copyArray) argument
H A DVectorialPointValuePair.java55 * @param copyArray if true, the input arrays will be copied, otherwise
59 final boolean copyArray) {
60 this.point = copyArray ?
63 this.value = copyArray ?
58 VectorialPointValuePair(final double[] point, final double[] value, final boolean copyArray) argument
/external/v8/test/webkit/
H A Darray-enumerators-functions.js73 function copyArray(a) { function
90 shouldBe("count=0;lastIndex=-1;copyArray("+arrays[a]+")."+functionName+"(forwarders[f], "+testFunctions[t]+", 0)",
106 shouldBe("count=0;lastIndex=-1;copyArray("+arrays[a]+")."+functionName+"(forwarders[f], "+testFunctions[t]+", 0)",
139 shouldBe("count=0;lastIndex=-1;copyArray("+arrays[a]+")."+functionName+"(forwarders[f], "+testFunctions[t]+", 0); count", expectedCnt);
/external/clang/include/clang/AST/
H A DCommentSema.h81 ArrayRef<T> copyArray(ArrayRef<T> Source) { function in class:clang::comments::Sema
/external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
H A DArray2DRowFieldMatrix.java94 * FieldMatrix<T> and not used directly, the <code>copyArray</code> may be
98 * @param copyArray if true, the input array will be copied, otherwise
105 public Array2DRowFieldMatrix(final T[][] d, final boolean copyArray) argument
108 if (copyArray) {
H A DArray2DRowRealMatrix.java104 * RealMatrix and not used directly, the <code>copyArray</code> may be
108 * @param copyArray if true, the input array will be copied, otherwise
115 public Array2DRowRealMatrix(final double[][] d, final boolean copyArray) argument
117 if (copyArray) {
H A DArrayFieldVector.java118 * ArrayFieldVector and not used directly, the <code>copyArray</code> may be
128 * @param copyArray if true, the input array will be copied, otherwise
135 public ArrayFieldVector(T[] d, boolean copyArray) argument
142 data = copyArray ? d.clone() : d;
149 * ArrayFieldVector and not used directly, the <code>copyArray</code> may be
154 * @param copyArray if true, the input array will be copied, otherwise
158 public ArrayFieldVector(Field<T> field, T[] d, boolean copyArray) { argument
160 data = copyArray ? d.clone() : d;
H A DRealMatrixImpl.java106 * RealMatrix and not used directly, the <code>copyArray</code> may be
110 * @param copyArray if true, the input array will be copied, otherwise
117 public RealMatrixImpl(final double[][] d, final boolean copyArray) argument
119 if (copyArray) {
H A DArrayRealVector.java88 * ArrayRealVector and not used directly, the <code>copyArray</code> may be
92 * @param copyArray if true, the input array will be copied, otherwise
96 public ArrayRealVector(double[] d, boolean copyArray) { argument
97 data = copyArray ? d.clone() : d;
H A DBigMatrixImpl.java138 * BigMatrix and not used directly, the <code>copyArray</code> may be
142 * @param copyArray if true, the input array will be copied, otherwise
149 public BigMatrixImpl(BigDecimal[][] d, boolean copyArray) { argument
150 if (copyArray) {
H A DMatrixUtils.java265 * BigMatrix and not used directly, the <code>copyArray</code> may be
269 * @param copyArray if true, the input array will be copied, otherwise
279 public static BigMatrix createBigMatrix(BigDecimal[][] data, boolean copyArray) { argument
280 return new BigMatrixImpl(data, copyArray);
H A DBlockFieldMatrix.java141 * @param copyArray if true, the input array will be copied, otherwise
151 final T[][] blockData, final boolean copyArray)
162 if (copyArray) {
179 if (copyArray) {
150 BlockFieldMatrix(final int rows, final int columns, final T[][] blockData, final boolean copyArray) argument
H A DBlockRealMatrix.java138 * @param copyArray if true, the input array will be copied, otherwise
148 final double[][] blockData, final boolean copyArray)
159 if (copyArray) {
176 if (copyArray) {
147 BlockRealMatrix(final int rows, final int columns, final double[][] blockData, final boolean copyArray) argument
/external/apache-commons-math/src/main/java/org/apache/commons/math/optimization/linear/
H A DSimplexTableau.java169 copyArray(objectiveCoefficients.getData(), matrix.getDataRef()[zIndex]);
186 copyArray(constraint.getCoefficients().getData(), matrix.getDataRef()[row]);
346 private void copyArray(final double[] src, final double[] dest) { method in class:SimplexTableau
/external/apache-commons-math/src/main/java/org/apache/commons/math/ode/jacobians/
H A DFirstOrderIntegratorWithJacobians.java732 copyArray(y, copied.y);
733 copyArray(dydy0, copied.dydy0);
734 copyArray(dydp, copied.dydp);
735 copyArray(yDot, copied.yDot);
736 copyArray(dydy0Dot, copied.dydy0Dot);
737 copyArray(dydpDot, copied.dydpDot);
777 private static void copyArray(final double[] src, final double[] dest) { method in class:FirstOrderIntegratorWithJacobians.StepInterpolatorWrapper
785 private static void copyArray(final double[][] src, final double[][] dest) { method in class:FirstOrderIntegratorWithJacobians.StepInterpolatorWrapper
787 copyArray(src[i], dest[i]);
/external/protobuf/java/src/main/java/com/google/protobuf/
H A DByteString.java834 private byte[] copyArray(byte[] buffer, int length) { method in class:ByteString.Output
863 out.write(copyArray(cachedBuffer, cachedBufferPos));
916 byte[] bufferCopy = copyArray(buffer, bufferPos);
/external/skia/src/animator/
H A DSkDisplayable.cpp98 SkTDOperandArray* copyArray = (SkTDOperandArray*) info->memberData(copy); local
99 copyArray->setCount(arrayCount);
108 memcpy(copyArray->begin(), array->begin(), byteSize);

Completed in 376 milliseconds