/external/openssl/crypto/sha/asm/ |
sha1-x86_64.pl | 67 my $func=shift; 69 .globl $func 70 .type $func,\@function,3 72 $func: 94 my $func=shift; 103 .size $func,.-$func
|
/sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gldebugger/ |
GLServerState.java | 26 public GLEnum func; field in class:GLStencilState 188 // void StencilFuncSeparate( enum face, enum func, int ref, uint mask ) 190 GLEnum ff = front.func, bf = back.func; 204 if (ff == front.func && fr == front.ref && fm == front.mask) 205 if (bf == back.func && br == back.ref && bm == back.mask) 207 front.func = ff; 210 back.func = bf;
|
/development/tools/emulator/opengl/host/libs/GLESv1_dec/ |
GLDecoder.cpp | 230 void *func = NULL; local 232 func = (void *) eglGetProcAddress(name); 234 if (func == NULL) { 235 func = (void *)(ctx->m_glesDso->findSymbol(name)); 237 return func;
|
/external/dbus/dbus/ |
dbus-memory.c | 712 DBusShutdownFunction func; /**< Function to call */ member in struct:ShutdownClosure 723 * @param func the function 728 _dbus_register_shutdown_func (DBusShutdownFunction func, 738 c->func = func; 807 (* c->func) (c->data);
|
/hardware/ril/libril/ |
ril_event.cpp | 87 dlog(" func = %x", (unsigned int)ev->func); 210 ev->func(ev->fd, 0, ev->param); 253 void ril_event_set(struct ril_event * ev, int fd, bool persist, ril_event_cb func, void * param) 260 ev->func = func;
|
/frameworks/base/opengl/libagl/ |
state.cpp | 225 void glStencilFunc(GLenum func, GLint ref, GLuint mask) { 227 if (func < GL_NEVER || func > GL_ALWAYS) { 248 void glAlphaFunc(GLenum func, GLclampf ref) 250 glAlphaFuncx(func, gglFloatToFixed(ref)); 543 void glDepthFunc(GLenum func) { 545 c->rasterizer.procs.depthFunc(c, func); 553 void glAlphaFuncx(GLenum func, GLclampx ref) { 555 c->rasterizer.procs.alphaFuncx(c, func, ref);
|
/external/bluetooth/glib/gio/fen/ |
fen-node.c | 60 static guint children_foreach_remove (node_t *f, GHRFunc func, gpointer user_data); 61 static void children_foreach (node_t *f, GHFunc func, gpointer user_data); 443 children_foreach_remove (node_t *f, GHRFunc func, gpointer user_data) 447 return g_hash_table_foreach_remove (f->children, func, user_data); 451 children_foreach (node_t *f, GHFunc func, gpointer user_data) 455 g_hash_table_foreach (f->children, func, user_data);
|
/external/bluetooth/glib/gio/ |
gsimpleasyncresult.c | 610 GSimpleAsyncThreadFunc func; member in struct:__anon1931 656 data->func (simple, 673 * @func: a #GSimpleAsyncThreadFunc. 681 GSimpleAsyncThreadFunc func, 688 g_return_if_fail (func != NULL); 691 data->func = func;
|
/external/bluetooth/glib/glib/ |
gdataset.c | 456 GDataForeachFunc func, 462 g_return_if_fail (func != NULL); 476 func (list->id, list->data, user_data); 488 GDataForeachFunc func, 494 g_return_if_fail (func != NULL); 499 func (list->id, list->data, user_data);
|
gnode.h | 217 GNodeTraverseFunc func, 229 GNodeForeachFunc func,
|
goption.h | 126 GTranslateFunc func, 155 GTranslateFunc func,
|
gthread.c | 177 GThreadFunc func, 190 once->retval = func (arg); 631 before thread->thread.func is called. See g_thread_create. */ 635 thread->retval = thread->thread.func (thread->thread.data); 641 g_thread_create_full (GThreadFunc func, 651 g_return_val_if_fail (func, NULL); 659 result->thread.func = func; 765 thread->thread.func = NULL;
|
/external/chromium/base/allocator/ |
allocator_unittests.cc | 301 static void TestOneNewWithoutExceptions(void* (*func)(size_t), 305 void* ptr = (*func)(kNotTooBig); 314 void* rv = (*func)(kTooBig); 322 static void TestNothrowNew(void* (*func)(size_t)) { 327 TestOneNewWithoutExceptions(func, false); 331 TestOneNewWithoutExceptions(func, true);
|
/frameworks/base/opengl/libagl2/src/ |
api.cpp | 32 void API_ENTRY(glDepthFunc)(GLenum func) 34 CALL_GL_API(glDepthFunc, func); 183 void API_ENTRY(glStencilFunc)(GLenum func, GLint ref, GLuint mask) 185 CALL_GL_API(glStencilFunc, func, ref, mask); 187 void API_ENTRY(glStencilFuncSeparate)(GLenum face, GLenum func, GLint ref, GLuint mask) 189 CALL_GL_API(glStencilFuncSeparate, face, func, ref, mask);
|
/frameworks/media/libvideoeditor/osal/src/ |
M4OSA_Thread.c | 67 if((threadContext->func(threadContext->param)) != M4NO_ERROR) 105 * the "func" parameter. This function creates & allocates a unique 114 * @param func:(IN) "doIt" function pointer to run 122 M4OSA_ThreadDoIt func) 128 "M4OSA_ThreadDoIt 0x%x", context, func); 133 M4OSA_DEBUG_IF2(func == M4OSA_NULL, 149 threadContext->func = func;
|
/system/core/adb/ |
services.c | 42 void (*func)(int fd, void *cookie); member in struct:stinfo 51 sti->func(sti->fd, sti->cookie); 240 static int create_service_thread(void (*func)(int, void *), void *cookie) 253 sti->func = func; 398 sti->func = subproc_waiter_service;
|
/bionic/libthread_db/ |
libthread_db.c | 207 td_ta_thr_iter(td_thragent_t const * agent, td_thr_iter_f * func, void * cookie, 228 if (func(&handle, cookie) != 0) {
|
/external/bluetooth/glib/gobject/ |
gsourceclosure.c | 137 GSourceFunc *func, 151 *func = closure_callback;
|
/external/chromium/chrome/browser/importer/ |
nss_decryptor_win.cc | 26 void set_func(SetDllDirectoryFunc func) { func_ = func; }
|
/external/clang/test/CodeGen/ |
x86_64-arguments.c | 247 // CHECK: declare void @func(%struct._str* byval align 16) 255 void func(str s); 259 func(ss);
|
/external/collada/include/dae/ |
daeMetaElement.h | 262 * @param func Pointer to a function that does object construction. 264 void registerClass(daeElementConstructFunctionPtr func) { 265 _createFunc = func; }
|
/external/icu4c/i18n/ |
astro.h | 653 UDate timeOfAngle(AngleFunc& func, double desired, 663 double riseOrSet(CoordFunc& func, UBool rise,
|
/external/icu4c/test/perf/normperf/ |
normperf.h | 77 QuickCheckPerfFunction(QuickCheckFn func, ULine* srcLines,int32_t srcNumLines, UNormalizationMode _mode, int32_t opts, UBool _uselen) : options(opts) { 78 fn = func; 87 QuickCheckPerfFunction(QuickCheckFn func, const UChar* source,int32_t sourceLen, UNormalizationMode _mode, int32_t opts, UBool _uselen) : options(opts) { 88 fn = func; 146 NormPerfFunction(NormFn func, int32_t opts, ULine* srcLines,int32_t srcNumLines,UBool _uselen) : options(opts) { 147 fn = func; 157 NormPerfFunction(NormFn func, int32_t opts, const UChar* source,int32_t sourceLen,UBool _uselen) : options(opts) { 158 fn = func;
|
/external/icu4c/test/perf/ustrperf/ |
stringperf.h | 132 StringPerfFunction(ICUStringPerfFn func, ULine* srcLines, int32_t srcNumLines, UBool uselen) 135 fn1_ = func; 156 StringPerfFunction(StdStringPerfFn func, ULine* srcLines, int32_t srcNumLines, UBool uselen) 159 fn2_ = func; 179 StringPerfFunction(ICUStringPerfFn func, UChar* source, int32_t sourceLen, UBool uselen) 182 fn1_ = func; 201 StringPerfFunction(StdStringPerfFn func, UChar* source, int32_t sourceLen, UBool uselen) 204 fn2_ = func;
|
/external/iproute2/ip/ |
ip.c | 60 int (*func)(int argc, char **argv); member in struct:cmd 90 return c->func(argc-1, argv+1);
|