/frameworks/rs/tests/java_api/RsBLAS_Benchmark/src/com/example/android/rs/blasbenchmark/ |
BlasBenchmark.java | 34 import android.renderscript.ScriptC; 35 import android.renderscript.RenderScript; 36 import android.renderscript.Type; 37 import android.renderscript.Allocation; 38 import android.renderscript.Element; 39 import android.renderscript.Script; 66 mProcessor = new Processor(RenderScript.create(this), !mDemoMode); 74 RenderScript mRS; 87 Processor(RenderScript rs, boolean benchmarkMode) [all...] |
/frameworks/rs/tests/java_api/RSTest_CompatLibLegacy/src/com/android/rs/test/ |
UT_alloc_copyPadded.java | 21 import android.support.v8.renderscript.*; 33 RenderScript mRS = RenderScript.create(mCtx); 82 public void testAllocation_Byte3_1D(RenderScript mRS) { 113 public void testAllocation_Byte3_2D(RenderScript mRS) { 145 public void testAllocation_Byte3_3D(RenderScript mRS) { 178 public void testAllocation_Short3_1D(RenderScript mRS) { 212 public void testAllocation_Short3_2D(RenderScript mRS) { 247 public void testAllocation_Short3_3D(RenderScript mRS) { 283 public void testAllocation_Int3_1D(RenderScript mRS) [all...] |
UT_instance.java | 21 import android.support.v8.renderscript.*; 39 RenderScript mRS = RenderScript.create(mCtx);
|
/frameworks/rs/tests/java_api/RSUnitTests/src/com/android/rs/unittest/ |
UT_alloc_copyPadded.java | 21 import android.renderscript.Allocation; 22 import android.renderscript.Element; 23 import android.renderscript.RenderScript; 24 import android.renderscript.Type; 34 RenderScript mRS = createRenderScript(false); 83 public void testAllocation_Byte3_1D(RenderScript mRS) { 114 public void testAllocation_Byte3_2D(RenderScript mRS) { 146 public void testAllocation_Byte3_3D(RenderScript mRS) { 179 public void testAllocation_Short3_1D(RenderScript mRS) [all...] |
UT_instance.java | 21 import android.renderscript.Allocation; 22 import android.renderscript.Element; 23 import android.renderscript.RenderScript; 24 import android.renderscript.Type; 37 RenderScript mRS = createRenderScript(false);
|
UT_script_group2_float.java | 18 import android.renderscript.Allocation; 19 import android.renderscript.Element; 20 import android.renderscript.RenderScript; 21 import android.renderscript.ScriptGroup; 22 import android.renderscript.Type; 35 RenderScript pRS = createRenderScript(false);
|
UT_script_group2_nochain.java | 18 import android.renderscript.Allocation; 19 import android.renderscript.Element; 20 import android.renderscript.RenderScript; 21 import android.renderscript.ScriptGroup; 22 import android.renderscript.Type; 35 RenderScript pRS = createRenderScript(false);
|
/frameworks/rs/tests/java_api/RSUnitTests/supportlibsrc_gen/com/android/rs/unittest/ |
UT_alloc_copyPadded.java | 23 import android.support.v8.renderscript.Allocation; 24 import android.support.v8.renderscript.Element; 25 import android.support.v8.renderscript.RenderScript; 26 import android.support.v8.renderscript.Type; 36 RenderScript mRS = createRenderScript(false); 85 public void testAllocation_Byte3_1D(RenderScript mRS) { 116 public void testAllocation_Byte3_2D(RenderScript mRS) { 148 public void testAllocation_Byte3_3D(RenderScript mRS) { 181 public void testAllocation_Short3_1D(RenderScript mRS) [all...] |
/frameworks/rs/support/java/src/android/support/v8/renderscript/ |
Allocation.java | 17 package android.support.v8.renderscript; 31 * and from RenderScript kernels. An Allocation provides the backing store for 32 * a given {@link android.support.v8.renderscript.Type}. </p> 37 * android.support.v8.renderscript.Sampler}. A developer must synchronize 39 * {@link android.support.v8.renderscript.Allocation#syncAll} in 53 * RenderScript, read the 54 * <a href="{@docRoot}guide/topics/renderscript/index.html">RenderScript</a> 149 * The usage of the Allocation. These signal to RenderScript where to place 247 * Get the {@link android.support.v8.renderscript.Element} of the {@lin [all...] |
Script.java | 17 package android.support.v8.renderscript; 66 android.renderscript.Script.KernelID mN; 70 KernelID(long id, RenderScript rs, Script s, int slot, int sig) { 118 InvokeID(long id, RenderScript rs, Script s, int slot) { 154 android.renderscript.Script.FieldID mN; 157 FieldID(long id, RenderScript rs, Script s, int slot) { 314 Script(long id, RenderScript rs) { 522 RenderScript mRS; 524 Builder(RenderScript rs) { 538 protected void init(RenderScript rs, int dimx) [all...] |
/cts/tests/camera/src/android/hardware/camera2/cts/rs/ |
Script.java | 22 import android.renderscript.Allocation; 23 import android.renderscript.RenderScript; 29 * Base class for all renderscript script abstractions. 32 * one {@link android.renderscript.Script} script file.</p> 44 * @param <T> A concrete subclass of {@link android.renderscript.Script} 46 public abstract class Script<T extends android.renderscript.Script> implements UncheckedCloseable { 182 protected final RenderScript mRS = RenderScriptSingleton.getRS(); 365 protected static RenderScript getRS() {
|
/cts/tests/tests/view/src/android/view/cts/surfacevalidator/ |
SurfacePixelValidator.java | 24 import android.renderscript.Allocation; 25 import android.renderscript.Element; 26 import android.renderscript.RenderScript; 27 import android.renderscript.Type; 54 private final RenderScript mRS; 115 mRS = RenderScript.create(context);
|
/developers/build/prebuilts/gradle/BasicRenderScript/Application/src/main/java/com/example/android/basicrenderscript/ |
MainActivity.java | 24 import android.support.v8.renderscript.Allocation; 25 import android.support.v8.renderscript.RenderScript; 33 * Number of bitmaps that is used for RenderScript thread and UI thread synchronization. 84 // Create renderScript 87 // Invoke renderScript kernel and update imageView 92 * Initialize RenderScript. 94 * <p>In the sample, it creates RenderScript kernel that performs saturation manipulation.</p> 98 RenderScript rs = RenderScript.create(this) [all...] |
/developers/samples/android/renderScript/BasicRenderScript/Application/src/main/java/com/example/android/basicrenderscript/ |
MainActivity.java | 24 import android.support.v8.renderscript.Allocation; 25 import android.support.v8.renderscript.RenderScript; 33 * Number of bitmaps that is used for RenderScript thread and UI thread synchronization. 84 // Create renderScript 87 // Invoke renderScript kernel and update imageView 92 * Initialize RenderScript. 94 * <p>In the sample, it creates RenderScript kernel that performs saturation manipulation.</p> 98 RenderScript rs = RenderScript.create(this) [all...] |
/frameworks/rs/tests/java_api/LivePreview/src/com/android/rs/livepreview/ |
RsYuv.java | 25 import android.renderscript.Allocation; 26 import android.renderscript.Matrix3f; 27 import android.renderscript.RenderScript; 34 import android.renderscript.*; 42 private RenderScript mRS; 51 RsYuv(RenderScript rs) {
|
/frameworks/rs/tests/java_api/SSHealingBrush/src/rs/example/android/com/healingbrush/ |
FindRegion.java | 22 import android.renderscript.Allocation; 23 import android.renderscript.Element; 24 import android.renderscript.RenderScript; 25 import android.renderscript.Type; 67 Allocation allocFloat2(float[] p, RenderScript rs) { 75 public Rect findMatch(ScriptC_find_region findRegion, RenderScript mRs, Bitmap image) {
|
Region.java | 27 import android.renderscript.RenderScript;
101 public Drawable findMatch(ScriptC_find_region findRegion, RenderScript mRs, Bitmap image) {
159 public void heal(ScriptC_healing healing, RenderScript rs, Bitmap image, Bitmap output) {
|
/packages/apps/Gallery2/src/com/android/gallery3d/filtershow/filters/ |
ImageFilterChanSat.java | 21 import android.renderscript.Allocation; 22 import android.renderscript.Element; 23 import android.renderscript.RenderScript; 24 import android.renderscript.Script.LaunchOptions; 25 import android.renderscript.Type; 75 RenderScript rsCtx = getRenderScriptContext(); 153 RenderScript rsCtx = getRenderScriptContext();
|
/pdk/apps/TestingCamera/src/com/android/testingcamera/ |
CallbackProcessor.java | 8 import android.renderscript.Allocation; 9 import android.renderscript.Element; 10 import android.renderscript.Matrix4f; 11 import android.renderscript.RenderScript; 12 import android.renderscript.Script; 13 import android.renderscript.ScriptGroup; 14 import android.renderscript.ScriptIntrinsicColorMatrix; 15 import android.renderscript.Type; 22 * This is done by constructing a two-step Renderscript group [all...] |
/cts/tests/tests/renderscript/src/android/renderscript/cts/ |
GlobalSync.java | 17 package android.renderscript.cts; 19 import android.renderscript.Allocation; 20 import android.renderscript.Element; 21 import android.renderscript.RenderScript; 22 import android.renderscript.Type; 29 protected void setupGlobalSync(RenderScript mRS, ScriptC_global_sync gs, int v) {
|
/cts/tests/tests/renderscript/src/android/renderscript/cts/refocus/d1new/ |
ImageBuffersForRenderScriptd1new.java | 17 package android.renderscript.cts.refocus.d1new; 20 import android.renderscript.Allocation; 21 import android.renderscript.Element; 22 import android.renderscript.RenderScript; 23 import android.renderscript.cts.refocus.ImageBuffersForRenderScript; 24 import android.renderscript.cts.refocus.LayerInfo; 25 import android.renderscript.cts.refocus.ScriptC_layered_filter_fast_d1new; 66 * @param renderScript a RenderScript object that manages the {@code Context [all...] |
KernelDataForRenderScriptd1new.java | 17 package android.renderscript.cts.refocus.d1new; 18 import android.renderscript.Allocation; 19 import android.renderscript.Element; 20 import android.renderscript.RenderScript; 21 import android.renderscript.cts.refocus.BlurStack; 22 import android.renderscript.cts.refocus.KernelDataForRenderScript; 42 * An RenderScript Allocation for kernelStack. 51 * @param renderScript an instance of {@code RenderScript} [all...] |
/cts/tests/tests/renderscript/src/android/renderscript/cts/refocus/f32/ |
KernelDataForRenderScriptF32.java | 17 package android.renderscript.cts.refocus.f32; 19 import android.renderscript.Allocation; 20 import android.renderscript.Element; 21 import android.renderscript.RenderScript; 22 import android.renderscript.cts.refocus.BlurStack; 23 import android.renderscript.cts.refocus.KernelDataForRenderScript; 43 * An RenderScript Allocation for kernelStack. 52 * @param renderScript an instance of {@code RenderScript} [all...] |
/frameworks/base/rs/java/android/renderscript/ |
Script.java | 17 package android.renderscript; 39 KernelID(long id, RenderScript rs, Script s, int slot, int sig) { 79 InvokeID(long id, RenderScript rs, Script s, int slot) { 117 FieldID(long id, RenderScript rs, Script s, int slot) { 327 Script(long id, RenderScript rs) { 478 RenderScript mRS; 480 Builder(RenderScript rs) { 494 protected void init(RenderScript rs, int dimx) { 499 protected void init(RenderScript rs, int dimx, int usages) {
|
/frameworks/rs/rsov/tests/RSoVTest/src/com/android/rs/rsov/test/ |
UT_global.java | 20 import android.renderscript.*; 30 private RenderScript RS; 96 RS = RenderScript.create(mCtx);
|