• Home
  • Raw
  • Download

Lines Matching refs:mRS

59         long id = mRS.nScriptKernelIDCreate(getID(mRS), slot, sig);  in createKernelID()
64 k = new KernelID(id, mRS, this, slot, sig); in createKernelID()
97 long id = mRS.nScriptInvokeIDCreate(getID(mRS), slot); in createInvokeID()
102 i = new InvokeID(id, mRS, this, slot); in createInvokeID()
136 long id = mRS.nScriptFieldIDCreate(getID(mRS), slot); in createFieldID()
141 f = new FieldID(id, mRS, this, slot); in createFieldID()
152 mRS.nScriptInvoke(getID(mRS), slot); in invoke()
161 mRS.nScriptInvokeV(getID(mRS), slot, v.getData()); in invoke()
163 mRS.nScriptInvoke(getID(mRS), slot); in invoke()
183 mRS.validate(); in forEach()
184 mRS.validateObject(ain); in forEach()
185 mRS.validateObject(aout); in forEach()
195 in_ids[0] = ain.getID(mRS); in forEach()
200 out_id = aout.getID(mRS); in forEach()
220 mRS.nScriptForEach(getID(mRS), slot, in_ids, out_id, params, limits); in forEach()
240 mRS.validate(); in forEach()
243 mRS.validateObject(ain); in forEach()
246 mRS.validateObject(aout); in forEach()
257 in_ids[index] = ains[index].getID(mRS); in forEach()
265 out_id = aout.getID(mRS); in forEach()
285 mRS.nScriptForEach(getID(mRS), slot, in_ids, out_id, params, limits); in forEach()
293 mRS.validate(); in reduce()
303 mRS.validateObject(ain); in reduce()
308 in_ids[index] = ains[index].getID(mRS); in reduce()
310 long out_id = aout.getID(mRS); in reduce()
324 mRS.nScriptReduce(getID(mRS), slot, in_ids, out_id, limits); in reduce()
353 mRS.validate(); in bindAllocation()
354 mRS.validateObject(va); in bindAllocation()
357 android.content.Context context = mRS.getApplicationContext(); in bindAllocation()
369 mRS.nScriptBindAllocation(getID(mRS), va.getID(mRS), slot); in bindAllocation()
371 mRS.nScriptBindAllocation(getID(mRS), 0, slot); in bindAllocation()
380 mRS.nScriptSetVarF(getID(mRS), index, v); in setVar()
383 return mRS.nScriptGetVarF(getID(mRS), index); in getVarF()
391 mRS.nScriptSetVarD(getID(mRS), index, v); in setVar()
394 return mRS.nScriptGetVarD(getID(mRS), index); in getVarD()
402 mRS.nScriptSetVarI(getID(mRS), index, v); in setVar()
405 return mRS.nScriptGetVarI(getID(mRS), index); in getVarI()
414 mRS.nScriptSetVarJ(getID(mRS), index, v); in setVar()
417 return mRS.nScriptGetVarJ(getID(mRS), index); in getVarJ()
426 mRS.nScriptSetVarI(getID(mRS), index, v ? 1 : 0); in setVar()
429 return mRS.nScriptGetVarI(getID(mRS), index) > 0 ? true : false; in getVarB()
437 mRS.validate(); in setVar()
438 mRS.validateObject(o); in setVar()
439 mRS.nScriptSetVarObj(getID(mRS), index, (o == null) ? 0 : o.getID(mRS)); in setVar()
447 mRS.nScriptSetVarV(getID(mRS), index, v.getData()); in setVar()
455 mRS.nScriptSetVarVE(getID(mRS), index, v.getData(), e.getID(mRS), dims); in setVar()
463 mRS.nScriptGetVarV(getID(mRS), index, v.getData()); in getVarV()
467 mRS.validate(); in setTimeZone()
469 mRS.nScriptSetTimeZone(getID(mRS), timeZone.getBytes("UTF-8")); in setTimeZone()
480 RenderScript mRS; field in Script.Builder
483 mRS = rs; in Builder()