Searched refs:func (Results 1 - 25 of 97) sorted by relevance

1234

/frameworks/wilhelm/src/
H A Dassert.c30 void __assert2(const char *file, int line, const char *func, const char *failedexpr) argument
33 failedexpr, file, line, func);
/frameworks/native/include/binder/
H A DDebug.h35 debugPrintFunc func = 0, void* cookie = 0);
40 debugPrintFunc func = 0, void* cookie = 0);
H A DBpBinder.h55 object_cleanup_func func);
73 IBinder::object_cleanup_func func);
87 IBinder::object_cleanup_func func; member in struct:android::BpBinder::ObjectManager::entry_t
H A DTextOutput.h80 TextOutput& operator<<(TextOutput& to, TextOutputManipFunc func);
161 inline TextOutput& operator<<(TextOutput& to, TextOutputManipFunc func) argument
163 return (*func)(to);
/frameworks/native/cmds/dumpstate/
H A Ddumpstate.h53 void for_each_pid(for_each_pid_func func, const char *header);
56 void for_each_tid(for_each_tid_func func, const char *header);
59 void for_each_userid(for_each_userid_func func, const char *header);
H A Dutils.c56 void for_each_userid(void (*func)(int), const char *header) { argument
61 func(0);
73 func(userid);
114 for_each_pid_func *func = arg; local
115 func(pid, cmdline);
118 void for_each_pid(for_each_pid_func func, const char *header) { argument
119 __for_each_pid(for_each_pid_helper, header, func);
126 for_each_tid_func *func = arg; local
135 func(pid, pid, cmdline);
164 func(pi
170 for_each_tid(for_each_tid_func func, const char *header) argument
[all...]
/frameworks/rs/cpu_ref/
H A DrsCpuRuntimeMathFuncs.cpp27 #define IMPORT_F32_FN_F32(func) \
28 extern float SC_##func##f(float v); \
29 float __attribute__((overloadable)) func(float v) {return SC_##func##f(v);}
31 #define IMPORT_F32_FN_F32_F32(func) \
32 extern float SC_##func##f(float t, float v); \
33 float __attribute__((overloadable)) func(float t, float v) {return SC_##func##f(t, v);}
H A DrsCpuRuntimeMath.cpp33 #define EXPORT_F32_FN_F32(func) \
34 float __attribute__((overloadable)) SC_##func(float v) { \
35 return func(v); \
38 #define EXPORT_F32_FN_F32_F32(func) \
39 float __attribute__((overloadable)) SC_##func(float t, float v) { \
40 return func(t, v); \
/frameworks/base/tests/backup/
H A Dbackup_helper_test.cpp32 test_func func; member in struct:Test
90 t->result = t->func();
/frameworks/av/media/libstagefright/codecs/aacenc/basic_op/
H A Dtypedefs.h168 #define ADD_PREFIX(func) LINK0(PREFIX, _, func)
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p10/src_gcc/
H A DarmVCM4P10_DeblockingChroma_unsafe_s.S29 .func armVCM4P10_DeblockingChromabSLT4_unsafe
56 .func armVCM4P10_DeblockingChromabSGE4_unsafe
H A DarmVCM4P10_UnpackBlock4x4_s.S29 .func armVCM4P10_UnpackBlock4x4
H A DarmVCM4P10_InterpolateLuma_Align_unsafe_s.S29 .func armVCM4P10_InterpolateLuma_HorAlign9x_unsafe
89 .func armVCM4P10_InterpolateLuma_VerAlign4x_unsafe
H A DarmVCM4P10_InterpolateLuma_DiagCopy_unsafe_s.S29 .func armVCM4P10_InterpolateLuma_HorDiagCopy_unsafe
63 .func armVCM4P10_InterpolateLuma_VerDiagCopy_unsafe
H A DomxVCM4P10_TransformDequantLumaDCFromPair_s.S29 .func armVCM4P10_InvTransformDequantLumaDC4x4
84 .func omxVCM4P10_TransformDequantLumaDCFromPair
/frameworks/native/cmds/servicemanager/
H A Dbinder.h26 void (*func)(struct binder_state *bs, void *ptr); member in struct:binder_death
73 void binder_loop(struct binder_state *bs, binder_handler func);
/frameworks/base/native/android/
H A Dstorage_manager.cpp73 ObbCallback* registerObbCallback(AStorageManager_obbCallbackFunc func, void* data) { argument
74 ObbCallback* cb = new ObbCallback(getNextNonce(), func, data);
128 void mountObb(const char* rawPath, const char* key, AStorageManager_obbCallbackFunc func, argument
137 ObbCallback* cb = registerObbCallback(func, data);
144 void unmountObb(const char* filename, const bool force, AStorageManager_obbCallbackFunc func, void* data) { argument
145 ObbCallback* cb = registerObbCallback(func, data);
/frameworks/native/opengl/libs/GLES_trace/src/
H A Dgltrace_context.cpp243 GLMessage_Function func = msg->function(); local
244 if (func == GLMessage::eglSwapBuffers
245 || func == GLMessage::eglCreateContext
246 || func == GLMessage::eglMakeCurrent
247 || func == GLMessage::glDrawArrays
248 || func == GLMessage::glDrawElements) {
/frameworks/native/opengl/libs/GLES_trace/tools/
H A Dgenapi.py156 """$!retType!$ GLTrace_$!func!$($!inputArgList!$) {
160 glmsg.set_function(GLMessage::$!func!$);
290 # so self.func is reassigned based on what is there in the call site
291 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)
H A Dtestgenapi.py33 self.assertEqual(api.func, "glCopyTexImage2D")
/frameworks/native/libs/binder/
H A DBpBinder.cpp45 IBinder::object_cleanup_func func)
50 e.func = func;
79 if (e.func != NULL) {
80 e.func(mObjects.keyAt(i), e.object, e.cleanupCookie);
288 object_cleanup_func func)
292 mObjects.attach(objectID, object, cleanupCookie, func);
43 attach( const void* objectID, void* object, void* cleanupCookie, IBinder::object_cleanup_func func) argument
286 attachObject( const void* objectID, void* object, void* cleanupCookie, object_cleanup_func func) argument
/frameworks/compile/libbcc/lib/Renderscript/
H A DRSExecutable.cpp89 // ALOGW("RS export func at entry #%u named %s cannot be found in the result"
178 void *func = mLoader->getSymbolAddress(func_name); local
181 if (func == NULL) {
186 reinterpret_cast<const uint8_t *>(func), func_size);
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/arm_neon_asm_gcc/
H A Dasm_common.S34 .func \name
/frameworks/native/cmds/atrace/
H A Datrace.cpp497 char* func = strtok(myFuncs, ","); local
498 while (func) {
499 String8 fancyFunc = String8::format("\n%s\n", func);
501 if (!found || func[0] == '\0') {
503 "to trace.\n", func);
506 func = strtok(NULL, ",");
537 char* func = strtok(myFuncs, ","); local
538 while (func) {
539 ok &= appendStr(k_ftraceFilterPath, func);
540 func
[all...]
/frameworks/native/opengl/libagl/
H A Dstate.cpp226 void glStencilFunc(GLenum func, GLint /*ref*/, GLuint /*mask*/) { argument
228 if (func < GL_NEVER || func > GL_ALWAYS) {
249 void glAlphaFunc(GLenum func, GLclampf ref) argument
251 glAlphaFuncx(func, gglFloatToFixed(ref));
544 void glDepthFunc(GLenum func) { argument
546 c->rasterizer.procs.depthFunc(c, func);
554 void glAlphaFuncx(GLenum func, GLclampx ref) { argument
556 c->rasterizer.procs.alphaFuncx(c, func, ref);

Completed in 493 milliseconds

1234