Lines Matching refs:slot

40         KernelID(long id, RenderScript rs, Script s, int slot, int sig) {  in KernelID()  argument
43 mSlot = slot; in KernelID()
52 protected KernelID createKernelID(int slot, int sig, Element ein, in createKernelID() argument
54 KernelID k = mKIDs.get(slot); in createKernelID()
59 long id = mRS.nScriptKernelIDCreate(getID(mRS), slot, sig); in createKernelID()
64 k = new KernelID(id, mRS, this, slot, sig); in createKernelID()
65 mKIDs.put(slot, k); in createKernelID()
80 InvokeID(long id, RenderScript rs, Script s, int slot) { in InvokeID() argument
83 mSlot = slot; in InvokeID()
91 protected InvokeID createInvokeID(int slot) { in createInvokeID() argument
92 InvokeID i = mIIDs.get(slot); in createInvokeID()
97 long id = mRS.nScriptInvokeIDCreate(getID(mRS), slot); in createInvokeID()
102 i = new InvokeID(id, mRS, this, slot); in createInvokeID()
103 mIIDs.put(slot, i); in createInvokeID()
118 FieldID(long id, RenderScript rs, Script s, int slot) { in FieldID() argument
121 mSlot = slot; in FieldID()
129 protected FieldID createFieldID(int slot, Element e) { in createFieldID() argument
130 FieldID f = mFIDs.get(slot); in createFieldID()
135 long id = mRS.nScriptFieldIDCreate(getID(mRS), slot); in createFieldID()
140 f = new FieldID(id, mRS, this, slot); in createFieldID()
141 mFIDs.put(slot, f); in createFieldID()
150 protected void invoke(int slot) { in invoke() argument
151 mRS.nScriptInvoke(getID(mRS), slot); in invoke() local
158 protected void invoke(int slot, FieldPacker v) { in invoke() argument
160 mRS.nScriptInvokeV(getID(mRS), slot, v.getData()); in invoke() local
162 mRS.nScriptInvoke(getID(mRS), slot); in invoke() local
170 protected void forEach(int slot, Allocation ain, Allocation aout, in forEach() argument
172 forEach(slot, ain, aout, v, null); in forEach()
179 protected void forEach(int slot, Allocation ain, Allocation aout, in forEach() argument
219 mRS.nScriptForEach(getID(mRS), slot, in_ids, out_id, params, limits); in forEach() local
225 protected void forEach(int slot, Allocation[] ains, Allocation aout, in forEach() argument
229 forEach(slot, ains, aout, v, null); in forEach()
235 protected void forEach(int slot, Allocation[] ains, Allocation aout, in forEach() argument
284 mRS.nScriptForEach(getID(mRS), slot, in_ids, out_id, params, limits); in forEach() local
291 protected void reduce(int slot, Allocation[] ains, Allocation aout, LaunchOptions sc) { in reduce() argument
323 mRS.nScriptReduce(getID(mRS), slot, in_ids, out_id, limits); in reduce() local
351 public void bindAllocation(Allocation va, int slot) { in bindAllocation() argument
368 mRS.nScriptBindAllocation(getID(mRS), va.getID(mRS), slot); in bindAllocation() local
370 mRS.nScriptBindAllocation(getID(mRS), 0, slot); in bindAllocation() local