HomeSort by relevance Sort by last modified time
    Searched refs:Double2 (Results 1 - 25 of 28) sorted by null

1 2

  /frameworks/base/rs/java/android/renderscript/
Double2.java 23 public class Double2 {
27 public Double2() {
31 public Double2(Double2 data) {
36 public Double2(double x, double y) {
48 public static Double2 add(Double2 a, Double2 b) {
49 Double2 res = new Double2();
    [all...]
ScriptIntrinsicBLAS.java 386 public void ZGEMV(@Transpose int TransA, Double2 alpha, Allocation A, Allocation X, int incX, Double2 beta, Allocation Y, int incY) {
522 public void ZGBMV(@Transpose int TransA, int KL, int KU, Double2 alpha, Allocation A, Allocation X, int incX, Double2 beta, Allocation Y, int incY) {
    [all...]
FieldPacker.java 284 public void addF64(Double2 v) {
451 public Double2 subDouble2() {
452 Double2 v = new Double2();
741 if (obj instanceof Double2) {
742 addF64((Double2)obj);
  /frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
Double2.java 24 * Class for exposing the native RenderScript double2 type back
28 public class Double2 {
29 public Double2() {
32 public Double2(double initX, double initY) {
FieldPacker.java 285 public void addF64(Double2 v) {
452 public Double2 subDouble2() {
453 Double2 v = new Double2();
742 if (obj instanceof Double2) {
743 fp.addF64((Double2)obj);
867 if (obj instanceof Double2) {
ScriptIntrinsicBLAS.java 423 public void ZGEMV(@Transpose int TransA, Double2 alpha, Allocation A, Allocation X, int incX, Double2 beta, Allocation Y, int incY) {
599 public void ZGBMV(@Transpose int TransA, int KL, int KU, Double2 alpha, Allocation A, Allocation X, int incX, Double2 beta, Allocation Y, int incY) {
    [all...]
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
FieldPackerTest.java 23 import android.renderscript.Double2;
53 fp.addF64(new Double2());
ComputeTest.java 25 import android.renderscript.Double2;
79 Double2 d2 = new Double2();
82 d2 = new Double2(1.0, 2.0);
422 Double2 D2 = s.get_d2();
KernelInputTest.java 25 import android.renderscript.Double2;
137 script.set_initial_value_double2(new Double2((double) 127, (double) 3));
ForEachTest.java 25 import android.renderscript.Double2;
ImageProcessingTest.java 25 import android.renderscript.Double2;
KernelTest.java 25 import android.renderscript.Double2;
  /frameworks/rs/cpp/
rsCppStructs.h 322 class Double2 {
326 Double2(double initX, double initY)
328 Double2() : x(0), y(0) {}
    [all...]
ScriptIntrinsicBLAS.cpp 238 void ScriptIntrinsicBLAS::ZGEMV(RsBlasTranspose TransA, Double2 alpha, sp<Allocation> A, sp<Allocation> X,
239 int incX, Double2 beta, sp<Allocation> Y, int incY) {
297 void ScriptIntrinsicBLAS::ZGBMV(RsBlasTranspose TransA, int KL, int KU, Double2 alpha, sp<Allocation> A,
298 sp<Allocation> X, int incX, Double2 beta, sp<Allocation> Y, int incY) {
    [all...]
  /frameworks/rs/java/tests/RSTest_CompatLib/src/com/android/rs/test/
UT_vector.java 59 Double2 D2 = s.get_d2();
  /frameworks/rs/java/tests/RSTest_CompatLibLegacy/src/com/android/rs/test/
UT_vector.java 59 Double2 D2 = s.get_d2();
  /frameworks/rs/java/tests/RsTest/src/com/android/rs/test/
UT_vector.java 59 Double2 D2 = s.get_d2();
  /frameworks/rs/java/tests/RsTest_14/src/com/android/rs/test/
UT_vector.java 59 Double2 D2 = s.get_d2();
  /frameworks/rs/java/tests/RsTest_16/src/com/android/rs/test/
UT_vector.java 59 Double2 D2 = s.get_d2();
  /frameworks/compile/slang/tests/P_reduce_general_result/
ScriptC_reduce_general_result.java.expect 308 public Double2[] get() {
312 Double2[] result = new Double2[7];
314 result[Idx] = new Double2(outArray[2*Idx+0], outArray[2*Idx+1]);
343 private Double2[] mResult;
    [all...]
  /prebuilts/sdk/renderscript/lib/
javalib.jar 
  /cts/tests/tests/rsblas/src/android/renderscript/cts/
IntrinsicBLAS.java 41 private final Double2 alphaZ = new Double2(1.0, 0.0);
42 private final Double2 betaZ = new Double2(1.0, 0.0);
    [all...]
  /external/libgdx/backends/gdx-backend-android/libs/
android-4.4.jar 
  /external/robolectric/v1/lib/main/
android.jar 
  /prebuilts/sdk/14/
android.jar 

Completed in 945 milliseconds

1 2