Lines Matching defs:val

705     native void rsnScriptSetVarI(long con, long id, int slot, int val, boolean mUseInc);
706 synchronized void nScriptSetVarI(long id, int slot, int val, boolean mUseInc) {
712 rsnScriptSetVarI(curCon, id, slot, val, mUseInc);
714 native void rsnScriptSetVarJ(long con, long id, int slot, long val, boolean mUseInc);
715 synchronized void nScriptSetVarJ(long id, int slot, long val, boolean mUseInc) {
721 rsnScriptSetVarJ(curCon, id, slot, val, mUseInc);
723 native void rsnScriptSetVarF(long con, long id, int slot, float val, boolean mUseInc);
724 synchronized void nScriptSetVarF(long id, int slot, float val, boolean mUseInc) {
730 rsnScriptSetVarF(curCon, id, slot, val, mUseInc);
732 native void rsnScriptSetVarD(long con, long id, int slot, double val, boolean mUseInc);
733 synchronized void nScriptSetVarD(long id, int slot, double val, boolean mUseInc) {
739 rsnScriptSetVarD(curCon, id, slot, val, mUseInc);
741 native void rsnScriptSetVarV(long con, long id, int slot, byte[] val, boolean mUseInc);
742 synchronized void nScriptSetVarV(long id, int slot, byte[] val, boolean mUseInc) {
748 rsnScriptSetVarV(curCon, id, slot, val, mUseInc);
750 native void rsnScriptSetVarVE(long con, long id, int slot, byte[] val,
752 synchronized void nScriptSetVarVE(long id, int slot, byte[] val,
759 rsnScriptSetVarVE(curCon, id, slot, val, e, dims, mUseInc);
761 native void rsnScriptSetVarObj(long con, long id, int slot, long val, boolean mUseInc);
762 synchronized void nScriptSetVarObj(long id, int slot, long val, boolean mUseInc) {
768 rsnScriptSetVarObj(curCon, id, slot, val, mUseInc);