Searched refs:rs (Results 126 - 150 of 388) sorted by relevance

1234567891011>>

/frameworks/rs/java/tests/ComputeBenchmark/src/com/example/android/rs/computebench/
H A DComputeBench.java17 package com.example.android.rs.computebench;
/frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/
H A DVibrance.java17 package com.android.rs.image;
H A DCopy.java17 package com.android.rs.image;
H A DGreyscale.java17 package com.android.rs.image;
/frameworks/rs/java/tests/ImageProcessing2/src/com/android/rs/image/
H A DCopy.java17 package com.android.rs.image2;
H A DWhiteBalance.java17 package com.android.rs.image2;
/frameworks/rs/java/tests/ImageProcessing_jb/src/com/android/rs/image/
H A DVibrance.java17 package com.android.rs.imagejb;
/frameworks/rs/java/tests/LatencyBenchmark/src/com/example/android/rs/computebench/
H A DLatencyBench.java17 package com.example.android.rs.latencybench;
/frameworks/rs/java/tests/SampleTest/src/com/android/rs/sample/
H A Dsample.rs18 #pragma rs java_package_name(com.android.rs.sample)
/frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
H A DRenderScriptThunker.java49 RenderScriptThunker rs = new RenderScriptThunker(ctx);
50 rs.mN = android.renderscript.RenderScript.create(ctx, sdkVersion);
51 return rs;
H A DElementThunker.java139 ElementThunker(RenderScript rs, android.renderscript.Element e) { argument
140 super(0, rs);
145 static Element create(RenderScript rs, DataType dt) { argument
146 RenderScriptThunker rst = (RenderScriptThunker)rs;
211 return new ElementThunker(rs, e);
214 public static Element createVector(RenderScript rs, DataType dt, int size) { argument
215 RenderScriptThunker rst = (RenderScriptThunker)rs;
218 return new ElementThunker(rs, e);
221 public static Element createPixel(RenderScript rs, DataType dt, DataKind dk) { argument
222 RenderScriptThunker rst = (RenderScriptThunker)rs;
236 BuilderThunker(RenderScript rs) argument
246 create(RenderScript rs) argument
[all...]
H A DScript.java46 KernelID(int id, RenderScript rs, Script s, int slot, int sig) { argument
47 super(id, rs);
107 FieldID(int id, RenderScript rs, Script s, int slot) { argument
108 super(id, rs);
291 Script(int id, RenderScript rs) { argument
292 super(id, rs);
424 Builder(RenderScript rs) { argument
425 mRS = rs;
438 protected void init(RenderScript rs, int dimx) { argument
439 mAllocation = Allocation.createSized(rs, mElemen
442 init(RenderScript rs, int dimx, int usages) argument
[all...]
/frameworks/rs/cpp/
H A DAllocation.cpp40 Allocation::Allocation(void *id, sp<RS> rs, sp<const Type> t, uint32_t usage) : argument
41 BaseObj(id, rs), mSelectedY(0), mSelectedZ(0), mSelectedLOD(0),
315 sp<Allocation> Allocation::createTyped(sp<RS> rs, sp<const Type> type, argument
318 if (rs->getError() == RS_SUCCESS) {
319 id = RS::dispatch->AllocationCreateTyped(rs->getContext(), type->getID(), mips, usage, 0);
322 rs->throwError(RS_ERROR_RUNTIME_ERROR, "Allocation creation failed");
325 return new Allocation(id, rs, type, usage);
328 sp<Allocation> Allocation::createTyped(sp<RS> rs, sp<const Type> type, argument
332 if (rs->getError() == RS_SUCCESS) {
333 id = RS::dispatch->AllocationCreateTyped(rs
343 createTyped(sp<RS> rs, sp<const Type> type, uint32_t usage) argument
348 createSized(sp<RS> rs, sp<const Element> e, size_t count, uint32_t usage) argument
357 createSized2D(sp<RS> rs, sp<const Element> e, size_t x, size_t y, uint32_t usage) argument
[all...]
H A DType.cpp69 Type::Type(void *id, sp<RS> rs) : BaseObj(id, rs) { argument
102 sp<const Type> Type::create(sp<RS> rs, sp<const Element> e, uint32_t dimX, uint32_t dimY, uint32_t dimZ) { argument
103 void * id = RS::dispatch->TypeCreate(rs->getContext(), e->getID(), dimX, dimY, dimZ, false, false, 0);
104 Type *t = new Type(id, rs);
118 Type::Builder::Builder(sp<RS> rs, sp<const Element> e) { argument
119 mRS = rs;
/frameworks/base/graphics/java/android/renderscript/
H A DScriptIntrinsicBlend.java24 ScriptIntrinsicBlend(int id, RenderScript rs) { argument
25 super(id, rs);
31 * @param rs The RenderScript context
36 public static ScriptIntrinsicBlend create(RenderScript rs, Element e) { argument
38 int id = rs.nScriptIntrinsicCreate(7, e.getID(rs));
39 return new ScriptIntrinsicBlend(id, rs);
H A DScript.java39 KernelID(int id, RenderScript rs, Script s, int slot, int sig) { argument
40 super(id, rs);
78 FieldID(int id, RenderScript rs, Script s, int slot) { argument
79 super(id, rs);
179 Script(int id, RenderScript rs) { argument
180 super(id, rs);
302 Builder(RenderScript rs) { argument
303 mRS = rs;
316 protected void init(RenderScript rs, int dimx) { argument
317 mAllocation = Allocation.createSized(rs, mElemen
320 init(RenderScript rs, int dimx, int usages) argument
[all...]
/frameworks/rs/java/tests/HelloComputeNDK/libhellocomputendk/
H A DAndroid.mk24 LOCAL_SRC_FILES := helloComputeNDK.cpp mono.rs
27 LOCAL_C_INCLUDES += frameworks/rs/cpp
28 LOCAL_C_INCLUDES += frameworks/rs
/frameworks/base/tests/RenderScriptTests/MiscSamples/src/com/example/android/rs/miscsamples/
H A DRsListRS.java17 package com.example.android.rs.miscsamples;
79 public void init(RenderScriptGL rs, Resources res) { argument
80 mRS = rs;
/frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/scenegraph/
H A DRenderState.java101 RenderScriptGL rs = SceneManager.getRS();
102 if (rs == null) {
106 mField = new ScriptField_RenderState_s(rs, 1);
H A DRenderPass.java86 ScriptField_RenderPass_s.Item getRsField(RenderScriptGL rs, Resources res) { argument
101 Allocation drawableData = Allocation.createSized(rs,
102 Element.ALLOCATION(rs),
107 drawableAllocs[i] = dI.getRsField(rs, res).getAllocation();
/frameworks/base/tests/RenderScriptTests/FountainFbo/src/com/example/android/rs/fountainfbo/
H A DFountainFbo.java17 package com.example.android.rs.fountainfbo;
41 Log.e("rs", "onResume");
51 Log.e("rs", "onPause");
H A DFountainFboRS.java17 package com.example.android.rs.fountainfbo;
40 public void init(RenderScriptGL rs, Resources res) { argument
41 mRS = rs;
55 ProgramFragmentFixedFunction.Builder pfb = new ProgramFragmentFixedFunction.Builder(rs);
/frameworks/compile/libbcc/
H A Dlibbcc.mk27 RSLOADER_ROOT_PATH := frameworks/rs/cpu_ref/linkloader
/frameworks/compile/mclinker/unittests/
H A DELFReaderTest.cpp131 LDContext::sect_iterator rs = m_pInput->context()->relocSectBegin(); local
132 ASSERT_TRUE(rs!=m_pInput->context()->relocSectEnd());
133 ASSERT_EQ(".rela.text", (*rs)->name());
135 uint64_t offset = m_pInput->fileOffset() + (*rs)->offset();
136 uint64_t size = (*rs)->size();
138 IRBuilder::CreateRelocData(**rs); /// create relocation data for the header
140 ASSERT_EQ(llvm::ELF::SHT_RELA, (*rs)->type());
141 ASSERT_TRUE(m_pELFReader->readRela(*m_pInput, **rs, *region));
145 (*rs)->getRelocData()->getRelocationList();
/frameworks/rs/java/tests/GenImages/src/com/android/rs/genimage/
H A DGenImageAct.java17 package com.android.rs.genimage;

Completed in 1341 milliseconds

1234567891011>>