Searched refs:RSC (Results 1 - 25 of 31) sorted by relevance

12

/frameworks/av/media/libstagefright/filters/
H A 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;
H A 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;
H A DRSFilter.h46 RSC::sp<RSC::RS> mRS;
47 RSC::sp<RSC::Allocation> mAllocIn;
48 RSC::sp<RSC::Allocation> mAllocOut;
H A DIntrinsicBlurFilter.cpp46 mRS = new RSC::RS();
54 RSC::sp<const RSC::Element> e = RSC::Element::U8_4(mRS);
56 RSC::Type::Builder tb(mRS, e);
59 RSC::sp<const RSC::Type> t = tb.create();
61 mAllocIn = RSC::Allocation::createTyped(mRS, t);
62 mAllocOut = RSC::Allocation::createTyped(mRS, t);
64 mBlur = RSC
[all...]
H A DSaturationFilter.cpp46 mRS = new RSC::RS();
54 RSC::sp<const RSC::Element> e = RSC::Element::U8_4(mRS);
56 RSC::Type::Builder tb(mRS, e);
59 RSC::sp<const RSC::Type> t = tb.create();
61 mAllocIn = RSC::Allocation::createTyped(mRS, t);
62 mAllocOut = RSC::Allocation::createTyped(mRS, t);
H A DRSFilter.cpp63 RSC::sp<const RSC::Element> e = RSC::Element::U8_4(mRS);
65 RSC::Type::Builder tb(mRS, e);
68 RSC::sp<const RSC::Type> t = tb.create();
70 mAllocIn = RSC::Allocation::createTyped(mRS, t);
71 mAllocOut = RSC::Allocation::createTyped(mRS, t);
/frameworks/av/include/media/stagefright/
H A DRenderScriptWrapper.h30 RSC::Allocation* inBuffer,
31 RSC::Allocation* outBuffer) = 0;
37 RSC::sp<RSC::RS> mContext;
/frameworks/av/media/libstagefright/include/media/stagefright/
H A DRenderScriptWrapper.h30 RSC::Allocation* inBuffer,
31 RSC::Allocation* outBuffer) = 0;
37 RSC::sp<RSC::RS> mContext;
/frameworks/rs/tests/cpp_api/cppf16/
H A Dcompute.cpp3 using android::RSC::Allocation;
4 using android::RSC::Element;
5 using android::RSC::RS;
6 using android::RSC::Type;
7 using android::RSC::sp;
/frameworks/rs/cpp/
H A DElement.cpp23 using android::RSC::Element;
25 android::RSC::sp<const Element> Element::getSubElement(uint32_t index) {
74 #define CREATE_USER(N, T) android::RSC::sp<const Element> Element::N(const android::RSC::sp<RS>& rs) { \
102 #define CREATE_PIXEL(N, T, K) android::RSC::sp<const Element> Element::N(const android::RSC::sp<RS> &rs) { \
117 #define CREATE_VECTOR(N, T) android::RSC::sp<const Element> Element::N##_2(const android::RSC::sp<RS> &rs) { \
123 android::RSC::sp<const Element> Element::N##_3(const android::RSC
[all...]
H A DScriptC.cpp20 using android::RSC::ScriptC;
H A DBaseObj.cpp20 using android::RSC::BaseObj;
H A DSampler.cpp20 using android::RSC::Sampler;
21 using android::RSC::sp;
H A DType.cpp29 using android::RSC::Element;
30 using android::RSC::RS;
31 using android::RSC::Type;
32 using android::RSC::sp;
H A DScript.cpp22 using android::RSC::Script;
H A DScriptIntrinsics.cpp22 using android::RSC::ScriptIntrinsic;
23 using android::RSC::ScriptIntrinsic3DLUT;
24 using android::RSC::ScriptIntrinsicBlend;
25 using android::RSC::ScriptIntrinsicBlur;
26 using android::RSC::ScriptIntrinsicColorMatrix;
27 using android::RSC::ScriptIntrinsicConvolve3x3;
28 using android::RSC::ScriptIntrinsicConvolve5x5;
29 using android::RSC::ScriptIntrinsicHistogram;
30 using android::RSC::ScriptIntrinsicLUT;
31 using android::RSC
[all...]
H A DRenderScript.cpp28 using android::RSC::RS;
29 using android::RSC::RSError;
/frameworks/compile/slang/
H A Dslang_rs_export_reduce.cpp104 RSC(anRSContext),
132 RSContext &RSC; member in struct:slang::RSExportReduce::StateOfAnalyzeTranslationUnit
177 S.RSC.ReportError(mLocation,
190 S.RSC.ReportError(mLocation,
199 S.RSC.ReportError(Ret->getLocation(), "%0 must be static")
225 S.RSC.ReportError(Fn->getLocation(),
240 S.RSC.ReportError(Param->getLocation(),
259 S.RSC.ReportError(S.FnInitializer->getLocation(),
270 S.RSC.ReportError(S.FnInitializer->getLocation(),
281 S.RSC
753 RSContext &RSC = *getRSContext(); local
[all...]
/frameworks/av/cmds/stagefright/
H A Dmediafilter.cpp72 void init(const RSC::sp<RSC::RS> &context) {
78 RSC::Allocation *inBuffer, RSC::Allocation *outBuffer) {
89 RSC::sp<ScriptC_saturation> mScript;
93 void init(const RSC::sp<RSC::RS> &context) {
98 RSC::Allocation *inBuffer, RSC::Allocation *outBuffer) {
109 RSC
[all...]
/frameworks/base/libs/hwui/
H A DFontRenderer.h38 namespace RSC { namespace
193 RSC::sp<RSC::RS> mRs;
194 RSC::sp<const RSC::Element> mRsElement;
195 RSC::sp<RSC::ScriptIntrinsicBlur> mRsScript;
H A DFontRenderer.cpp687 mRs = new RSC::RS();
690 if (!mRs->init("", RSC::RS_INIT_LOW_LATENCY | RSC::RS_INIT_SYNCHRONOUS)) {
694 mRsElement = RSC::Element::A_8(mRs);
695 mRsScript = RSC::ScriptIntrinsicBlur::create(mRs, mRsElement);
699 RSC::sp<const RSC::Type> t = RSC::Type::create(mRs, mRsElement, width, height, 0);
700 RSC::sp<RSC
[all...]
/frameworks/rs/tests/java_api/HelloComputeNDK/libhellocomputendk/
H A DhelloComputeNDK.cpp17 using namespace android::RSC;
/frameworks/compile/libbcc/tools/bcc/
H A DMain.cpp234 Compiler *RSC = pRSCD.getCompiler(); local
264 Compiler::ErrorCode result = RSC->config(*config);
/frameworks/rs/cpp/util/
H A DStrongPointer.h28 namespace RSC { namespace in namespace:android
217 }; // namespace RSC
H A DTypeHelpers.h27 namespace RSC { namespace in namespace:android
298 }; // namespace RSC

Completed in 355 milliseconds

12