Home
last modified time | relevance | path

Searched refs:func (Results 1 – 25 of 143) sorted by relevance

123456

/frameworks/rs/java/tests/RsTest/src/com/android/rs/test/
Dmath_agree.rs30 #define DECLARE_REFERENCE_SET_VEC_VEC(type, abbrev, func) \
31 volatile type func##_rand_##abbrev##1_##abbrev##1; \ typedef
32 volatile type##2 func##_rand_##abbrev##2_##abbrev##2; \
33 volatile type##3 func##_rand_##abbrev##3_##abbrev##3; \
34 volatile type##4 func##_rand_##abbrev##4_##abbrev##4;
35 #define DECLARE_REFERENCE_SET_VEC_SCL(type, abbrev, func) \
36 volatile type##2 func##_rand_##abbrev##2_##abbrev##1; \
37 volatile type##3 func##_rand_##abbrev##3_##abbrev##1; \
38 volatile type##4 func##_rand_##abbrev##4_##abbrev##1;
40 #define DECLARE_ALL_REFERENCE_SETS_VEC_VEC(func) \
[all …]
/frameworks/rs/java/tests/RSTest_CompatLib/src/com/android/rs/test/
Dmath_agree.rs30 #define DECLARE_REFERENCE_SET_VEC_VEC(type, abbrev, func) \
31 volatile type func##_rand_##abbrev##1_##abbrev##1; \ typedef
32 volatile type##2 func##_rand_##abbrev##2_##abbrev##2; \
33 volatile type##3 func##_rand_##abbrev##3_##abbrev##3; \
34 volatile type##4 func##_rand_##abbrev##4_##abbrev##4;
35 #define DECLARE_REFERENCE_SET_VEC_SCL(type, abbrev, func) \
36 volatile type##2 func##_rand_##abbrev##2_##abbrev##1; \
37 volatile type##3 func##_rand_##abbrev##3_##abbrev##1; \
38 volatile type##4 func##_rand_##abbrev##4_##abbrev##1;
40 #define DECLARE_ALL_REFERENCE_SETS_VEC_VEC(func) \
[all …]
/frameworks/rs/java/tests/RSTest_CompatLibLegacy/src/com/android/rs/test/
Dmath_agree.rs30 #define DECLARE_REFERENCE_SET_VEC_VEC(type, abbrev, func) \
31 volatile type func##_rand_##abbrev##1_##abbrev##1; \ typedef
32 volatile type##2 func##_rand_##abbrev##2_##abbrev##2; \
33 volatile type##3 func##_rand_##abbrev##3_##abbrev##3; \
34 volatile type##4 func##_rand_##abbrev##4_##abbrev##4;
35 #define DECLARE_REFERENCE_SET_VEC_SCL(type, abbrev, func) \
36 volatile type##2 func##_rand_##abbrev##2_##abbrev##1; \
37 volatile type##3 func##_rand_##abbrev##3_##abbrev##1; \
38 volatile type##4 func##_rand_##abbrev##4_##abbrev##1;
40 #define DECLARE_ALL_REFERENCE_SETS_VEC_VEC(func) \
[all …]
/frameworks/native/libs/binder/
DDebug.cpp149 void printTypeCode(uint32_t typeCode, debugPrintFunc func, void* cookie) in printTypeCode() argument
154 func ? (*func)(cookie, buffer) : defaultPrintFunc(cookie, buffer); in printTypeCode()
160 debugPrintFunc func, void* cookie) in printHexData() argument
167 if (func == NULL) func = defaultPrintFunc; in printHexData()
174 if (singleLineBytesCutoff < 0) func(cookie, "\n"); in printHexData()
175 func(cookie, "(NULL)"); in printHexData()
180 if (singleLineBytesCutoff < 0) func(cookie, "\n"); in printHexData()
181 func(cookie, "(empty)"); in printHexData()
186 if (singleLineBytesCutoff < 0) func(cookie, "\n"); in printHexData()
189 func(cookie, buf); in printHexData()
[all …]
DBpBinder.cpp45 IBinder::object_cleanup_func func) in attach() argument
50 e.func = func; in attach()
79 if (e.func != NULL) { in kill()
80 e.func(mObjects.keyAt(i), e.object, e.cleanupCookie); in kill()
287 object_cleanup_func func) in attachObject() argument
291 mObjects.attach(objectID, object, cleanupCookie, func); in attachObject()
/frameworks/rs/cpu_ref/
DrsCpuRuntimeMathFuncs.cpp26 #define IMPORT_F32_FN_F32(func) \ argument
27 extern float SC_##func##f(float v); \
28 float __attribute__((overloadable)) func(float v) {return SC_##func##f(v);}
30 #define IMPORT_F32_FN_F32_F32(func) \ argument
31 extern float SC_##func##f(float t, float v); \
32 float __attribute__((overloadable)) func(float t, float v) {return SC_##func##f(t, v);}
DrsCpuRuntimeMath.cpp33 #define EXPORT_F32_FN_F32(func) \ argument
34 float __attribute__((overloadable)) SC_##func(float v) { \
35 return func(v); \
38 #define EXPORT_F32_FN_F32_F32(func) \ argument
39 float __attribute__((overloadable)) SC_##func(float t, float v) { \
40 return func(t, v); \
DrsCpuScriptGroup2.h24 CPUClosure(const Closure* closure, RsdCpuScriptImpl* si, ExpandFuncTy func) : in CPUClosure() argument
25 mClosure(closure), mSi(si), mFunc(func) {} in CPUClosure()
/frameworks/base/native/android/
Dstorage_manager.cpp73 ObbCallback* registerObbCallback(AStorageManager_obbCallbackFunc func, void* data) { in registerObbCallback()
74 ObbCallback* cb = new ObbCallback(getNextNonce(), func, data); in registerObbCallback()
128 void mountObb(const char* rawPath, const char* key, AStorageManager_obbCallbackFunc func, in mountObb()
137 ObbCallback* cb = registerObbCallback(func, data); in mountObb()
144 …void unmountObb(const char* filename, const bool force, AStorageManager_obbCallbackFunc func, void… in unmountObb()
145 ObbCallback* cb = registerObbCallback(func, data); in unmountObb()
/frameworks/wilhelm/src/
Dassert.c30 void __assert2(const char *file, int line, const char *func, const char *failedexpr) in __assert2() argument
33 failedexpr, file, line, func); in __assert2()
/frameworks/native/opengl/libs/GLES_trace/tools/
Dgenapi.py291 self.func = self.getFunc(callsite)
335 return "%s GLTrace_%s(%s);" % (self.ret, self.func, self.arglist)
338 return TRACE_CALL_TEMPLATE(func = self.func,
373 if api.func not in funcs:
375 funcs.add(api.func)
/frameworks/native/opengl/libs/GLES_trace/src/
Dgltrace_context.cpp243 GLMessage_Function func = msg->function(); in traceGLMessage() local
244 if (func == GLMessage::eglSwapBuffers in traceGLMessage()
245 || func == GLMessage::eglCreateContext in traceGLMessage()
246 || func == GLMessage::eglMakeCurrent in traceGLMessage()
247 || func == GLMessage::glDrawArrays in traceGLMessage()
248 || func == GLMessage::glDrawElements) { in traceGLMessage()
/frameworks/native/include/binder/
DDebug.h35 debugPrintFunc func = 0, void* cookie = 0);
40 debugPrintFunc func = 0, void* cookie = 0);
DBpBinder.h55 object_cleanup_func func);
73 IBinder::object_cleanup_func func);
87 IBinder::object_cleanup_func func; member
DTextOutput.h80 TextOutput& operator<<(TextOutput& to, TextOutputManipFunc func);
161 inline TextOutput& operator<<(TextOutput& to, TextOutputManipFunc func)
163 return (*func)(to);
/frameworks/native/cmds/dumpstate/
Dutils.c62 void for_each_userid(void (*func)(int), const char *header) { in for_each_userid()
67 func(0); in for_each_userid()
79 func(userid); in for_each_userid()
120 for_each_pid_func *func = arg; in for_each_pid_helper() local
121 func(pid, cmdline); in for_each_pid_helper()
124 void for_each_pid(for_each_pid_func func, const char *header) { in for_each_pid() argument
125 __for_each_pid(for_each_pid_helper, header, func); in for_each_pid()
132 for_each_tid_func *func = arg; in for_each_tid_helper() local
141 func(pid, pid, cmdline); in for_each_tid_helper()
170 func(pid, tid, comm); in for_each_tid_helper()
[all …]
Ddumpstate.h64 void for_each_pid(for_each_pid_func func, const char *header);
67 void for_each_tid(for_each_tid_func func, const char *header);
/frameworks/native/cmds/atrace/
Datrace.cpp513 char* func = strtok(myFuncs, ","); in verifyKernelTraceFuncs() local
514 while (func) { in verifyKernelTraceFuncs()
515 String8 fancyFunc = String8::format("\n%s\n", func); in verifyKernelTraceFuncs()
517 if (!found || func[0] == '\0') { in verifyKernelTraceFuncs()
519 "to trace.\n", func); in verifyKernelTraceFuncs()
522 func = strtok(NULL, ","); in verifyKernelTraceFuncs()
553 char* func = strtok(myFuncs, ","); in setKernelTraceFuncs() local
554 while (func) { in setKernelTraceFuncs()
555 ok &= appendStr(k_ftraceFilterPath, func); in setKernelTraceFuncs()
556 func = strtok(NULL, ","); in setKernelTraceFuncs()
/frameworks/native/opengl/libagl/
Dstate.cpp226 void glStencilFunc(GLenum func, GLint /*ref*/, GLuint /*mask*/) { in glStencilFunc() argument
228 if (func < GL_NEVER || func > GL_ALWAYS) { in glStencilFunc()
249 void glAlphaFunc(GLenum func, GLclampf ref) in glAlphaFunc() argument
251 glAlphaFuncx(func, gglFloatToFixed(ref)); in glAlphaFunc()
544 void glDepthFunc(GLenum func) { in glDepthFunc() argument
546 c->rasterizer.procs.depthFunc(c, func); in glDepthFunc()
554 void glAlphaFuncx(GLenum func, GLclampx ref) { in glAlphaFuncx() argument
556 c->rasterizer.procs.alphaFuncx(c, func, ref); in glAlphaFuncx()
/frameworks/rs/cpp/
DRenderScript.cpp274 void RS::setErrorHandler(ErrorHandlerFunc_t func) { in setErrorHandler() argument
275 mErrorFunc = func; in setErrorHandler()
278 void RS::setMessageHandler(MessageHandlerFunc_t func) { in setMessageHandler() argument
279 mMessageFunc = func; in setMessageHandler()
/frameworks/base/tests/backup/
Dbackup_helper_test.cpp32 test_func func; member
90 t->result = t->func(); in main()
/frameworks/base/tools/aapt2/
DResourceValues.h389 TFunc func; member
391 ValueVisitorFunc(TFunc f) : func(f) { in ValueVisitorFunc()
395 func(value); in visit()
404 TFunc func; member
406 ConstValueVisitorFunc(TFunc f) : func(f) { in ConstValueVisitorFunc()
410 func(value); in visit()
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p10/src_gcc/
DarmVCM4P10_DeblockingChroma_unsafe_s.S29 .func armVCM4P10_DeblockingChromabSLT4_unsafe
56 .func armVCM4P10_DeblockingChromabSGE4_unsafe
/frameworks/native/cmds/servicemanager/
Dbinder.h26 void (*func)(struct binder_state *bs, void *ptr); member
73 void binder_loop(struct binder_state *bs, binder_handler func);
/frameworks/av/media/libstagefright/
DDataSource.cpp148 void DataSource::RegisterSniffer_l(SnifferFunc func) { in RegisterSniffer_l() argument
151 if (*it == func) { in RegisterSniffer_l()
156 gSniffers.push_back(func); in RegisterSniffer_l()

123456