Lines Matching refs:slot
39 KernelID(long id, RenderScript rs, Script s, int slot, int sig) { in KernelID() argument
42 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()
130 protected FieldID createFieldID(int slot, Element e) { in createFieldID() argument
131 FieldID f = mFIDs.get(slot); in createFieldID()
136 long id = mRS.nScriptFieldIDCreate(getID(mRS), slot); in createFieldID()
141 f = new FieldID(id, mRS, this, slot); in createFieldID()
142 mFIDs.put(slot, f); in createFieldID()
151 protected void invoke(int slot) { in invoke() argument
152 mRS.nScriptInvoke(getID(mRS), slot); in invoke() local
159 protected void invoke(int slot, FieldPacker v) { in invoke() argument
161 mRS.nScriptInvokeV(getID(mRS), slot, v.getData()); in invoke() local
163 mRS.nScriptInvoke(getID(mRS), slot); in invoke() local
171 protected void forEach(int slot, Allocation ain, Allocation aout, in forEach() argument
173 forEach(slot, ain, aout, v, null); in forEach()
180 protected void forEach(int slot, Allocation ain, Allocation aout, in forEach() argument
220 mRS.nScriptForEach(getID(mRS), slot, in_ids, out_id, params, limits); in forEach() local
226 protected void forEach(int slot, Allocation[] ains, Allocation aout, in forEach() argument
230 forEach(slot, ains, aout, v, null); in forEach()
236 protected void forEach(int slot, Allocation[] ains, Allocation aout, in forEach() argument
285 mRS.nScriptForEach(getID(mRS), slot, in_ids, out_id, params, limits); in forEach() local
292 protected void reduce(int slot, Allocation[] ains, Allocation aout, LaunchOptions sc) { in reduce() argument
324 mRS.nScriptReduce(getID(mRS), slot, in_ids, out_id, limits); in reduce() local
352 public void bindAllocation(Allocation va, int slot) { in bindAllocation() argument
369 mRS.nScriptBindAllocation(getID(mRS), va.getID(mRS), slot); in bindAllocation() local
371 mRS.nScriptBindAllocation(getID(mRS), 0, slot); in bindAllocation() local