HomeSort by relevance Sort by last modified time
    Searched refs:func (Results 201 - 225 of 1580) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/elfutils/tests/
find-prologues.c 50 handle_function (Dwarf_Die *func, void *arg)
54 const char *name = dwarf_diename (func);
66 if (dwarf_func_inline (func))
70 if (dwarf_entrypc (func, &entrypc) != 0)
72 dwarf_diename (func), dwarf_errmsg (-1));
75 printf ("%-16s %#.16" PRIx64, dwarf_diename (func), entrypc);
78 int result = dwarf_entry_breakpoints (func, &bkpts);
  /external/icu4c/common/
ucln_cmn.c 34 U_CFUNC UBool ucln_mutexedInit(initFunc *func, UErrorCode *status) {
38 if (func != NULL) {
39 func(status);
81 cleanupFunc *func)
86 gCommonCleanupFunctions[type] = func;
95 cleanupFunc *func)
100 gLibCleanupFunctions[type] = func;
  /hardware/invensense/mlsdk/platform/include/
i2c.h 87 void set_i2c_open_bind_cb(int (*func)(unsigned int i2c_slave_addr));
88 void set_i2c_open_cb(int (*func)(const char *dev, int rw));
89 void set_i2c_close_cb(int (*func)(int fd));
90 void set_i2c_lltransfer_cb(int (*func)(int fd, int client_addr, const char *write_buf, unsigned int write_len,
92 void set_i2c_write_register_cb(int (*func)(int fd, int client_addr, unsigned char reg, unsigned char value));
93 void set_i2c_read_register_cb(unsigned char (*func)(int fd, int client_addr, unsigned char reg));
94 void set_i2c_dump_register_cb(int (*func)(int fd, int client_addr, unsigned char start_reg, unsigned char *buff, int len));
  /external/icu4c/test/intltest/
testidna.h 72 void testToASCII(const char* testName, TestFunc func);
73 void testToUnicode(const char* testName, TestFunc func);
74 void testIDNToUnicode(const char* testName, TestFunc func);
75 void testIDNToASCII(const char* testName, TestFunc func);
76 void testCompare(const char* testName, CompareFunc func);
83 UBool doCompare, UBool testUnassigned, TestFunc func, UBool testSTD3ASCIIRules=TRUE);
87 const char* testName, CompareFunc func,
94 UBool useSTD3ASCIIRules, UBool caseInsensitive, TestFunc func);
96 void testRootLabelSeparator(const char* testName, CompareFunc func,
  /external/stlport/src/
cxa.c 55 } func; member in struct:exit_function
70 int __cxa_atexit(void (*func)(void *), void *arg, void *d)
78 new->func.cxa.fn = (void (*) (void *, int)) func;
79 new->func.cxa.arg = arg;
80 new->func.cxa.dso_handle = d;
175 if ( (d == NULL || d == f->func.cxa.dso_handle) && (f->flavor == ef_cxa) ) {
177 (*f->func.cxa.fn) (f->func.cxa.arg, 0);
  /ndk/sources/cxx-stl/stlport/src/
cxa.c 55 } func; member in struct:exit_function
70 int __cxa_atexit(void (*func)(void *), void *arg, void *d)
78 new->func.cxa.fn = (void (*) (void *, int)) func;
79 new->func.cxa.arg = arg;
80 new->func.cxa.dso_handle = d;
175 if ( (d == NULL || d == f->func.cxa.dso_handle) && (f->flavor == ef_cxa) ) {
177 (*f->func.cxa.fn) (f->func.cxa.arg, 0);
  /external/apache-xml/src/main/java/org/apache/xalan/extensions/
ExpressionVisitor.java 58 * @param func The function currently being visited.
62 public boolean visitFunction(ExpressionOwner owner, Function func)
64 if (func instanceof FuncExtFunction)
66 String namespace = ((FuncExtFunction)func).getNamespace();
69 else if (func instanceof FuncExtFunctionAvailable)
71 String arg = ((FuncExtFunctionAvailable)func).getArg0().toString();
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/pkcs/
PBES2Algorithms.java 19 private KeyDerivationFunc func; field in class:PBES2Algorithms
39 func = new KeyDerivationFunc(id_PBKDF2, PBKDF2Params.getInstance(funcSeq.getObjectAt(1)));
43 func = new KeyDerivationFunc(funcSeq);
56 return func;
71 subV.add(func);
PBES2Parameters.java 16 private KeyDerivationFunc func; field in class:PBES2Parameters
43 func = new KeyDerivationFunc(id_PBKDF2, PBKDF2Params.getInstance(funcSeq.getObjectAt(1)));
47 func = new KeyDerivationFunc(funcSeq);
55 return func;
67 v.add(func);
  /external/elfutils/libdw/
dwarf_func_inline.c 90 dwarf_func_inline (Dwarf_Die *func)
94 if (INTUSE(dwarf_formudata) (INTUSE(dwarf_attr) (func, DW_AT_inline,
114 dwarf_func_inline_instances (Dwarf_Die *func,
118 struct visitor_info v = { func->addr, callback, arg };
119 struct Dwarf_Die_Chain cu = { .die = CUDIE (func->cu), .parent = NULL };
  /external/kernel-headers/original/linux/
smp.h 54 int smp_call_function(void(*func)(void *info), void *info, int retry, int wait);
59 int on_each_cpu(void (*func) (void *info), void *info, int retry, int wait);
88 #define smp_call_function(func,info,retry,wait) (up_smp_call_function())
89 #define on_each_cpu(func,info,retry,wait) \
92 func(info); \
  /external/llvm/test/MC/AsmParser/
directive_seh.s 3 # CHECK: .seh_proc func
21 .globl func
22 .def func; .scl 2; .type 32; .endef
23 .seh_proc func
24 func: label
  /hardware/ti/wlan/lib/
shlist.h 19 SHLIST *shListFindItem( SHLIST *head, void *val, shListEqual func );
25 void shListDelItem( SHLIST *head, SHLIST *item, shListFree func );
28 shListCmp func );
30 void shListDelAllItems( SHLIST *head, shListFree func );
31 void shListPrintAllItems( SHLIST *head, shListPrint func );
  /external/bison/darwin-lib/
stdlib.h 189 /* _GL_FUNCDECL_RPL (func, rettype, parameters_and_attributes);
196 #define _GL_FUNCDECL_RPL(func,rettype,parameters_and_attributes) \
197 _GL_FUNCDECL_RPL_1 (rpl_##func, rettype, parameters_and_attributes)
201 /* _GL_FUNCDECL_SYS (func, rettype, parameters_and_attributes);
202 declares the system function, named func, with the given prototype,
208 #define _GL_FUNCDECL_SYS(func,rettype,parameters_and_attributes) \
209 _GL_EXTERN_C rettype func parameters_and_attributes
211 /* _GL_CXXALIAS_RPL (func, rettype, parameters);
212 declares a C++ alias called GNULIB_NAMESPACE::func
217 #define _GL_CXXALIAS_RPL(func,rettype,parameters)
    [all...]
  /external/bison/darwin-lib/sys/
stat.h 123 /* _GL_FUNCDECL_RPL (func, rettype, parameters_and_attributes);
130 #define _GL_FUNCDECL_RPL(func,rettype,parameters_and_attributes) \
131 _GL_FUNCDECL_RPL_1 (rpl_##func, rettype, parameters_and_attributes)
135 /* _GL_FUNCDECL_SYS (func, rettype, parameters_and_attributes);
136 declares the system function, named func, with the given prototype,
142 #define _GL_FUNCDECL_SYS(func,rettype,parameters_and_attributes) \
143 _GL_EXTERN_C rettype func parameters_and_attributes
145 /* _GL_CXXALIAS_RPL (func, rettype, parameters);
146 declares a C++ alias called GNULIB_NAMESPACE::func
151 #define _GL_CXXALIAS_RPL(func,rettype,parameters)
    [all...]
  /external/bison/linux-lib/
stdlib.h 189 /* _GL_FUNCDECL_RPL (func, rettype, parameters_and_attributes);
196 #define _GL_FUNCDECL_RPL(func,rettype,parameters_and_attributes) \
197 _GL_FUNCDECL_RPL_1 (rpl_##func, rettype, parameters_and_attributes)
201 /* _GL_FUNCDECL_SYS (func, rettype, parameters_and_attributes);
202 declares the system function, named func, with the given prototype,
208 #define _GL_FUNCDECL_SYS(func,rettype,parameters_and_attributes) \
209 _GL_EXTERN_C rettype func parameters_and_attributes
211 /* _GL_CXXALIAS_RPL (func, rettype, parameters);
212 declares a C++ alias called GNULIB_NAMESPACE::func
217 #define _GL_CXXALIAS_RPL(func,rettype,parameters)
    [all...]
  /external/bison/linux-lib/sys/
stat.h 123 /* _GL_FUNCDECL_RPL (func, rettype, parameters_and_attributes);
130 #define _GL_FUNCDECL_RPL(func,rettype,parameters_and_attributes) \
131 _GL_FUNCDECL_RPL_1 (rpl_##func, rettype, parameters_and_attributes)
135 /* _GL_FUNCDECL_SYS (func, rettype, parameters_and_attributes);
136 declares the system function, named func, with the given prototype,
142 #define _GL_FUNCDECL_SYS(func,rettype,parameters_and_attributes) \
143 _GL_EXTERN_C rettype func parameters_and_attributes
145 /* _GL_CXXALIAS_RPL (func, rettype, parameters);
146 declares a C++ alias called GNULIB_NAMESPACE::func
151 #define _GL_CXXALIAS_RPL(func,rettype,parameters)
    [all...]
  /external/v8/test/mjsunit/
assert-opt-and-deopt.js 58 OptTracker.prototype.CheckpointOptCount = function(func) {
59 this.opt_counts_[func] = %GetOptimizationCount(func);
62 OptTracker.prototype.AssertOptCount = function(func, optcount) {
63 if (this.DisableAsserts_(func)) {
66 assertEquals(optcount, this.GetOptCount_(func));
69 OptTracker.prototype.AssertDeoptCount = function(func, deopt_count) {
70 if (this.DisableAsserts_(func)) {
73 assertEquals(deopt_count, this.GetDeoptCount_(func));
76 OptTracker.prototype.AssertDeoptHappened = function(func, expect_deopt)
    [all...]
  /external/qemu/
os-win32.c 55 PollingFunc *func; member in struct:PollingEntry
62 int qemu_add_polling_cb(PollingFunc *func, void *opaque)
66 pe->func = func;
73 void qemu_del_polling_cb(PollingFunc *func, void *opaque)
78 if (pe->func == func && pe->opaque == opaque) {
91 WaitObjectFunc *func[MAXIMUM_WAIT_OBJECTS + 1]; member in struct:WaitObjects
97 int qemu_add_wait_object(HANDLE handle, WaitObjectFunc *func, void *opaque)
104 w->func[w->num] = func
    [all...]
  /bootable/recovery/minadbd/
fdevent.h 39 fdevent *fdevent_create(int fd, fd_func func, void *arg);
48 void fdevent_install(fdevent *fde, int fd, fd_func func, void *arg);
78 fd_func func; member in struct:fdevent
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
AbsPathChecker.java 57 * @param func The function reference object.
60 public boolean visitFunction(ExpressionOwner owner, Function func)
62 if((func instanceof FuncCurrent) ||
63 (func instanceof FuncExtFunction))
  /external/chromium/base/
at_exit.cc 37 void AtExitManager::RegisterCallback(AtExitCallbackType func, void* param) {
43 DCHECK(func);
46 g_top_manager->stack_.push(CallbackAndParam(func, param));
  /external/clang/test/CodeGen/
mangle.c 55 int func(void);
56 extern int func (void) __asm__ ("FUNC");
58 // CHECK: @FUNC
59 int func(void) { function
  /external/clang/test/Sema/
i-c-e.c 41 void func(int x) function
45 case sizeof("loooong"): func(4);
46 case sizeof("\ploooong"): func(4);
  /external/libvpx/libvpx/vpx_ports/
x86.h 39 #define cpuid(func,ax,bx,cx,dx)\
43 : "a" (func));
45 #define cpuid(func,ax,bx,cx,dx)\
51 : "a" (func));
55 #define cpuid(func,ax,bx,cx,dx)\
62 : "a" (func));
64 #define cpuid(func,ax,bx,cx,dx)\
71 : "a" (func));
77 #define cpuid(func,a,b,c,d) do{\
79 __cpuid(regs,func); a=regs[0]; b=regs[1]; c=regs[2]; d=regs[3];
    [all...]

Completed in 562 milliseconds

1 2 3 4 5 6 7 891011>>