Home
last modified time | relevance | path

Searched refs:RSC (Results 1 – 25 of 35) sorted by relevance

12

/frameworks/av/media/libstagefright/filters/
DIntrinsicBlurFilter.h41 RSC::sp<RSC::RS> mRS;
42 RSC::sp<RSC::Allocation> mAllocIn;
43 RSC::sp<RSC::Allocation> mAllocOut;
44 RSC::sp<RSC::ScriptIntrinsicBlur> mBlur;
DIntrinsicBlurFilter.cpp46 mRS = new RSC::RS(); in start()
54 RSC::sp<const RSC::Element> e = RSC::Element::U8_4(mRS); in start()
56 RSC::Type::Builder tb(mRS, e); in start()
59 RSC::sp<const RSC::Type> t = tb.create(); in start()
61 mAllocIn = RSC::Allocation::createTyped(mRS, t); in start()
62 mAllocOut = RSC::Allocation::createTyped(mRS, t); in start()
64 mBlur = RSC::ScriptIntrinsicBlur::create(mRS, e); in start()
DSaturationFilter.cpp46 mRS = new RSC::RS(); in start()
54 RSC::sp<const RSC::Element> e = RSC::Element::U8_4(mRS); in start()
56 RSC::Type::Builder tb(mRS, e); in start()
59 RSC::sp<const RSC::Type> t = tb.create(); in start()
61 mAllocIn = RSC::Allocation::createTyped(mRS, t); in start()
62 mAllocOut = RSC::Allocation::createTyped(mRS, t); in start()
DSaturationFilter.h43 RSC::sp<RSC::RS> mRS;
44 RSC::sp<RSC::Allocation> mAllocIn;
45 RSC::sp<RSC::Allocation> mAllocOut;
46 RSC::sp<ScriptC_saturationARGB> mScript;
DRSFilter.cpp63 RSC::sp<const RSC::Element> e = RSC::Element::U8_4(mRS); in start()
65 RSC::Type::Builder tb(mRS, e); in start()
68 RSC::sp<const RSC::Type> t = tb.create(); in start()
70 mAllocIn = RSC::Allocation::createTyped(mRS, t); in start()
71 mAllocOut = RSC::Allocation::createTyped(mRS, t); in start()
DRSFilter.h46 RSC::sp<RSC::RS> mRS;
47 RSC::sp<RSC::Allocation> mAllocIn;
48 RSC::sp<RSC::Allocation> mAllocOut;
/frameworks/rs/cpp/
DElement.cpp24 using namespace RSC;
26 android::RSC::sp<const Element> Element::getSubElement(uint32_t index) { in getSubElement()
75 #define CREATE_USER(N, T) android::RSC::sp<const Element> Element::N(android::RSC::sp<RS> rs) { \
103 #define CREATE_PIXEL(N, T, K) android::RSC::sp<const Element> Element::N(android::RSC::sp<RS> rs) {…
118 #define CREATE_VECTOR(N, T) android::RSC::sp<const Element> Element::N##_2(android::RSC::sp<RS> rs)…
124 android::RSC::sp<const Element> Element::N##_3(android::RSC::sp<RS> rs) { \
130 android::RSC::sp<const Element> Element::N##_4(android::RSC::sp<RS> rs) { \
178 Element::Element(void *id, android::RSC::sp<RS> rs, in Element()
179 android::RSC::sp<const Element> * elements, in Element()
190 …mElements = (android::RSC::sp<const Element> *)calloc(mElementsCount, sizeof(android::RSC::sp<Elem… in Element()
[all …]
DScriptC.cpp21 using namespace RSC;
DBaseObj.cpp21 using namespace RSC;
DScript.cpp23 using namespace RSC;
DSampler.cpp21 using namespace RSC;
/frameworks/compile/slang/
Dslang_rs_export_reduce.cpp104 RSC(anRSContext), in StateOfAnalyzeTranslationUnit()
132 RSContext &RSC; member
177 S.RSC.ReportError(mLocation, in lookupFunction()
190 S.RSC.ReportError(mLocation, in lookupFunction()
199 S.RSC.ReportError(Ret->getLocation(), "%0 must be static") in lookupFunction()
225 S.RSC.ReportError(Fn->getLocation(), in checkVoidReturn()
240 S.RSC.ReportError(Param->getLocation(), in checkPointeeConstQualified()
259 S.RSC.ReportError(S.FnInitializer->getLocation(), in analyzeInitializer()
270 S.RSC.ReportError(S.FnInitializer->getLocation(), in analyzeInitializer()
281 S.RSC.ReportError(S.FnInitializer->getLocation(), in analyzeInitializer()
[all …]
/frameworks/av/include/media/stagefright/
DRenderScriptWrapper.h30 RSC::Allocation* inBuffer,
31 RSC::Allocation* outBuffer) = 0;
37 RSC::sp<RSC::RS> mContext;
/frameworks/av/cmds/stagefright/
Dmediafilter.cpp72 void init(RSC::sp<RSC::RS> context) { in init()
78 RSC::Allocation *inBuffer, RSC::Allocation *outBuffer) { in processBuffers()
89 RSC::sp<ScriptC_saturation> mScript;
93 void init(RSC::sp<RSC::RS> context) { in init()
98 RSC::Allocation *inBuffer, RSC::Allocation *outBuffer) { in processBuffers()
109 RSC::sp<ScriptC_nightvision> mScript;
113 void init(RSC::sp<RSC::RS> context) { in init()
118 RSC::Allocation *inBuffer, RSC::Allocation *outBuffer) { in processBuffers()
129 RSC::sp<ScriptC_argbtorgba> mScript;
381 RSC::sp<RSC::RS> context = new RSC::RS(); in decode()
/frameworks/base/libs/hwui/
DFontRenderer.h40 namespace RSC {
221 RSC::sp<RSC::RS> mRs;
222 RSC::sp<const RSC::Element> mRsElement;
223 RSC::sp<RSC::ScriptIntrinsicBlur> mRsScript;
DFontRenderer.cpp710 mRs = new RSC::RS(); in blurImage()
713 if (!mRs->init("", RSC::RS_INIT_LOW_LATENCY | RSC::RS_INIT_SYNCHRONOUS)) { in blurImage()
717 mRsElement = RSC::Element::A_8(mRs); in blurImage()
718 mRsScript = RSC::ScriptIntrinsicBlur::create(mRs, mRsElement); in blurImage()
722 RSC::sp<const RSC::Type> t = RSC::Type::create(mRs, mRsElement, width, height, 0); in blurImage()
723 RSC::sp<RSC::Allocation> ain = RSC::Allocation::createTyped(mRs, t, in blurImage()
727 RSC::sp<RSC::Allocation> aout = RSC::Allocation::createTyped(mRs, t, in blurImage()
/frameworks/rs/tests/cppf16/
Dcompute.cpp4 using namespace RSC;
/frameworks/rs/tests/cppallocation/
Dcompute.cpp7 using namespace RSC;
/frameworks/rs/java/tests/HelloComputeNDK/libhellocomputendk/
DhelloComputeNDK.cpp17 using namespace android::RSC;
/frameworks/rs/tests/cppstrided/
Dcompute.cpp7 using namespace RSC;
/frameworks/rs/tests/cppbasic-getpointer/
Dcompute.cpp9 using namespace RSC;
/frameworks/rs/tests/latency/
Dlatency.cpp7 using namespace RSC;
/frameworks/compile/libbcc/tools/bcc/
DMain.cpp226 Compiler *RSC = pRSCD.getCompiler(); in ConfigCompiler() local
256 Compiler::ErrorCode result = RSC->config(*config); in ConfigCompiler()
/frameworks/rs/tests/typecheck/
Dtypecheck.cpp21 using namespace RSC;
/frameworks/rs/tests/cppbasic-shared/
Dcompute.cpp7 using namespace RSC;

12