Lines Matching refs:slot

269     native void rsnContextBindSampler(long con, int sampler, int slot);
270 synchronized void nContextBindSampler(int sampler, int slot) {
272 rsnContextBindSampler(mContext, sampler, slot);
593 native void rsnScriptBindAllocation(long con, long script, long alloc, int slot);
594 synchronized void nScriptBindAllocation(long script, long alloc, int slot) {
596 rsnScriptBindAllocation(mContext, script, alloc, slot);
603 native void rsnScriptInvoke(long con, long id, int slot);
604 synchronized void nScriptInvoke(long id, int slot) {
606 rsnScriptInvoke(mContext, id, slot);
608 native void rsnScriptForEach(long con, long id, int slot, long ain, long aout, byte[] params);
609 native void rsnScriptForEach(long con, long id, int slot, long ain, long aout);
610 native void rsnScriptForEachClipped(long con, long id, int slot, long ain, long aout, byte[] params,
612 native void rsnScriptForEachClipped(long con, long id, int slot, long ain, long aout,
614 synchronized void nScriptForEach(long id, int slot, long ain, long aout, byte[] params) {
617 rsnScriptForEach(mContext, id, slot, ain, aout);
619 rsnScriptForEach(mContext, id, slot, ain, aout, params);
623 synchronized void nScriptForEachClipped(long id, int slot, long ain, long aout, byte[] params,
627 rsnScriptForEachClipped(mContext, id, slot, ain, aout, xstart, xend, ystart, yend, zstart, zend);
629 rsnScriptForEachClipped(mContext, id, slot, ain, aout, params, xstart, xend, ystart, yend, zstart, zend);
639 native void rsnScriptForEachMultiClipped(long con, long id, int slot, long[] ains, long aout, byte[] params,
642 native void rsnScriptForEachMultiClipped(long con, long id, int slot, long[] ains, long aout,
646 synchronized void nScriptForEachMultiClipped(long id, int slot, long[] ains, long aout, byte[] params,
650 rsnScriptForEachMultiClipped(mContext, id, slot, ains, aout, xstart, xend, ystart, yend, zstart, zend);
652 rsnScriptForEachMultiClipped(mContext, id, slot, ains, aout, params, xstart, xend, ystart, yend, zstart, zend);
656 native void rsnScriptInvokeV(long con, long id, int slot, byte[] params);
657 synchronized void nScriptInvokeV(long id, int slot, byte[] params) {
659 rsnScriptInvokeV(mContext, id, slot, params);
662 native void rsnScriptSetVarI(long con, long id, int slot, int val);
663 synchronized void nScriptSetVarI(long id, int slot, int val) {
665 rsnScriptSetVarI(mContext, id, slot, val);
667 native int rsnScriptGetVarI(long con, long id, int slot);
668 synchronized int nScriptGetVarI(long id, int slot) {
670 return rsnScriptGetVarI(mContext, id, slot);
673 native void rsnScriptSetVarJ(long con, long id, int slot, long val);
674 synchronized void nScriptSetVarJ(long id, int slot, long val) {
676 rsnScriptSetVarJ(mContext, id, slot, val);
678 native long rsnScriptGetVarJ(long con, long id, int slot);
679 synchronized long nScriptGetVarJ(long id, int slot) {
681 return rsnScriptGetVarJ(mContext, id, slot);
684 native void rsnScriptSetVarF(long con, long id, int slot, float val);
685 synchronized void nScriptSetVarF(long id, int slot, float val) {
687 rsnScriptSetVarF(mContext, id, slot, val);
689 native float rsnScriptGetVarF(long con, long id, int slot);
690 synchronized float nScriptGetVarF(long id, int slot) {
692 return rsnScriptGetVarF(mContext, id, slot);
694 native void rsnScriptSetVarD(long con, long id, int slot, double val);
695 synchronized void nScriptSetVarD(long id, int slot, double val) {
697 rsnScriptSetVarD(mContext, id, slot, val);
699 native double rsnScriptGetVarD(long con, long id, int slot);
700 synchronized double nScriptGetVarD(long id, int slot) {
702 return rsnScriptGetVarD(mContext, id, slot);
704 native void rsnScriptSetVarV(long con, long id, int slot, byte[] val);
705 synchronized void nScriptSetVarV(long id, int slot, byte[] val) {
707 rsnScriptSetVarV(mContext, id, slot, val);
709 native void rsnScriptGetVarV(long con, long id, int slot, byte[] val);
710 synchronized void nScriptGetVarV(long id, int slot, byte[] val) {
712 rsnScriptGetVarV(mContext, id, slot, val);
714 native void rsnScriptSetVarVE(long con, long id, int slot, byte[] val,
716 synchronized void nScriptSetVarVE(long id, int slot, byte[] val,
719 rsnScriptSetVarVE(mContext, id, slot, val, e, dims);
721 native void rsnScriptSetVarObj(long con, long id, int slot, long val);
722 synchronized void nScriptSetVarObj(long id, int slot, long val) {
724 rsnScriptSetVarObj(mContext, id, slot, val);
740 native long rsnScriptKernelIDCreate(long con, long sid, int slot, int sig);
741 synchronized long nScriptKernelIDCreate(long sid, int slot, int sig) {
743 return rsnScriptKernelIDCreate(mContext, sid, slot, sig);
746 native long rsnScriptFieldIDCreate(long con, long sid, int slot);
747 synchronized long nScriptFieldIDCreate(long sid, int slot) {
749 return rsnScriptFieldIDCreate(mContext, sid, slot);
801 native void rsnProgramBindConstants(long con, long pv, int slot, long mID);
802 synchronized void nProgramBindConstants(long pv, int slot, long mID) {
804 rsnProgramBindConstants(mContext, pv, slot, mID);
806 native void rsnProgramBindTexture(long con, long vpf, int slot, long a);
807 synchronized void nProgramBindTexture(long vpf, int slot, long a) {
809 rsnProgramBindTexture(mContext, vpf, slot, a);
811 native void rsnProgramBindSampler(long con, long vpf, int slot, long s);
812 synchronized void nProgramBindSampler(long vpf, int slot, long s) {
814 rsnProgramBindSampler(mContext, vpf, slot, s);