Searched defs:matA (Results 1 - 4 of 4) sorted by relevance

/frameworks/base/graphics/java/android/graphics/
H A DColorMatrix.java176 * as applying matB and then applying matA.
178 * It is legal for either matA or matB to be the same colormatrix as this.
181 public void setConcat(ColorMatrix matA, ColorMatrix matB) { argument
183 if (matA == this || matB == this) {
189 final float[] a = matA.mArray;
/frameworks/rs/tests/java_api/RsBLAS_Benchmark/src/com/example/android/rs/blasbenchmark/
H A DBNNMTest.java33 private Allocation matA; field in class:BNNMTest
227 matA = Allocation.createTyped(mRS, a_type);
230 matA.copyFrom(a_byte);
234 mBLAS.BNNM(matA, a_offset, matB, b_offset, matC, c_offset, c_mult_int);
297 matA = Allocation.createTyped(mRS, a_type);
301 matA.copyFrom(a_byte);
305 mBLAS.BNNM(matA, a_offset, matB, b_offset, matC, c_offset, c_mult_int);
346 matA = Allocation.createTyped(mRS, a_type);
350 matA.copyFrom(a_byte);
354 mBLAS.BNNM(matA, a_offse
[all...]
H A DGoogLeNet.java27 private ArrayList<Allocation> matA; field in class:GoogLeNet
149 matA = new ArrayList<Allocation>();
202 matA.add(A);
213 1.0f, matA.get(i), matB.get(i), 0.f, matC.get(i));
225 mBLAS.BNNM(matA.get(i), a_offset, matB.get(i), b_offset, matC.get(i), c_offset, c_mult_int);
H A DSGEMMTest.java33 private Allocation matA; field in class:SGEMMTest
150 matA = Allocation.createTyped(mRS, a_type);
154 matA.copyFrom(a_float);
159 1.0f, matA, matB, 0.f, matC);
205 matA = Allocation.createTyped(mRS, a_type);
209 matA.copyFrom(a_float);
214 1.0f, matA, matB, 0.f, matC);
253 matA = Allocation.createTyped(mRS, a_type);
257 matA.copyFrom(a_float);
262 1.0f, matA, mat
[all...]

Completed in 267 milliseconds