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

1 2 3 4 5 6 7 8 9

  /frameworks/rs/cpp/
RenderScript.cpp 38 bool RS::gInitialized = false;
39 bool RS::usingNative = false;
40 pthread_mutex_t RS::gInitMutex = PTHREAD_MUTEX_INITIALIZER;
41 dispatchTable* RS::dispatch = NULL;
44 RS::RS() {
57 RS::~RS() {
62 RS::dispatch->ContextDeinitToClient(mContext);
67 RS::dispatch->ContextDestroy(mContext)
540 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,
28 rs->mCacheDir.c_str(), rs->mCacheDir.length(), (const char *)codeTxt, codeLength);
rsCppStructs.h 29 * Every row in an RS allocation is guaranteed to be aligned by this amount, and
40 class RS;
86 class RS : public android::RSC::LightRefBase<RS> {
89 RS();
90 virtual ~RS();
269 RS* mRS;
272 BaseObj(void *id, sp<RS> rs);
319 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.get();
48 RS::dispatch->ObjDestroy(mRS->getContext(), mID);
56 RS::dispatch->GetName(mRS->getContext(), mID, &name);
  /external/valgrind/main/none/tests/mips64/
macro_int.h 1 #define TEST1(instruction, RSval, RTval, RD, RS, RT) \
5 "move $"#RS", %1" "\n\t" \
12 : #RD, #RS, #RT \
14 printf("%s :: rd 0x%llx, rs 0x%llx, rt 0x%llx\n", \
19 #define TEST2(instruction, RSval, imm, RT, RS) \
23 "move $"#RS", %1" "\n\t" \
29 : #RT, #RS \
31 printf("%s :: rt 0x%llx, rs 0x%llx, imm 0x%04x\n", \
35 #define TEST3(instruction, RSval, RD, RS) \
39 "move $"#RS", %1" "\n\t"
    [all...]
  /frameworks/rs/java/tests/RsTest/src/com/android/rs/test/
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_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());
  /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...]
  /frameworks/rs/java/tests/RsTest_16/src/com/android/rs/test/
UT_alloc.java 17 package com.android.rs.test_v16;
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...]
  /external/llvm/lib/DebugInfo/
DWARFCompileUnit.h 19 DWARFCompileUnit(const DWARFDebugAbbrev *DA, StringRef IS, StringRef RS,
22 : DWARFUnit(DA, IS, RS, SS, SOS, AOS, M, LE) {}
DWARFTypeUnit.h 22 DWARFTypeUnit(const DWARFDebugAbbrev *DA, StringRef IS, StringRef RS,
25 : DWARFUnit(DA, IS, RS, SS, SOS, AOS, M, LE) {}
  /prebuilts/ndk/9/platforms/android-19/arch-arm/usr/include/rs/cpp/
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();
268 RS* mRS;
271 BaseObj(void *id, sp<RS> rs);
318 Allocation(void *id, sp<RS> rs, sp<const Type> t, uint32_t usage)
    [all...]
  /prebuilts/ndk/9/platforms/android-19/arch-mips/usr/include/rs/cpp/
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();
268 RS* mRS;
271 BaseObj(void *id, sp<RS> rs);
318 Allocation(void *id, sp<RS> rs, sp<const Type> t, uint32_t usage)
    [all...]
  /prebuilts/ndk/9/platforms/android-19/arch-x86/usr/include/rs/cpp/
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();
268 RS* mRS;
271 BaseObj(void *id, sp<RS> rs);
318 Allocation(void *id, sp<RS> rs, sp<const Type> t, uint32_t usage)
    [all...]

Completed in 698 milliseconds

1 2 3 4 5 6 7 8 9