Searched defs:ain (Results 51 - 54 of 54) sorted by relevance

123

/frameworks/support/v8/renderscript/jni/
H A Dandroid_renderscript_RenderScript.cpp785 jint script, jint slot, jint ain, jint aout)
788 rsScriptForEach(con, (RsScript)script, slot, (RsAllocation)ain, (RsAllocation)aout, NULL, 0, NULL, 0);
792 jint script, jint slot, jint ain, jint aout, jbyteArray params)
797 rsScriptForEach(con, (RsScript)script, slot, (RsAllocation)ain, (RsAllocation)aout, ptr, len, NULL, 0);
803 jint script, jint slot, jint ain, jint aout,
818 rsScriptForEach(con, (RsScript)script, slot, (RsAllocation)ain, (RsAllocation)aout, NULL, 0, &sc, sizeof(sc));
823 jint script, jint slot, jint ain, jint aout,
840 rsScriptForEach(con, (RsScript)script, slot, (RsAllocation)ain, (RsAllocation)aout, ptr, len, &sc, sizeof(sc));
784 nScriptForEach(JNIEnv *_env, jobject _this, RsContext con, jint script, jint slot, jint ain, jint aout) argument
791 nScriptForEachV(JNIEnv *_env, jobject _this, RsContext con, jint script, jint slot, jint ain, jint aout, jbyteArray params) argument
802 nScriptForEachClipped(JNIEnv *_env, jobject _this, RsContext con, jint script, jint slot, jint ain, jint aout, jint xstart, jint xend, jint ystart, jint yend, jint zstart, jint zend) argument
822 nScriptForEachClippedV(JNIEnv *_env, jobject _this, RsContext con, jint script, jint slot, jint ain, jint aout, jbyteArray params, jint xstart, jint xend, jint ystart, jint yend, jint zstart, jint zend) argument
/frameworks/base/rs/jni/
H A Dandroid_renderscript_RenderScript.cpp1095 jlong script, jint slot, jlong ain, jlong aout)
1098 rsScriptForEach((RsContext)con, (RsScript)script, slot, (RsAllocation)ain, (RsAllocation)aout, NULL, 0, NULL, 0);
1102 jlong script, jint slot, jlong ain, jlong aout, jbyteArray params)
1107 rsScriptForEach((RsContext)con, (RsScript)script, slot, (RsAllocation)ain, (RsAllocation)aout, ptr, len, NULL, 0);
1113 jlong script, jint slot, jlong ain, jlong aout,
1128 rsScriptForEach((RsContext)con, (RsScript)script, slot, (RsAllocation)ain, (RsAllocation)aout, NULL, 0, &sc, sizeof(sc));
1133 jlong script, jint slot, jlong ain, jlong aout,
1150 rsScriptForEach((RsContext)con, (RsScript)script, slot, (RsAllocation)ain, (RsAllocation)aout, ptr, len, &sc, sizeof(sc));
1094 nScriptForEach(JNIEnv *_env, jobject _this, jlong con, jlong script, jint slot, jlong ain, jlong aout) argument
1101 nScriptForEachV(JNIEnv *_env, jobject _this, jlong con, jlong script, jint slot, jlong ain, jlong aout, jbyteArray params) argument
1112 nScriptForEachClipped(JNIEnv *_env, jobject _this, jlong con, jlong script, jint slot, jlong ain, jlong aout, jint xstart, jint xend, jint ystart, jint yend, jint zstart, jint zend) argument
1132 nScriptForEachClippedV(JNIEnv *_env, jobject _this, jlong con, jlong script, jint slot, jlong ain, jlong aout, jbyteArray params, jint xstart, jint xend, jint ystart, jint yend, jint zstart, jint zend) argument
/frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
H A DRenderScript.java541 native void rsnScriptForEach(int con, int id, int slot, int ain, int aout, byte[] params); argument
542 native void rsnScriptForEach(int con, int id, int slot, int ain, int aout); argument
543 native void rsnScriptForEachClipped(int con, int id, int slot, int ain, int aout, byte[] params, argument
545 native void rsnScriptForEachClipped(int con, int id, int slot, int ain, int aout, argument
547 synchronized void nScriptForEach(int id, int slot, int ain, int aout, byte[] params) { argument
550 rsnScriptForEach(mContext, id, slot, ain, aout);
552 rsnScriptForEach(mContext, id, slot, ain, aout, params);
556 synchronized void nScriptForEachClipped(int id, int slot, int ain, int aout, byte[] params, argument
560 rsnScriptForEachClipped(mContext, id, slot, ain, aout, xstart, xend, ystart, yend, zstart, zend);
562 rsnScriptForEachClipped(mContext, id, slot, ain, aou
[all...]
/frameworks/base/rs/java/android/renderscript/
H A DRenderScript.java608 native void rsnScriptForEach(long con, long id, int slot, long ain, long aout, byte[] params); argument
609 native void rsnScriptForEach(long con, long id, int slot, long ain, long aout); argument
610 native void rsnScriptForEachClipped(long con, long id, int slot, long ain, long aout, byte[] params, argument
612 native void rsnScriptForEachClipped(long con, long id, int slot, long ain, long aout, argument
614 synchronized void nScriptForEach(long id, int slot, long ain, long aout, byte[] params) { argument
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, argument
627 rsnScriptForEachClipped(mContext, id, slot, ain, aout, xstart, xend, ystart, yend, zstart, zend);
629 rsnScriptForEachClipped(mContext, id, slot, ain, aou
[all...]

Completed in 1791 milliseconds

123