Lines Matching defs:result

45      * Multiply two 4x4 matrices together and store the result in a third 4x4
46 * matrix. In matrix notation: result = lhs x rhs. Due to the way
47 * matrix multiplication works, the result matrix will have the same
51 * The same float array may be passed for result, lhs, and/or rhs. However,
52 * the result element values are undefined if the result elements overlap
55 * @param result The float array that holds the result.
56 * @param resultOffset The offset into the result array where the result is
63 * @throws IllegalArgumentException if result, lhs, or rhs are null, or if
64 * resultOffset + 16 > result.length or lhsOffset + 16 > lhs.length or
67 public static native void multiplyMM(float[] result, int resultOffset,
71 * Multiply a 4 element vector by a 4x4 matrix and store the result in a 4
72 * element column vector. In matrix notation: result = lhs x rhs
78 * @param resultVec The float array that holds the result vector.
79 * @param resultVecOffset The offset into the result array where the result
226 * @param m returns the result
348 * @param sm returns the result
349 * @param smOffset index into sm where the result matrix starts
361 * Scales matrix m by x, y, and z, putting the result in sm
362 * @param sm returns the result
363 * @param smOffset index into sm where the result matrix starts
402 * Translates matrix m by x, y, and z, putting the result in tm
403 * @param tm returns the result
404 * @param tmOffset index into sm where the result matrix starts
444 * @param rm returns the result
445 * @param rmOffset index into rm where the result matrix starts
481 * @param rm returns the result
482 * @param rmOffset index into rm where the result matrix starts
547 * @param rm returns the result
548 * @param rmOffset index into rm where the result matrix starts
592 * @param rm returns the result
593 * @param rmOffset index into rm where the result matrix starts