Searched refs:matB (Results 1 - 4 of 4) sorted by relevance

/frameworks/rs/tests/java_api/RsBLAS_Benchmark/src/com/example/android/rs/blasbenchmark/
H A DBNNMTest.java34 private Allocation matB; field in class:BNNMTest
228 matB = Allocation.createTyped(mRS, b_type);
231 matB.copyFrom(b_byte);
234 mBLAS.BNNM(matA, a_offset, matB, b_offset, matC, c_offset, c_mult_int);
298 matB = Allocation.createTyped(mRS, b_type);
302 matB.copyFrom(b_byte);
305 mBLAS.BNNM(matA, a_offset, matB, b_offset, matC, c_offset, c_mult_int);
347 matB = Allocation.createTyped(mRS, b_type);
351 matB.copyFrom(b_byte);
354 mBLAS.BNNM(matA, a_offset, matB, b_offse
[all...]
H A DSGEMMTest.java34 private Allocation matB; field in class:SGEMMTest
151 matB = Allocation.createTyped(mRS, b_type);
155 matB.copyFrom(b_float);
159 1.0f, matA, matB, 0.f, matC);
206 matB = Allocation.createTyped(mRS, b_type);
210 matB.copyFrom(b_float);
214 1.0f, matA, matB, 0.f, matC);
254 matB = Allocation.createTyped(mRS, b_type);
258 matB.copyFrom(b_float);
262 1.0f, matA, matB,
[all...]
H A DGoogLeNet.java28 private ArrayList<Allocation> matB; field in class:GoogLeNet
150 matB = new ArrayList<Allocation>();
203 matB.add(B);
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);
/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) {
190 final float[] b = matB.mArray;

Completed in 220 milliseconds