Lines Matching refs:slot

45         KernelID(long id, RenderScript rs, Script s, int slot, int sig) {  in KernelID()  argument
48 mSlot = slot; in KernelID()
57 protected KernelID createKernelID(int slot, int sig, Element ein, in createKernelID() argument
59 KernelID k = mKIDs.get(slot); in createKernelID()
64 long id = mRS.nScriptKernelIDCreate(getID(mRS), slot, sig); in createKernelID()
69 k = new KernelID(id, mRS, this, slot, sig); in createKernelID()
70 mKIDs.put(slot, k); in createKernelID()
85 InvokeID(long id, RenderScript rs, Script s, int slot) { in InvokeID() argument
88 mSlot = slot; in InvokeID()
96 protected InvokeID createInvokeID(int slot) { in createInvokeID() argument
97 InvokeID i = mIIDs.get(slot); in createInvokeID()
102 long id = mRS.nScriptInvokeIDCreate(getID(mRS), slot); in createInvokeID()
107 i = new InvokeID(id, mRS, this, slot); in createInvokeID()
108 mIIDs.put(slot, i); in createInvokeID()
123 FieldID(long id, RenderScript rs, Script s, int slot) { in FieldID() argument
126 mSlot = slot; in FieldID()
134 protected FieldID createFieldID(int slot, Element e) { in createFieldID() argument
135 FieldID f = mFIDs.get(slot); in createFieldID()
140 long id = mRS.nScriptFieldIDCreate(getID(mRS), slot); in createFieldID()
145 f = new FieldID(id, mRS, this, slot); in createFieldID()
146 mFIDs.put(slot, f); in createFieldID()
155 protected void invoke(int slot) { in invoke() argument
156 mRS.nScriptInvoke(getID(mRS), slot); in invoke() local
163 protected void invoke(int slot, FieldPacker v) { in invoke() argument
165 mRS.nScriptInvokeV(getID(mRS), slot, v.getData()); in invoke() local
167 mRS.nScriptInvoke(getID(mRS), slot); in invoke() local
175 protected void forEach(int slot, Allocation ain, Allocation aout, in forEach() argument
177 forEach(slot, ain, aout, v, null); in forEach()
184 protected void forEach(int slot, Allocation ain, Allocation aout, in forEach() argument
224 mRS.nScriptForEach(getID(mRS), slot, in_ids, out_id, params, limits); in forEach() local
230 protected void forEach(int slot, Allocation[] ains, Allocation aout, in forEach() argument
234 forEach(slot, ains, aout, v, null); in forEach()
240 protected void forEach(int slot, Allocation[] ains, Allocation aout, in forEach() argument
289 mRS.nScriptForEach(getID(mRS), slot, in_ids, out_id, params, limits); in forEach() local
296 protected void reduce(int slot, Allocation[] ains, Allocation aout, LaunchOptions sc) { in reduce() argument
328 mRS.nScriptReduce(getID(mRS), slot, in_ids, out_id, limits); in reduce() local
356 public void bindAllocation(Allocation va, int slot) { in bindAllocation() argument
373 mRS.nScriptBindAllocation(getID(mRS), va.getID(mRS), slot); in bindAllocation() local
375 mRS.nScriptBindAllocation(getID(mRS), 0, slot); in bindAllocation() local