Searched refs:func (Results 126 - 150 of 761) sorted by relevance

1234567891011>>

/external/dbus/test/
H A Ddecode-gcov.c358 die ("no count of blocks in func found\n");
725 function_reverse_succ_arcs (Function *func) argument
732 for (i = 0; i < func->n_blocks; i++)
733 if (func->block_graph[i].succ)
734 func->block_graph[i].succ = reverse_arcs (func->block_graph[i].succ);
759 Function *func; local
797 func = dbus_new0 (Function, 1);
798 if (func == NULL)
802 func
1114 function_solve_graph(Function *func) argument
1264 Function *func = link->data; local
1384 Function *func; local
1726 Function *func = link->data; local
1820 Function *func = link->data; local
2006 Function *func = link->data; local
2111 Function *func = link->data; local
2241 Function *func = link->data; local
2259 Function *func = link->data; local
2290 Function *func = link->data; local
2307 Function *func = link->data; local
2345 Function *func = link->data; local
2367 Function *func = link->data; local
2390 Function *func = funcs[i]; local
[all...]
/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_symbolize_addr2line_linux.cc162 InternalScopedBuffer<char> func(1024);
163 ssize_t len = internal_read(m->inp_fd, func.data(), func.size() - 1);
169 func.data()[len] = 0;
173 char *pos = (char*)internal_strchr(func.data(), '\n');
174 if (pos && func[0] != '?') {
175 res->func = (char*)internal_alloc(MBlockReportStack, pos - func.data() + 1);
176 internal_memcpy(res->func, func
[all...]
/external/clang/test/Sema/
H A Dfunction.c9 void func(const char*); // expected-note {{previous declaration is here}}
10 void func(char*); // expected-error{{conflicting types for 'func'}}
/external/clang/test/SemaCXX/
H A Dlinkage-spec.cpp39 extern "C" void func(void);
42 extern "C" void pr5430::func(void) { } function in class:pr5430
H A Dclass.cpp31 typedef int func(); typedef in class:C
32 func tm;
33 func *ptm;
34 func btm : 1; // expected-error {{bit-field 'btm' has non-integral type}}
H A Dconversion.cpp97 void func();
117 void func() { function in namespace:test4
128 void func() { function in namespace:test5
132 template void func<3>();
/external/compiler-rt/lib/asan/
H A Dasan_intercepted_functions.h74 #define DECLARE_FUNCTION_AND_WRAPPER(ret_type, func, ...) \
75 ret_type func(__VA_ARGS__); \
76 ret_type WRAP(func)(__VA_ARGS__)
184 void *ctxt, dispatch_function_t func);
187 void *ctxt, dispatch_function_t func);
190 void *ctxt, dispatch_function_t func);
193 void *ctxt, dispatch_function_t func);
196 void *ctxt, dispatch_function_t func);
/external/compiler-rt/lib/tsan/go/
H A Dtsan_go.cc35 void internal_start_thread(void(*func)(void*), void *arg) {
59 extern "C" int __tsan_symbolize(uptr pc, char **func, char **file,
67 char *func = 0, *file = 0; local
69 if (__tsan_symbolize(addr, &func, &file, &line, &off)) {
71 s->func = internal_strdup(func ? func : "??");
75 free(func);
/external/e2fsprogs/lib/e2p/
H A Diod.c27 int (*func) (const char *, struct dirent *, void *),
69 if ((*func)(dir_name, de, private))
/external/ipsec-tools/src/racoon/
H A Dschedule.h48 void (*func) __P((void *)); /* call this function when timeout. */ member in struct:sched
79 struct sched *sched_new __P((time_t, void (*func) __P((void *)), void *));
/external/libvpx/vpx_ports/
H A Dx86.h39 #define cpuid(func,ax,bx,cx,dx)\
43 : "a" (func));
45 #define cpuid(func,ax,bx,cx,dx)\
51 : "a" (func));
57 #define cpuid(func,a,b,c,d) do{\
59 __cpuid(regs,func); a=regs[0]; b=regs[1]; c=regs[2]; d=regs[3];\
62 #define cpuid(func,a,b,c,d)\
63 __asm mov eax, func\
/external/openssl/crypto/
H A Dcpt_err.c68 #define ERR_FUNC(func) ERR_PACK(ERR_LIB_CRYPTO,func,0)
/external/openssl/crypto/ecdsa/
H A Decs_err.c68 #define ERR_FUNC(func) ERR_PACK(ERR_LIB_ECDSA,func,0)
/external/openssl/crypto/jpake/
H A Djpake_err.c68 #define ERR_FUNC(func) ERR_PACK(ERR_LIB_JPAKE,func,0)
/external/openssl/crypto/ui/
H A Dui_err.c68 #define ERR_FUNC(func) ERR_PACK(ERR_LIB_UI,func,0)
/external/qemu/
H A Dioport.h40 IOPortReadFunc *func, void *opaque);
42 IOPortWriteFunc *func, void *opaque);
H A Djson-streamer.h30 void (*func)(JSONMessageParser *, QList *));
/external/webrtc/src/system_wrappers/source/
H A Dthread_posix.h23 static ThreadWrapper* Create(ThreadRunFunction func, ThreadObj obj,
26 ThreadPosix(ThreadRunFunction func, ThreadObj obj, ThreadPriority prio,
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
H A DCheck.cs53 public static void SourceAndFuncAndSelector ( object source, object func, object selector) argument
57 if (func == null)
58 throw new ArgumentNullException ("func");
64 public static void SourceAndFunc (object source, object func) argument
68 if (func == null)
69 throw new ArgumentNullException ("func");
/external/clang/test/CodeGen/
H A Dext-vector-member-alignment.c12 void func(struct struct1* p, float *a, float *b, float c) { function
19 // CHECK: @func
/external/icu4c/common/
H A Ducln_cmn.h58 cleanupFunc *func);
/external/icu4c/i18n/
H A Ducln_in.h59 cleanupFunc *func);
/external/kernel-headers/original/linux/
H A Dworkqueue.h17 void (*func)(void *); member in struct:work_struct
29 .func = (f), \
38 * initialize a work-struct's func and data pointers:
42 (_work)->func = _func; \
74 extern int schedule_on_each_cpu(void (*func)(void *info), void *info);
/external/valgrind/main/none/tests/s390x/
H A Dflogr.c88 runtest(void (*func)(unsigned long, unsigned long *, unsigned long *,
97 func(value, &bitpos, &modval, &cc);
105 func(value, &bitpos, &modval, &cc);
115 func(value, &bitpos, &modval, &cc);
/external/webrtc/src/system_wrappers/interface/
H A Dthread_wrapper.h47 // func Pointer to a, by user, specified callback function.
53 static ThreadWrapper* CreateThread(ThreadRunFunction func = 0,

Completed in 5313 milliseconds

1234567891011>>