/frameworks/support/renderscript/v8/java/src/android/support/v8/renderscript/ |
D | ScriptIntrinsicBlend.java | 45 private void blend(int id, Allocation ain, Allocation aout) { in blend() argument 49 if (!aout.getElement().isCompatible(Element.U8_4(mRS))) { in blend() 52 forEach(id, ain, aout, null); in blend() 61 public void forEachClear(Allocation ain, Allocation aout) { in forEachClear() argument 62 blend(0, ain, aout); in forEachClear() 81 public void forEachSrc(Allocation ain, Allocation aout) { in forEachSrc() argument 82 blend(1, ain, aout); in forEachSrc() 101 public void forEachDst(Allocation ain, Allocation aout) { in forEachDst() argument 120 public void forEachSrcOver(Allocation ain, Allocation aout) { in forEachSrcOver() argument 121 blend(3, ain, aout); in forEachSrcOver() [all …]
|
D | ScriptIntrinsicYuvToRGB.java | 68 public void forEach(Allocation aout) { in forEach() argument 69 forEach(0, null, aout, null); in forEach()
|
D | Script.java | 149 protected void forEach(int slot, Allocation ain, Allocation aout, FieldPacker v) { in forEach() argument 150 if (ain == null && aout == null) { in forEach() 159 if (aout != null) { in forEach() 160 out_id = aout.getID(mRS); in forEach()
|
D | ScriptIntrinsicConvolve5x5.java | 97 public void forEach(Allocation aout) { in forEach() argument 98 forEach(0, null, aout, null); in forEach()
|
D | ScriptIntrinsicBlur.java | 90 public void forEach(Allocation aout) { in forEach() argument 91 forEach(0, null, aout, null); in forEach()
|
D | ScriptIntrinsicConvolve3x3.java | 100 public void forEach(Allocation aout) { in forEach() argument 101 forEach(0, null, aout, null); in forEach()
|
/frameworks/base/graphics/java/android/renderscript/ |
D | ScriptIntrinsicBlend.java | 45 private void blend(int id, Allocation ain, Allocation aout) { in blend() argument 49 if (!aout.getElement().isCompatible(Element.U8_4(mRS))) { in blend() 52 forEach(id, ain, aout, null); in blend() 61 public void forEachClear(Allocation ain, Allocation aout) { in forEachClear() argument 62 blend(0, ain, aout); in forEachClear() 81 public void forEachSrc(Allocation ain, Allocation aout) { in forEachSrc() argument 82 blend(1, ain, aout); in forEachSrc() 101 public void forEachDst(Allocation ain, Allocation aout) { in forEachDst() argument 120 public void forEachSrcOver(Allocation ain, Allocation aout) { in forEachSrcOver() argument 121 blend(3, ain, aout); in forEachSrcOver() [all …]
|
D | ScriptIntrinsicYuvToRGB.java | 68 public void forEach(Allocation aout) { in forEach() argument 69 forEach(0, null, aout, null); in forEach()
|
D | Script.java | 149 protected void forEach(int slot, Allocation ain, Allocation aout, FieldPacker v) { in forEach() argument 150 if (ain == null && aout == null) { in forEach() 159 if (aout != null) { in forEach() 160 out_id = aout.getID(mRS); in forEach()
|
D | ScriptIntrinsicConvolve5x5.java | 97 public void forEach(Allocation aout) { in forEach() argument 98 forEach(0, null, aout, null); in forEach()
|
D | ScriptIntrinsicBlur.java | 90 public void forEach(Allocation aout) { in forEach() argument 91 forEach(0, null, aout, null); in forEach()
|
/frameworks/base/tests/RenderScriptTests/tests/src/com/android/rs/test/ |
D | 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));
|
D | kernel.rs | 4 int *aout; 23 _RS_ASSERT(aout[i] == (i + ain[i]));
|
/frameworks/native/cmds/dumpsys/ |
D | dumpsys.cpp | 57 aout << "Currently running services:" << endl; in main() 62 aout << " " << services[i] << endl; in main() 71 aout << "------------------------------------------------------------" in main() 73 aout << "DUMP OF SERVICE " << services[i] << ":" << endl; in main()
|
/frameworks/rs/driver/ |
D | rsdScriptGroup.cpp | 73 Allocation *aout = NULL; in rsdScriptGroupExecute() local 90 aout = n->mOutputs[ct3]->mAlloc.get(); in rsdScriptGroupExecute() 96 aout = sg->mOutputs[ct3]->mAlloc.get(); in rsdScriptGroupExecute() 101 if ((k->mHasKernelOutput == (aout != NULL)) && in rsdScriptGroupExecute() 104 outs.add(aout); in rsdScriptGroupExecute()
|
D | rsdBcc.cpp | 251 Allocation * aout, in rsdScriptInvokeForEachMtlsSetup() argument 264 } else if (aout) { in rsdScriptInvokeForEachMtlsSetup() 265 mtls->fep.dimX = aout->getType()->getDimX(); in rsdScriptInvokeForEachMtlsSetup() 266 mtls->fep.dimY = aout->getType()->getDimY(); in rsdScriptInvokeForEachMtlsSetup() 267 mtls->fep.dimZ = aout->getType()->getDimZ(); in rsdScriptInvokeForEachMtlsSetup() 306 mtls->aout = aout; in rsdScriptInvokeForEachMtlsSetup() 324 if (aout) { in rsdScriptInvokeForEachMtlsSetup() 325 DrvAllocation *aoutdrv = (DrvAllocation *)aout->mHal.drv; in rsdScriptInvokeForEachMtlsSetup() 327 mtls->fep.eStrideOut = aout->getType()->getElementSizeBytes(); in rsdScriptInvokeForEachMtlsSetup() 336 Allocation * aout, in rsdScriptLaunchThreads() argument [all …]
|
D | rsdBcc.h | 47 android::renderscript::Allocation * aout, 148 android::renderscript::Allocation * aout; member 167 android::renderscript::Allocation * aout, 175 android::renderscript::Allocation * aout,
|
/frameworks/rs/tests/ |
D | compute.cpp | 35 sp<Allocation> aout = Allocation::createTyped(rs, t); in main() local 36 printf("Allocation %p %p\n", ain.get(), aout.get()); in main() 50 sc->forEach_root(ain, aout); in main()
|
D | ScriptC_mono.cpp | 114 …erscriptCpp::Allocation> ain, android::sp<const android::renderscriptCpp::Allocation> aout) const { in forEach_root() 115 forEach(0, ain, aout, NULL, 0); in forEach_root()
|
/frameworks/rs/cpp/ |
D | Script.cpp | 35 void Script::forEach(uint32_t slot, sp<const Allocation> ain, sp<const Allocation> aout, in forEach() argument 37 if ((ain == NULL) && (aout == NULL)) { in forEach() 41 void *out_id = BaseObj::getObjID(aout); in forEach()
|
/frameworks/base/cmds/service/ |
D | service.cpp | 95 aout << "Service " << argv[optind] << in main() 105 aout << "Found " << services.size() << " services:" << endl; in main() 109 aout << i in main() 238 aout << "Result: " << reply << endl; in main() 261 aout << "Usage: service [-h|-?]\n" in main()
|
/frameworks/support/renderscript/v8/rs_support/driver/ |
D | rsdScriptGroup.cpp | 64 Allocation *aout = NULL; in rsdScriptGroupExecute() local 81 aout = n->mOutputs[ct3]->mAlloc.get(); in rsdScriptGroupExecute() 87 aout = sg->mOutputs[ct3]->mAlloc.get(); in rsdScriptGroupExecute() 93 outs.add(aout); in rsdScriptGroupExecute()
|
D | rsdBcc.cpp | 424 Allocation * aout, in rsdScriptInvokeForEachMtlsSetup() argument 437 } else if (aout) { in rsdScriptInvokeForEachMtlsSetup() 438 mtls->fep.dimX = aout->getType()->getDimX(); in rsdScriptInvokeForEachMtlsSetup() 439 mtls->fep.dimY = aout->getType()->getDimY(); in rsdScriptInvokeForEachMtlsSetup() 440 mtls->fep.dimZ = aout->getType()->getDimZ(); in rsdScriptInvokeForEachMtlsSetup() 479 mtls->aout = aout; in rsdScriptInvokeForEachMtlsSetup() 497 if (aout) { in rsdScriptInvokeForEachMtlsSetup() 498 DrvAllocation *aoutdrv = (DrvAllocation *)aout->mHal.drv; in rsdScriptInvokeForEachMtlsSetup() 500 mtls->fep.eStrideOut = aout->getType()->getElementSizeBytes(); in rsdScriptInvokeForEachMtlsSetup() 509 Allocation * aout, in rsdScriptLaunchThreads() argument [all …]
|
D | rsdBcc.h | 42 android::renderscript::Allocation * aout, 146 android::renderscript::Allocation * aout; member 165 android::renderscript::Allocation * aout, 173 android::renderscript::Allocation * aout,
|
/frameworks/base/tests/RenderScriptTests/Balls/src/com/example/android/rs/balls/ |
D | balls.rs | 60 bc.aout = rsGetAllocation(balls1); 64 bc.aout = rsGetAllocation(balls2); 71 rsForEach(physics_script, bc.ain, bc.aout, &bc, sizeof(bc));
|