Searched refs:func (Results 26 - 50 of 78) sorted by relevance

1234

/frameworks/native/opengl/tools/glgen/specs/gles11/
H A DGLES10.spec2 void glAlphaFunc ( GLenum func, GLclampf ref )
3 void glAlphaFuncx ( GLenum func, GLclampx ref )
23 void glDepthFunc ( GLenum func )
91 void glStencilFunc ( GLenum func, GLint ref, GLuint mask )
H A DGLES20.spec35 void glDepthFunc ( GLenum func )
101 void glStencilFunc ( GLenum func, GLint ref, GLuint mask )
102 void glStencilFuncSeparate ( GLenum face, GLenum func, GLint ref, GLuint mask )
H A DGLES11Ext.spec14 void glAlphaFuncxOES ( GLenum func, GLclampx ref )
/frameworks/native/services/surfaceflinger/RenderEngine/
H A DProgramCache.cpp63 friend inline Formatter& operator<<(Formatter& to, FormaterManipFunc func) { argument
64 return (*func)(to);
/frameworks/base/rs/java/android/renderscript/
H A DRenderScript.java966 native void rsnScriptIntrinsicBLAS_Single(long con, long id, int func, int TransA, argument
970 synchronized void nScriptIntrinsicBLAS_Single(long id, int func, int TransA, argument
975 rsnScriptIntrinsicBLAS_Single(mContext, id, func, TransA, TransB, Side, Uplo, Diag, M, N, K, alpha, A, B, beta, C, incX, incY, KL, KU);
978 native void rsnScriptIntrinsicBLAS_Double(long con, long id, int func, int TransA, argument
982 synchronized void nScriptIntrinsicBLAS_Double(long id, int func, int TransA, argument
987 rsnScriptIntrinsicBLAS_Double(mContext, id, func, TransA, TransB, Side, Uplo, Diag, M, N, K, alpha, A, B, beta, C, incX, incY, KL, KU);
990 native void rsnScriptIntrinsicBLAS_Complex(long con, long id, int func, int TransA, argument
994 synchronized void nScriptIntrinsicBLAS_Complex(long id, int func, int TransA, argument
999 rsnScriptIntrinsicBLAS_Complex(mContext, id, func, TransA, TransB, Side, Uplo, Diag, M, N, K, alphaX, alphaY, A, B, betaX, betaY, C, incX, incY, KL, KU);
1002 native void rsnScriptIntrinsicBLAS_Z(long con, long id, int func, in argument
1006 nScriptIntrinsicBLAS_Z(long id, int func, int TransA, int TransB, int Side, int Uplo, int Diag, int M, int N, int K, double alphaX, double alphaY, long A, long B, double betaX, double betaY, long C, int incX, int incY, int KL, int KU) argument
[all...]
/frameworks/compile/libbcc/lib/Renderscript/
H A DRSScriptGroupFusion.cpp44 Function* func = newModule->getFunction(functionName); local
47 newModule->materialize(func);
48 return func;
/frameworks/rs/cpu_ref/
H A DrsCpuScriptGroup.cpp60 ScriptGroupRootFunc_t func; local
61 func = (ScriptGroupRootFunc_t)sl->fnPtrs[ct];
116 func(kinfo, xstart, xend, ostep);
/frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
H A DRenderScript.java916 native void rsnScriptIntrinsicBLAS_Single(long con, long incCon, long id, int func, int TransA, argument
920 synchronized void nScriptIntrinsicBLAS_Single(long id, int func, int TransA, argument
925 rsnScriptIntrinsicBLAS_Single(mContext, mIncCon, id, func, TransA, TransB, Side, Uplo, Diag, M, N, K, alpha, A, B, beta, C, incX, incY, KL, KU, mUseInc);
928 native void rsnScriptIntrinsicBLAS_Double(long con, long incCon, long id, int func, int TransA, argument
932 synchronized void nScriptIntrinsicBLAS_Double(long id, int func, int TransA, argument
937 rsnScriptIntrinsicBLAS_Double(mContext, mIncCon, id, func, TransA, TransB, Side, Uplo, Diag, M, N, K, alpha, A, B, beta, C, incX, incY, KL, KU, mUseInc);
940 native void rsnScriptIntrinsicBLAS_Complex(long con, long incCon, long id, int func, int TransA, argument
944 synchronized void nScriptIntrinsicBLAS_Complex(long id, int func, int TransA, argument
949 rsnScriptIntrinsicBLAS_Complex(mContext, mIncCon, id, func, TransA, TransB, Side, Uplo, Diag, M, N, K, alphaX, alphaY, A, B, betaX, betaY, C, incX, incY, KL, KU, mUseInc);
952 native void rsnScriptIntrinsicBLAS_Z(long con, long incCon, long id, int func, in argument
956 nScriptIntrinsicBLAS_Z(long id, int func, int TransA, int TransB, int Side, int Uplo, int Diag, int M, int N, int K, double alphaX, double alphaY, long A, long B, double betaX, double betaY, long C, int incX, int incY, int KL, int KU, boolean mUseInc) argument
[all...]
/frameworks/av/include/media/stagefright/
H A DDataSource.h138 static void RegisterSniffer_l(SnifferFunc func);
/frameworks/base/opengl/java/android/opengl/
H A DGLES10.java279 // C function void glAlphaFunc ( GLenum func, GLclampf ref )
282 int func,
286 // C function void glAlphaFuncx ( GLenum func, GLclampx ref )
289 int func,
488 // C function void glDepthFunc ( GLenum func )
491 int func
1114 // C function void glStencilFunc ( GLenum func, GLint ref, GLuint mask )
1117 int func,
281 glAlphaFunc( int func, float ref ) argument
288 glAlphaFuncx( int func, int ref ) argument
1116 glStencilFunc( int func, int ref, int mask ) argument
H A DGLErrorWrapper.java76 public void glAlphaFunc(int func, float ref) { argument
78 mgl.glAlphaFunc(func, ref);
82 public void glAlphaFuncx(int func, int ref) { argument
84 mgl.glAlphaFuncx(func, ref);
219 public void glDepthFunc(int func) { argument
221 mgl.glDepthFunc(func);
718 public void glStencilFunc(int func, int ref, int mask) { argument
720 mgl.glStencilFunc(func, ref, mask);
/frameworks/base/opengl/java/javax/microedition/khronos/opengles/
H A DGL10.java266 int func,
271 int func,
408 int func
850 int func,
265 glAlphaFunc( int func, float ref ) argument
270 glAlphaFuncx( int func, int ref ) argument
849 glStencilFunc( int func, int ref, int mask ) argument
/frameworks/base/libs/hwui/debug/
H A Dnullgles.cpp196 void glDepthFunc(GLenum func) {} argument
225 void glStencilFunc(GLenum func, GLint ref, GLuint mask) {} argument
226 void glStencilFuncSeparate(GLenum face, GLenum func, GLint ref, GLuint mask) {} argument
/frameworks/av/media/libstagefright/wifi-display/source/
H A DWifiDisplaySource.h210 int32_t sessionID, int32_t cseq, HandleRTSPResponseFunc func);
H A DWifiDisplaySource.cpp562 int32_t sessionID, int32_t cseq, HandleRTSPResponseFunc func) {
566 mResponseHandlers.add(id, func);
1082 HandleRTSPResponseFunc func = mResponseHandlers.valueAt(index); local
1085 status_t err = (this->*func)(sessionID, data);
561 registerResponseHandler( int32_t sessionID, int32_t cseq, HandleRTSPResponseFunc func) argument
/frameworks/base/libs/hwui/renderthread/
H A DCanvasContext.cpp844 t->func();
849 void CanvasContext::enqueueFrameWork(std::function<void()>&& func) { argument
854 task->func = func;
/frameworks/base/opengl/java/com/google/android/gles_jni/
H A DGLImpl.java93 // C function void glAlphaFunc ( GLenum func, GLclampf ref )
96 int func,
100 // C function void glAlphaFuncx ( GLenum func, GLclampx ref )
103 int func,
302 // C function void glDepthFunc ( GLenum func )
305 int func
939 // C function void glStencilFunc ( GLenum func, GLint ref, GLuint mask )
942 int func,
95 glAlphaFunc( int func, float ref ) argument
102 glAlphaFuncx( int func, int ref ) argument
941 glStencilFunc( int func, int ref, int mask ) argument
/frameworks/base/services/usb/java/com/android/server/usb/
H A DUsbDeviceManager.java913 String func = SystemProperties.get(USB_PERSISTENT_CONFIG_PROPERTY,
915 if (UsbManager.USB_FUNCTION_NONE.equals(func)) {
916 func = UsbManager.USB_FUNCTION_MTP;
918 return func;
/frameworks/native/opengl/include/GLES/
H A Dgl.h593 GL_API void GL_APIENTRY glAlphaFunc (GLenum func, GLclampf ref);
634 GL_API void GL_APIENTRY glAlphaFuncx (GLenum func, GLclampx ref);
657 GL_API void GL_APIENTRY glDepthFunc (GLenum func);
722 GL_API void GL_APIENTRY glStencilFunc (GLenum func, GLint ref, GLuint mask);
/frameworks/native/opengl/tests/angeles/include/GLES/
H A Dgl.h474 GLAPI void APIENTRY glAlphaFunc (GLenum func, GLclampf ref);
475 GLAPI void APIENTRY glAlphaFuncx (GLenum func, GLclampx ref);
495 GLAPI void APIENTRY glDepthFunc (GLenum func);
563 GLAPI void APIENTRY glStencilFunc (GLenum func, GLint ref, GLuint mask);
/frameworks/rs/
H A DrsDefines.h454 RsBlasFunction func; member in struct:__anon1686
/frameworks/native/opengl/include/GLES2/
H A Dgl2.h419 typedef void (GL_APIENTRYP PFNGLDEPTHFUNCPROC) (GLenum func);
484 typedef void (GL_APIENTRYP PFNGLSTENCILFUNCPROC) (GLenum func, GLint ref, GLuint mask);
485 typedef void (GL_APIENTRYP PFNGLSTENCILFUNCSEPARATEPROC) (GLenum face, GLenum func, GLint ref, GLuint mask);
562 GL_APICALL void GL_APIENTRY glDepthFunc (GLenum func);
627 GL_APICALL void GL_APIENTRY glStencilFunc (GLenum func, GLint ref, GLuint mask);
628 GL_APICALL void GL_APIENTRY glStencilFuncSeparate (GLenum face, GLenum func, GLint ref, GLuint mask);
/frameworks/base/rs/jni/
H A Dandroid_renderscript_RenderScript.cpp607 nScriptIntrinsicBLAS_Single(JNIEnv *_env, jobject _this, jlong con, jlong id, jint func, jint TransA, argument
613 call.func = (RsBlasFunction)func;
640 nScriptIntrinsicBLAS_Double(JNIEnv *_env, jobject _this, jlong con, jlong id, jint func, jint TransA, argument
646 call.func = (RsBlasFunction)func;
673 nScriptIntrinsicBLAS_Complex(JNIEnv *_env, jobject _this, jlong con, jlong id, jint func, jint TransA, argument
679 call.func = (RsBlasFunction)func;
708 nScriptIntrinsicBLAS_Z(JNIEnv *_env, jobject _this, jlong con, jlong id, jint func, jin argument
[all...]
/frameworks/support/v8/renderscript/jni/
H A Dandroid_renderscript_RenderScript.cpp583 nScriptIntrinsicBLAS_Single(JNIEnv *_env, jobject _this, jlong con, jlong incCon, jlong id, jint func, jint TransA, argument
589 call.func = (RsBlasFunction)func;
623 nScriptIntrinsicBLAS_Double(JNIEnv *_env, jobject _this, jlong con, jlong incCon, jlong id, jint func, jint TransA, argument
629 call.func = (RsBlasFunction)func;
663 nScriptIntrinsicBLAS_Complex(JNIEnv *_env, jobject _this, jlong con, jlong incCon, jlong id, jint func, jint TransA, argument
669 call.func = (RsBlasFunction)func;
706 nScriptIntrinsicBLAS_Z(JNIEnv *_env, jobject _this, jlong con, jlong incCon, jlong id, jint func, jin argument
[all...]
/frameworks/native/cmds/installd/
H A Dinstalld.cpp429 int (*func)(char **arg, char reply[REPLY_MAX]); member in struct:android::installd::cmdinfo
544 ret = cmds[i].func(arg + 1, reply);

Completed in 761 milliseconds

1234