HomeSort by relevance Sort by last modified time
    Searched refs:Double2 (Results 1 - 25 of 34) 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/rs/support/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);
424 Double2 D2 = s.get_d2();
KernelInputTest.java 25 import android.renderscript.Double2;
157 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;
  /external/tensorflow/tensorflow/stream_executor/
device_memory.h 275 struct Double2 {
281 static_assert(sizeof(Double2) == 2 * sizeof(double), "Double2 must be packed");
  /frameworks/rs/cpp/
rsCppStructs.h 322 class Double2 {
326 Double2(double initX, double initY)
328 Double2() : x(0), y(0) {}
    [all...]
ScriptIntrinsicBLAS.cpp 246 void ScriptIntrinsicBLAS::ZGEMV(RsBlasTranspose TransA, Double2 alpha, const sp<Allocation>& A, const sp<Allocation>& X,
247 int incX, Double2 beta, const sp<Allocation>& Y, int incY) {
305 void ScriptIntrinsicBLAS::ZGBMV(RsBlasTranspose TransA, int KL, int KU, Double2 alpha, const sp<Allocation>& A,
306 const sp<Allocation>& X, int incX, Double2 beta, const sp<Allocation>& Y, int incY) {
    [all...]
  /frameworks/rs/tests/java_api/RSUnitTests/src/com/android/rs/unittest/
UT_vector.java 23 import android.renderscript.Double2;
74 Double2 D2 = s.get_d2();
  /frameworks/rs/tests/java_api/RSUnitTests/supportlibsrc_gen/com/android/rs/unittest/
UT_vector.java 25 import android.support.v8.renderscript.Double2;
76 Double2 D2 = s.get_d2();
  /frameworks/rs/tests/java_api/RSTest_CompatLibLegacy/src/com/android/rs/test/
UT_vector.java 59 Double2 D2 = s.get_d2();
  /frameworks/rs/tests/java_api/RsTest_14/src/com/android/rs/test/
UT_vector.java 59 Double2 D2 = s.get_d2();
  /frameworks/rs/tests/java_api/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 311 public Double2[] get() {
315 Double2[] result = new Double2[7];
317 result[Idx] = new Double2(outArray[2*Idx+0], outArray[2*Idx+1]);
346 private Double2[] mResult;
    [all...]
  /external/skia/src/sksl/
SkSLCompiler.cpp 78 ADD_TYPE(Double2);
    [all...]
  /external/skqp/src/sksl/
SkSLCompiler.cpp 78 ADD_TYPE(Double2);
    [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...]

Completed in 1128 milliseconds

1 2