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

1 2 3 4 5 6 7 8

  /frameworks/rs/cpp/
RenderScript.cpp 34 bool RS::gInitialized = false;
35 bool RS::usingNative = false;
36 pthread_mutex_t RS::gInitMutex = PTHREAD_MUTEX_INITIALIZER;
37 dispatchTable* RS::dispatch = NULL;
40 RS::RS() {
53 RS::~RS() {
57 RS::dispatch->ContextDeinitToClient(mContext);
62 RS::dispatch->ContextDestroy(mContext)
520 RS *rs = static_cast<RS *>(vrsc); local
    [all...]
ScriptC.cpp 22 ScriptC::ScriptC(sp<RS> rs,
26 : Script(NULL, rs) {
27 mID = RS::dispatch->ScriptCCreate(rs->getContext(), cachedName, cachedNameLength,
rsCppStructs.h 28 * Every row in an RS allocation is guaranteed to be aligned by this amount, and
39 class RS;
85 class RS : public android::RSC::LightRefBase<RS> {
88 RS();
89 virtual ~RS();
263 sp<RS> mRS;
266 BaseObj(void *id, sp<RS> rs);
313 Allocation(void *id, sp<RS> rs, sp<const Type> t, uint32_t usage)
    [all...]
Script.cpp 26 tryDispatch(mRS, RS::dispatch->ScriptInvokeV(mRS->getContext(), getID(), slot, v, len));
36 tryDispatch(mRS, RS::dispatch->ScriptForEach(mRS->getContext(), getID(), slot, in_id, out_id, usr, usrLen, NULL, 0));
40 Script::Script(void *id, sp<RS> rs) : BaseObj(id, rs) {
45 tryDispatch(mRS, RS::dispatch->ScriptBindAllocation(mRS->getContext(), getID(), BaseObj::getObjID(va), slot));
50 tryDispatch(mRS, RS::dispatch->ScriptSetVarObj(mRS->getContext(), getID(), index, (o == NULL) ? 0 : o->getID()));
54 tryDispatch(mRS, RS::dispatch->ScriptSetVarV(mRS->getContext(), getID(), index, v, len));
57 void Script::FieldBase::init(sp<RS> rs, uint32_t dimx, uint32_t usages)
    [all...]
BaseObj.cpp 35 BaseObj::BaseObj(void *id, sp<RS> rs) {
36 mRS = rs;
47 RS::dispatch->ObjDestroy(mRS->getContext(), mID);
54 RS::dispatch->GetName(mRS->getContext(), mID, &name);
  /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_check_dims.java 17 package com.android.rs.test;
35 private void initializeGlobals(RenderScript RS, ScriptC_check_dims s) {
36 Type.Builder typeBuilder = new Type.Builder(RS, Element.U8(RS));
38 Allocation AFailed = Allocation.createTyped(RS, typeBuilder.create());
45 typeBuilder = new Type.Builder(RS, Element.I32(RS));
49 mA = Allocation.createTyped(RS, typeBuilder.create());
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());
  /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) {
  /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/Sparc/
SparcRegisterInfo.h 43 RegScavenger *RS = NULL) const;
46 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 1226 milliseconds

1 2 3 4 5 6 7 8