Home | History | Annotate | Download | only in renderscript

Lines Matching refs:mRS

57         int id = mRS.nScriptKernelIDCreate(getID(mRS), slot, sig);
62 k = new KernelID(id, mRS, this, slot, sig);
95 int id = mRS.nScriptFieldIDCreate(getID(mRS), slot);
100 f = new FieldID(id, mRS, this, slot);
111 mRS.nScriptInvoke(getID(mRS), slot);
120 mRS.nScriptInvokeV(getID(mRS), slot, v.getData());
122 mRS.nScriptInvoke(getID(mRS), slot);
137 in_id = ain.getID(mRS);
141 out_id = aout.getID(mRS);
147 mRS.nScriptForEach(getID(mRS), slot, in_id, out_id, params);
166 in_id = ain.getID(mRS);
170 out_id = aout.getID(mRS);
176 mRS.nScriptForEachClipped(getID(mRS), slot, in_id, out_id, params, sc.xstart, sc.xend, sc.ystart, sc.yend, sc.zstart, sc.zend);
189 mRS.validate();
191 mRS.nScriptBindAllocation(getID(mRS), va.getID(mRS), slot);
193 mRS.nScriptBindAllocation(getID(mRS), 0, slot);
202 mRS.nScriptSetVarF(getID(mRS), index, v);
205 return mRS.nScriptGetVarF(getID(mRS), index);
213 mRS.nScriptSetVarD(getID(mRS), index, v);
216 return mRS.nScriptGetVarD(getID(mRS), index);
224 mRS.nScriptSetVarI(getID(mRS), index, v);
227 return mRS.nScriptGetVarI(getID(mRS), index);
236 mRS.nScriptSetVarJ(getID(mRS), index, v);
239 return mRS.nScriptGetVarJ(getID(mRS), index);
248 mRS.nScriptSetVarI(getID(mRS), index, v ? 1 : 0);
251 return mRS.nScriptGetVarI(getID(mRS), index) > 0 ? true : false;
259 mRS.nScriptSetVarObj(getID(mRS), index, (o == null) ? 0 : o.getID(mRS));
267 mRS.nScriptSetVarV(getID(mRS), index, v.getData());
275 mRS.nScriptSetVarVE(getID(mRS), index, v.getData(), e.getID(mRS), dims);
283 mRS.nScriptGetVarV(getID(mRS), index, v.getData());
287 mRS.validate();
289 mRS.nScriptSetTimeZone(getID(mRS), timeZone.getBytes("UTF-8"));
300 RenderScript mRS;
303 mRS = rs;