Searched refs:Script (Results 1 - 25 of 184) sorted by relevance

12345678

/frameworks/compile/mclinker/lib/Script/
H A DScriptCommand.cpp9 #include <mcld/Script/ScriptCommand.h>
H A DAssertCmd.cpp9 #include <mcld/Script/AssertCmd.h>
10 #include <mcld/Script/RpnExpr.h>
H A DInputToken.cpp9 #include <mcld/Script/InputToken.h>
H A DOutputArchCmd.cpp9 #include <mcld/Script/OutputArchCmd.h>
H A DScriptFile.cpp9 #include <mcld/Script/ScriptFile.h>
10 #include <mcld/Script/StringList.h>
11 #include <mcld/Script/ScriptCommand.h>
12 #include <mcld/Script/EntryCmd.h>
13 #include <mcld/Script/OutputFormatCmd.h>
14 #include <mcld/Script/GroupCmd.h>
15 #include <mcld/Script/OutputCmd.h>
16 #include <mcld/Script/SearchDirCmd.h>
17 #include <mcld/Script/OutputArchCmd.h>
18 #include <mcld/Script/AssertCm
[all...]
H A DNullaryOp.cpp9 #include <mcld/Script/NullaryOp.h>
10 #include <mcld/Script/Operand.h>
/frameworks/compile/libbcc/include/bcc/Renderscript/
H A DRSCompiler.h26 virtual bool beforeAddLTOPasses(Script &pScript, llvm::PassManager &pPM);
27 bool addInternalizeSymbolsPass(Script &pScript, llvm::PassManager &pPM);
28 bool addExpandForEachPass(Script &pScript, llvm::PassManager &pPM);
/frameworks/compile/libbcc/include/bcc/
H A DCompiler.h38 class Script;
86 enum ErrorCode runLTO(Script &pScript);
87 enum ErrorCode runCodeGen(Script &pScript, llvm::raw_ostream &pResult);
99 enum ErrorCode compile(Script &pScript, llvm::raw_ostream &pResult,
103 enum ErrorCode compile(Script &pScript, OutputFile &pResult,
119 virtual bool beforeAddLTOPasses(Script &pScript, llvm::PassManager &pPM)
123 virtual bool afterAddLTOPasses(Script &pScript, llvm::PassManager &pPM)
127 virtual bool beforeExecuteLTOPasses(Script &pScript,
132 virtual bool afterExecuteLTOPasses(Script &pScript)
136 virtual bool beforeAddCodeGenPasses(Script
[all...]
H A DScript.h24 class Script { class in namespace:bcc
36 Script(Source &pSource) : mSource(&pSource) { } function in class:bcc::Script
38 virtual ~Script() { }
48 // this Script object. Return false on error.
50 // This is equivalent to the call to Script::merge(...) on mSource.
/frameworks/base/rs/java/android/renderscript/
H A DScriptIntrinsic.java27 public abstract class ScriptIntrinsic extends Script {
H A DScriptIntrinsicBlend.java43 private void blend(int id, Allocation ain, Allocation aout, Script.LaunchOptions opt) {
70 public void forEachClear(Allocation ain, Allocation aout, Script.LaunchOptions opt) {
77 * @return Script.KernelID The KernelID object.
79 public Script.KernelID getKernelIDClear() {
101 public void forEachSrc(Allocation ain, Allocation aout, Script.LaunchOptions opt) {
108 * @return Script.KernelID The KernelID object.
110 public Script.KernelID getKernelIDSrc() {
135 public void forEachDst(Allocation ain, Allocation aout, Script.LaunchOptions opt) {
142 * @return Script.KernelID The KernelID object.
144 public Script
[all...]
H A DScriptIntrinsicYuvToRGB.java75 * @return Script.KernelID The KernelID object.
77 public Script.KernelID getKernelID() {
84 * @return Script.FieldID The FieldID object.
86 public Script.FieldID getFieldID_Input() {
H A DScriptGroup.java40 * Script objects. Attempting to use multiple kernels from the same
41 * Script object will result in an {@link android.renderscript.RSInvalidStateException}.
49 Script.KernelID mKID;
52 IO(Script.KernelID s) {
58 ConnectLine(Type t, Script.KernelID from, Script.KernelID to) {
64 ConnectLine(Type t, Script.KernelID from, Script.FieldID to) {
70 Script.FieldID mToF;
71 Script
[all...]
/frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
H A DScriptIntrinsic.java27 public abstract class ScriptIntrinsic extends Script {
H A DScriptIntrinsicBlend.java71 * @return Script.KernelID The KernelID object.
73 public Script.KernelID getKernelIDClear() {
91 * @return Script.KernelID The KernelID object.
93 public Script.KernelID getKernelIDSrc() {
112 * @return Script.KernelID The KernelID object.
114 public Script.KernelID getKernelIDDst() {
131 * @return Script.KernelID The KernelID object.
133 public Script.KernelID getKernelIDSrcOver() {
150 * @return Script.KernelID The KernelID object.
152 public Script
[all...]
H A DScriptIntrinsicBlendThunker.java54 public Script.KernelID getKernelIDClear() {
55 Script.KernelID k = createKernelID(0, 3, null, null);
75 public Script.KernelID getKernelIDSrc() {
76 Script.KernelID k = createKernelID(1, 3, null, null);
96 public Script.KernelID getKernelIDDst() {
97 Script.KernelID k = createKernelID(2, 3, null, null);
117 public Script.KernelID getKernelIDSrcOver() {
118 Script.KernelID k = createKernelID(3, 3, null, null);
138 public Script.KernelID getKernelIDDstOver() {
139 Script
[all...]
H A DScriptGroupThunker.java33 public void setInput(Script.KernelID s, Allocation a) {
42 public void setOutput(Script.KernelID s, Allocation a) {
75 public Builder addKernel(Script.KernelID k) {
84 public Builder addConnection(Type t, Script.KernelID from, Script.FieldID to) {
94 public Builder addConnection(Type t, Script.KernelID from, Script.KernelID to) {
H A DScriptGroup.java41 * Script objects. Attempting to use multiple kernels from the same
42 * Script object will result in an
51 Script.KernelID mKID;
54 IO(Script.KernelID s) {
60 ConnectLine(Type t, Script.KernelID from, Script.KernelID to) {
66 ConnectLine(Type t, Script.KernelID from, Script.FieldID to) {
72 Script.FieldID mToF;
73 Script
[all...]
/frameworks/rs/
H A DrsScript.cpp23 Script::Script(Context *rsc) : ObjectBase(rsc) { function in class:Script
33 Script::~Script() {
44 void Script::setSlot(uint32_t slot, Allocation *a) {
47 ALOGE("Script::setSlot unable to set allocation, invalid slot index");
56 void Script::setVar(uint32_t slot, const void *val, size_t len) {
59 ALOGE("Script::setVar unable to set allocation, invalid slot index");
65 void Script::getVar(uint32_t slot, const void *val, size_t len) {
68 ALOGE("Script
[all...]
H A DrsScript.h37 ScriptKernelID(Context *rsc, Script *s, int slot, int sig);
43 Script *mScript;
51 ScriptFieldID(Context *rsc, Script *s, int slot);
57 Script *mScript;
61 class Script : public ObjectBase { class in namespace:android::renderscript
86 Script(Context *);
87 virtual ~Script();
/frameworks/compile/libbcc/lib/Core/
H A DScript.cpp17 #include "bcc/Script.h"
23 bool Script::reset(Source &pSource, bool pPreserveCurrent) {
35 bool Script::mergeSource(Source &pSource, bool pPreserveSource) {
/frameworks/rs/driver/
H A DrsdBcc.h27 android::renderscript::Script *s,
32 android::renderscript::Script *script,
38 android::renderscript::Script *s,
47 android::renderscript::Script *s,
57 android::renderscript::Script *script);
59 android::renderscript::Script *script);
61 android::renderscript::Script *script);
64 const android::renderscript::Script *,
67 const android::renderscript::Script *,
70 const android::renderscript::Script *,
[all...]
H A DrsdBcc.cpp56 bool rsdInitIntrinsic(const Context *rsc, Script *s, RsScriptIntrinsicID iid, Element *e) {
68 Script *s,
81 Script *s,
95 int rsdScriptInvokeRoot(const Context *dc, Script *s) {
100 void rsdScriptInvokeInit(const Context *dc, Script *s) {
105 void rsdScriptInvokeFreeChildren(const Context *dc, Script *s) {
110 void rsdScriptInvokeFunction(const Context *dc, Script *s,
118 void rsdScriptSetGlobalVar(const Context *dc, const Script *s,
124 void rsdScriptGetGlobalVar(const Context *dc, const Script *s,
131 void rsdScriptSetGlobalVarWithElemDims(const Context *dc, const Script *
[all...]
/frameworks/rs/cpp/
H A DScript.cpp25 void Script::invoke(uint32_t slot, const void *v, size_t len) const {
29 void Script::forEach(uint32_t slot, sp<const Allocation> ain, sp<const Allocation> aout,
40 Script::Script(void *id, sp<RS> rs) : BaseObj(id, rs) { function in class:Script
44 void Script::bindAllocation(sp<Allocation> va, uint32_t slot) const {
49 void Script::setVar(uint32_t index, sp<const BaseObj> o) const {
53 void Script::setVar(uint32_t index, const void *v, size_t len) const {
57 void Script::FieldBase::init(sp<RS> rs, uint32_t dimx, uint32_t usages) {
/frameworks/rs/cpu_ref/
H A DrsCpuIntrinsicLUT.cpp30 virtual void populateScript(Script *);
36 RsdCpuScriptIntrinsicLUT(RsdCpuReferenceImpl *ctx, const Script *s, const Element *e);
83 const Script *s, const Element *e)
92 void RsdCpuScriptIntrinsicLUT::populateScript(Script *s) {
102 const Script *s, const Element *e) {

Completed in 394 milliseconds

12345678