HomeSort by relevance Sort by last modified time
    Searched full:aout (Results 1 - 25 of 305) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /cts/tests/src/android/renderscript/cts/
fe_all.rs 4 void test_i8(const char *ain, uchar *aout) {
5 aout[0] = ain[0] + 1;
9 void test_i8_2(const char2 *ain, uchar2 *aout) {
10 aout[0].x = ain[0].x + 1;
11 aout[0].y = ain[0].y + 1;
15 void test_i8_3(const char3 *ain, uchar3 *aout) {
16 aout[0].x = ain[0].x + 1;
17 aout[0].y = ain[0].y + 1;
18 aout[0].z = ain[0].z + 1;
22 void test_i8_4(const char4 *ain, uchar4 *aout) {
    [all...]
scriptgroup.rs 17 void arith(const int *ain, int *aout, uint32_t x) {
24 *aout = *ain + value;
26 *aout = *ain - value;
28 *aout = *ain * value;
30 *aout = *ain / value;
35 void memset(int *aout) {
36 *aout = memset_toValue;
47 void getCompareResult(int* aout) {
48 *aout = compare_failure;
setelementat.rs 16 void memset(int *aout) {
17 *aout = memset_toValue;
29 void getCompareResult(int* aout) {
30 *aout = compare_failure;
negate.rs 18 void root(const int *ain, int *aout) {
19 aout[0] = -1 * ain[0];
  /frameworks/compile/slang/tests/F_root_compute_non_const_usrData/
root_compute_non_const_usrData.rs 4 void root(const int *ain, int *aout, void *usrData) {
  /frameworks/base/graphics/java/android/renderscript/
ScriptIntrinsicBlend.java 43 private void blend(int id, Allocation ain, Allocation aout) {
47 if (!aout.getElement().isCompatible(Element.U8_4(mRS))) {
50 forEach(id, ain, aout, null);
57 * @param aout The destination buffer
59 public void forEachClear(Allocation ain, Allocation aout) {
60 blend(0, ain, aout);
77 * @param aout The destination buffer
79 public void forEachSrc(Allocation ain, Allocation aout) {
80 blend(1, ain, aout);
98 * @param aout The destination buffe
    [all...]
  /frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
ScriptIntrinsicBlend.java 48 private void blend(int id, Allocation ain, Allocation aout) {
52 if (!aout.getElement().isCompatible(Element.U8_4(mRS))) {
55 forEach(id, ain, aout, null);
62 * @param aout The destination buffer
64 public void forEachClear(Allocation ain, Allocation aout) {
65 blend(0, ain, aout);
82 * @param aout The destination buffer
84 public void forEachSrc(Allocation ain, Allocation aout) {
85 blend(1, ain, aout);
103 * @param aout The destination buffe
    [all...]
ScriptIntrinsicBlendThunker.java 39 public void forEachClear(Allocation ain, Allocation aout) {
41 AllocationThunker aoutt = (AllocationThunker)aout;
52 public void forEachSrc(Allocation ain, Allocation aout) {
54 AllocationThunker aoutt = (AllocationThunker)aout;
65 public void forEachDst(Allocation ain, Allocation aout) {
67 AllocationThunker aoutt = (AllocationThunker)aout;
78 public void forEachSrcOver(Allocation ain, Allocation aout) {
80 AllocationThunker aoutt = (AllocationThunker)aout;
91 public void forEachDstOver(Allocation ain, Allocation aout) {
93 AllocationThunker aoutt = (AllocationThunker)aout;
    [all...]
  /frameworks/compile/slang/tests/F_root_compute_non_ptr_usrData/
root_compute_non_ptr_usrData.rs 4 void root(const int *ain, int *aout, const int usrData) {
  /frameworks/compile/slang/tests/P_root_compute_non_void_ptr_usrData/
root_compute_non_void_ptr_usrData.rs 4 void root(const int *ain, int *aout, const int *usrData) {
  /frameworks/compile/slang/tests/F_root_compute_non_uint32_t_xyzar/
root_compute_non_uint32_t_xyzar.rs 4 void root(const int *ain, int *aout, const void *usrData,
  /frameworks/compile/slang/tests/P_root_compute/
root_compute.rs 4 void root(const int *ain, int *aout, const void *usrData,
  /frameworks/compile/slang/tests/F_root_compute_really_bad/
root_compute_really_bad.rs 4 int root(int ain, int aout, int usrData, float x1, double y1,
  /frameworks/compile/slang/tests/P_compute/
compute.rs 4 void root(const int *ain, int *aout, const void *usrData,
  /frameworks/compile/slang/tests/P_ooo_compute/
ooo_compute.rs 10 void root(const int *ain, int *aout, const void *usrData,
  /frameworks/rs/java/tests/RSTest_CompatLib/src/com/android/rs/test/
kernel_struct.rs 13 struct simpleStruct *aout;
39 _RS_ASSERT(aout[i].i1 == (i + ain[i].i1));
40 _RS_ASSERT(aout[i].f1 == (i + ain[i].f1));
41 _RS_ASSERT(aout[i].i2 == (i + ain[i].i2));
42 _RS_ASSERT(aout[i].f2 == (i + ain[i].f2));
kernel.rs 4 int *aout;
23 _RS_ASSERT(aout[i] == (i + ain[i]));
  /frameworks/rs/java/tests/RsTest/src/com/android/rs/test/
kernel_struct.rs 13 struct simpleStruct *aout;
39 _RS_ASSERT(aout[i].i1 == (i + ain[i].i1));
40 _RS_ASSERT(aout[i].f1 == (i + ain[i].f1));
41 _RS_ASSERT(aout[i].i2 == (i + ain[i].i2));
42 _RS_ASSERT(aout[i].f2 == (i + ain[i].f2));
kernel.rs 4 int *aout;
23 _RS_ASSERT(aout[i] == (i + ain[i]));
  /frameworks/rs/java/tests/LatencyBenchmark/src/com/example/android/rs/computebench/
Benchmark.java 26 private Allocation aout; field in class:Benchmark
32 aout = Allocation.createSized(rs, Element.U32(mRS), 10000);
42 mScript.forEach_root(ain, aout);
43 aout.copy1DRangeFrom(0, 1, temp);
50 mScript.set_out(aout);
54 aout.copy1DRangeFrom(0, 1, temp);
  /frameworks/compile/slang/lit-tests/debug/
debug_disabled.rs 8 void root(const int *ain, int *aout, const void *usrData,
debug_enabled.rs 8 void root(const int *ain, int *aout, const void *usrData,
  /frameworks/rs/tests/cppallocation/
compute.cpp 34 sp<Allocation> aout = Allocation::createTyped(rs, t); local
45 sc->forEach_multiply(ain, aout);
47 aout->copy1DRangeTo(0, numElems, buf);
62 aout.clear();
  /frameworks/compile/slang/lit-tests/P_compute/
compute.rs 10 void root(const int *ain, int *aout, const void *usrData,
  /frameworks/rs/cpp/
Script.cpp 29 void Script::forEach(uint32_t slot, sp<const Allocation> ain, sp<const Allocation> aout,
31 if ((ain == NULL) && (aout == NULL)) {
32 mRS->throwError("At least one of ain or aout is required to be non-null.");
35 void *out_id = BaseObj::getObjID(aout);

Completed in 190 milliseconds

1 2 3 4 5 6 7 8 91011>>