HomeSort by relevance Sort by last modified time
    Searched refs:RS (Results 1 - 25 of 159) sorted by null

1 2 3 4 5 6 7

  /frameworks/rs/cpp/
RenderScript.cpp 22 #include "rs.h"
27 bool RS::gInitialized = false;
28 pthread_mutex_t RS::gInitMutex = PTHREAD_MUTEX_INITIALIZER;
30 RS::RS() {
40 RS::~RS() {
54 bool RS::init(bool forceCpu, bool synchronous) {
55 return RS::init(RS_VERSION, forceCpu, synchronous);
58 bool RS::init(int targetApi, bool forceCpu, bool synchronous)
94 RS *rs = static_cast<RS *>(vrsc); local
    [all...]
rsCppStructs.h 27 // Every row in an RS allocation is guaranteed to be aligned by this amount
37 class RS;
45 class RS : public android::LightRefBase<RS> {
48 RS();
49 virtual ~RS();
163 sp<RS> mRS;
166 BaseObj(void *id, sp<RS> rs);
205 Allocation(void *id, sp<RS> rs, sp<const Type> t, uint32_t usage)
    [all...]
  /frameworks/rs/java/tests/RsTest/src/com/android/rs/test/
UT_mesh.java 17 package com.android.rs.test;
34 private void initializeGlobals(RenderScript RS, ScriptC_mesh s) {
35 Allocation vAlloc0 = Allocation.createSized(RS, Element.F32(RS), 10);
36 Allocation vAlloc1 = Allocation.createSized(RS, Element.F32_2(RS), 10);
38 Allocation iAlloc0 = Allocation.createSized(RS, Element.I16(RS), 10);
39 Allocation iAlloc2 = Allocation.createSized(RS, Element.I16(RS), 10)
    [all...]
UT_alloc.java 17 package com.android.rs.test;
31 private void initializeGlobals(RenderScript RS, ScriptC_alloc s) {
32 Type.Builder typeBuilder = new Type.Builder(RS, Element.I32(RS));
40 Allocation A = Allocation.createTyped(RS, typeBuilder.create());
44 typeBuilder = new Type.Builder(RS, Element.I32(RS));
46 Allocation AFaces = Allocation.createTyped(RS, typeBuilder.create());
49 Allocation ALOD = Allocation.createTyped(RS, typeBuilder.create());
52 Allocation AFacesLOD = Allocation.createTyped(RS, typeBuilder.create())
    [all...]
UT_kernel.java 17 package com.android.rs.test;
34 private void initializeGlobals(RenderScript RS, ScriptC_kernel s) {
35 Type.Builder typeBuilder = new Type.Builder(RS, Element.I32(RS));
39 A = Allocation.createTyped(RS, typeBuilder.create());
41 B = Allocation.createTyped(RS, typeBuilder.create());
UT_program_raster.java 17 package com.android.rs.test;
36 private ProgramRaster.Builder getDefaultBuilder(RenderScript RS) {
37 ProgramRaster.Builder b = new ProgramRaster.Builder(RS);
43 private void initializeGlobals(RenderScript RS, ScriptC_program_raster s) {
44 ProgramRaster.Builder b = getDefaultBuilder(RS);
46 b = getDefaultBuilder(RS);
62 private void testJavaSide(RenderScript RS) {
UT_foreach.java 17 package com.android.rs.test;
32 private void initializeGlobals(RenderScript RS, ScriptC_foreach s) {
33 Type.Builder typeBuilder = new Type.Builder(RS, Element.I32(RS));
39 A = Allocation.createTyped(RS, typeBuilder.create());
UT_noroot.java 17 package com.android.rs.test;
32 private void initializeGlobals(RenderScript RS, ScriptC_noroot s) {
33 Type.Builder typeBuilder = new Type.Builder(RS, Element.I32(RS));
39 A = Allocation.createTyped(RS, typeBuilder.create());
UT_refcount.java 17 package com.android.rs.test;
31 private void initializeGlobals(RenderScript RS, ScriptC_refcount s) {
32 Type.Builder typeBuilder = new Type.Builder(RS, Element.I32(RS));
36 Allocation A = Allocation.createTyped(RS, typeBuilder.create());
UT_sampler.java 17 package com.android.rs.test;
39 private Sampler.Builder getDefaultBuilder(RenderScript RS) {
40 Sampler.Builder b = new Sampler.Builder(RS);
49 private void initializeGlobals(RenderScript RS, ScriptC_sampler s) {
50 Sampler.Builder b = getDefaultBuilder(RS);
54 b = getDefaultBuilder(RS);
58 b = getDefaultBuilder(RS);
62 b = getDefaultBuilder(RS);
66 b = getDefaultBuilder(RS);
86 private void testJavaSide(RenderScript RS) {
    [all...]
  /frameworks/rs/java/tests/RSTest_CompatLib/src/com/android/rs/test/
UT_alloc.java 17 package com.android.rs.test_compat;
31 private void initializeGlobals(RenderScript RS, ScriptC_alloc s) {
32 Type.Builder typeBuilder = new Type.Builder(RS, Element.I32(RS));
40 Allocation A = Allocation.createTyped(RS, typeBuilder.create());
44 typeBuilder = new Type.Builder(RS, Element.I32(RS));
46 Allocation AFaces = Allocation.createTyped(RS, typeBuilder.create());
49 Allocation ALOD = Allocation.createTyped(RS, typeBuilder.create());
52 Allocation AFacesLOD = Allocation.createTyped(RS, typeBuilder.create())
    [all...]
UT_kernel.java 17 package com.android.rs.test_compat;
34 private void initializeGlobals(RenderScript RS, ScriptC_kernel s) {
35 Type.Builder typeBuilder = new Type.Builder(RS, Element.I32(RS));
39 A = Allocation.createTyped(RS, typeBuilder.create());
41 B = Allocation.createTyped(RS, typeBuilder.create());
UT_foreach.java 17 package com.android.rs.test_compat;
32 private void initializeGlobals(RenderScript RS, ScriptC_foreach s) {
33 Type.Builder typeBuilder = new Type.Builder(RS, Element.I32(RS));
39 A = Allocation.createTyped(RS, typeBuilder.create());
UT_foreach_bounds.java 17 package com.android.rs.test_compat;
32 private void initializeGlobals(RenderScript RS, ScriptC_foreach_bounds s) {
33 Type.Builder typeBuilder = new Type.Builder(RS, Element.I32(RS));
39 A = Allocation.createTyped(RS, typeBuilder.create());
UT_noroot.java 17 package com.android.rs.test_compat;
32 private void initializeGlobals(RenderScript RS, ScriptC_noroot s) {
33 Type.Builder typeBuilder = new Type.Builder(RS, Element.I32(RS));
39 A = Allocation.createTyped(RS, typeBuilder.create());
UT_refcount.java 17 package com.android.rs.test_compat;
31 private void initializeGlobals(RenderScript RS, ScriptC_refcount s) {
32 Type.Builder typeBuilder = new Type.Builder(RS, Element.I32(RS));
36 Allocation A = Allocation.createTyped(RS, typeBuilder.create());
UT_element.java 17 package com.android.rs.test_compat;
73 private void initializeGlobals(RenderScript RS, ScriptC_element s) {
74 simpleElem = Element.F32_3(RS);
75 complexElem = ScriptField_ComplexStruct.createElement(RS);
79 ScriptField_ComplexStruct data = new ScriptField_ComplexStruct(RS, 1);
92 private void testJavaSide(RenderScript RS) {
UT_sampler.java 17 package com.android.rs.test_compat;
37 private Sampler.Builder getDefaultBuilder(RenderScript RS) {
38 Sampler.Builder b = new Sampler.Builder(RS);
47 private void initializeGlobals(RenderScript RS, ScriptC_sampler s) {
48 Sampler.Builder b = getDefaultBuilder(RS);
52 b = getDefaultBuilder(RS);
56 b = getDefaultBuilder(RS);
60 b = getDefaultBuilder(RS);
64 b = getDefaultBuilder(RS);
84 private void testJavaSide(RenderScript RS) {
    [all...]
  /frameworks/rs/java/tests/RsTest_14/src/com/android/rs/test/
UT_alloc.java 17 package com.android.rs.test_v14;
31 private void initializeGlobals(RenderScript RS, ScriptC_alloc s) {
32 Type.Builder typeBuilder = new Type.Builder(RS, Element.I32(RS));
40 Allocation A = Allocation.createTyped(RS, typeBuilder.create());
44 typeBuilder = new Type.Builder(RS, Element.I32(RS));
46 Allocation AFaces = Allocation.createTyped(RS, typeBuilder.create());
49 Allocation ALOD = Allocation.createTyped(RS, typeBuilder.create());
52 Allocation AFacesLOD = Allocation.createTyped(RS, typeBuilder.create())
    [all...]
UT_foreach.java 17 package com.android.rs.test_v14;
32 private void initializeGlobals(RenderScript RS, ScriptC_foreach s) {
33 Type.Builder typeBuilder = new Type.Builder(RS, Element.I32(RS));
39 A = Allocation.createTyped(RS, typeBuilder.create());
UT_refcount.java 17 package com.android.rs.test_v14;
31 private void initializeGlobals(RenderScript RS, ScriptC_refcount s) {
32 Type.Builder typeBuilder = new Type.Builder(RS, Element.I32(RS));
36 Allocation A = Allocation.createTyped(RS, typeBuilder.create());
  /external/llvm/lib/Target/MBlaze/
MBlazeRegisterInfo.h 56 RegScavenger *RS = NULL) const;
59 RegScavenger *RS = NULL) const;
  /external/llvm/lib/Target/Sparc/
SparcRegisterInfo.h 41 RegScavenger *RS = NULL) const;
44 RegScavenger *RS = NULL) const;
  /external/llvm/lib/Target/PowerPC/
PPCRegisterInfo.h 64 int SPAdj, RegScavenger *RS) const;
66 int SPAdj, RegScavenger *RS) const;
68 int SPAdj, RegScavenger *RS) const;
73 RegScavenger *RS = NULL) const;
  /external/qemu/
ppc-dis.c 84 /* Opcode is defined for the POWER (RS/6000) architecture. */
729 the RS field in the instruction. This is used for extended
734 /* The RS field in a D, DS, X, XFX, XS, M, MD or MDS form
737 #define RS RBS + 1
738 #define RT RS
742 /* The RS and RT fields of the DS form stq instruction, which have
744 #define RSQ RS + 1
748 /* The RS field of the tlbwe instruction, which is optional. */
    [all...]

Completed in 1579 milliseconds

1 2 3 4 5 6 7