Searched refs:func (Results 501 - 525 of 1516) sorted by relevance

<<21222324252627282930>>

/openbsd-current/usr.sbin/unbound/util/
H A Dalloc.c472 const char* func)
474 log_info("%s:%d %s malloc(%u)", file, line, func, (unsigned)size);
480 int line, const char* func)
482 log_info("%s:%d %s calloc(%u, %u)", file, line, func,
489 const char* func)
495 file, line, func, ptr, (unsigned)s);
497 log_info("%s:%d %s unmatched free(%p)", file, line, func, ptr);
503 int line, const char* func)
505 log_info("%s:%d %s realloc(%p, %u)", file, line, func,
524 const char* func)
471 unbound_stat_malloc_log(size_t size, const char* file, int line, const char* func) argument
479 unbound_stat_calloc_log(size_t nmemb, size_t size, const char* file, int line, const char* func) argument
488 unbound_stat_free_log(void *ptr, const char* file, int line, const char* func) argument
502 unbound_stat_realloc_log(void *ptr, size_t size, const char* file, int line, const char* func) argument
523 unbound_stat_malloc_lite(size_t size, const char* file, int line, const char* func) argument
538 unbound_stat_calloc_lite(size_t nmemb, size_t size, const char* file, int line, const char* func) argument
556 unbound_stat_free_lite(void *ptr, const char* file, int line, const char* func) argument
582 unbound_stat_realloc_lite(void *ptr, size_t size, const char* file, int line, const char* func) argument
626 unbound_strdup_lite(const char* s, const char* file, int line, const char* func) argument
[all...]
/openbsd-current/sbin/unwind/libunbound/util/
H A Dalloc.c472 const char* func)
474 log_info("%s:%d %s malloc(%u)", file, line, func, (unsigned)size);
480 int line, const char* func)
482 log_info("%s:%d %s calloc(%u, %u)", file, line, func,
489 const char* func)
495 file, line, func, ptr, (unsigned)s);
497 log_info("%s:%d %s unmatched free(%p)", file, line, func, ptr);
503 int line, const char* func)
505 log_info("%s:%d %s realloc(%p, %u)", file, line, func,
524 const char* func)
471 unbound_stat_malloc_log(size_t size, const char* file, int line, const char* func) argument
479 unbound_stat_calloc_log(size_t nmemb, size_t size, const char* file, int line, const char* func) argument
488 unbound_stat_free_log(void *ptr, const char* file, int line, const char* func) argument
502 unbound_stat_realloc_log(void *ptr, size_t size, const char* file, int line, const char* func) argument
523 unbound_stat_malloc_lite(size_t size, const char* file, int line, const char* func) argument
538 unbound_stat_calloc_lite(size_t nmemb, size_t size, const char* file, int line, const char* func) argument
556 unbound_stat_free_lite(void *ptr, const char* file, int line, const char* func) argument
582 unbound_stat_realloc_lite(void *ptr, size_t size, const char* file, int line, const char* func) argument
626 unbound_strdup_lite(const char* s, const char* file, int line, const char* func) argument
[all...]
/openbsd-current/regress/lib/libm/msun/
H A Dcexp_test.c61 #define test_t(type, func, z, result, exceptmask, excepts, checksign) \
66 CHECK_CFPEQUAL_CS((func)(_d), (_r), (checksign)); \
68 #func, #z); \
71 #define test(func, z, result, exceptmask, excepts, checksign) \
72 test_t(double, func, z, result, exceptmask, excepts, checksign)
74 #define test_f(func, z, result, exceptmask, excepts, checksign) \
75 test_t(float, func, z, result, exceptmask, excepts, checksign)
77 #define test_l(func, z, result, exceptmask, excepts, checksign) \
78 test_t(long double, func, z, result, exceptmask, excepts, \
81 #define test_tol(func,
[all...]
/openbsd-current/regress/usr.sbin/syslogd/
H A Dfuncs.pl71 my $func = shift;
74 $func->($self, @_);
203 my $func = shift;
205 $func->($self, @_);
255 my $func = shift;
258 $func->($self, @_);
265 my $func = shift;
269 $func->($self, @_);
404 my ($name, $proc, $pattern, $func) = @_;
411 my @matches = $func
[all...]
H A Dargs-client-tcp-multichunks.pl20 func => sub {
H A Dargs-client-tcp-multilines.pl23 func => sub {
H A Dargs-fdexhaustion-tcp.pl15 func => sub {
H A Dargs-nofile-sighup.pl15 func => sub {
H A Dargs-repeat.pl14 func => sub {
H A Dargs-secure-udp.pl35 func => sub { redo_connect(shift, sub {
H A Dargs-tls-cert-empty.pl21 func => sub {
/openbsd-current/usr.bin/sndioctl/
H A Dsndioctl.c103 res = strcmp(d1->func, d2->func);
147 * skip all parameters with the same group, name, and func
152 char *str, *group, *func; local
155 func = i->desc.func;
160 strcmp(i->desc.func, func) != 0)
167 * find the next parameter with the same group, name, func
172 char *str, *group, *func; local
197 char *astr, *group, *func; local
224 char *str, *group, *func; local
680 char func[SIOCTL_NAMEMAX]; local
[all...]
/openbsd-current/gnu/llvm/compiler-rt/lib/msan/
H A Dmsan_interceptors.cpp396 #define INTERCEPTOR_STRTO_BODY(ret_type, func, ...) \
398 ret_type res = REAL(func)(__VA_ARGS__); \
402 #define INTERCEPTOR_STRTO(ret_type, func, char_type) \
403 INTERCEPTOR(ret_type, func, const char_type *nptr, char_type **endptr) { \
404 INTERCEPTOR_STRTO_BODY(ret_type, func, nptr, endptr); \
407 #define INTERCEPTOR_STRTO_BASE(ret_type, func, char_type) \
408 INTERCEPTOR(ret_type, func, const char_type *nptr, char_type **endptr, \
410 INTERCEPTOR_STRTO_BODY(ret_type, func, nptr, endptr, base); \
413 #define INTERCEPTOR_STRTO_LOC(ret_type, func, char_type) \
414 INTERCEPTOR(ret_type, func, cons
1140 void (*func)(void *arg); member in struct:MSanAtExitRecord
1194 INTERCEPTOR(int, atexit, void (*func)()) argument
[all...]
/openbsd-current/gnu/gcc/libmudflap/testsuite/libmudflap.cth/
H A Dpass39-frag.c8 func (void *p) function
42 rc = pthread_create (& threads[i], NULL, func, (void *) & counts[i]);
/openbsd-current/gnu/gcc/gcc/
H A Derrors.c131 fancy_abort (const char *file, int line, const char *func) argument
133 internal_error ("abort in %s, at %s:%d", func, trim_filename (file), line);
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.brendan/
H A Dptolemy2.C20 InterpFuncP func; member in struct:InterpTableEntry
37 return (this->*(funcTable[which].func))(argc, argv);
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.mike/
H A Dnet31.C5 double func(int xi) {return 0.0;} function in class:foo_a
65 bar_b(0) = func; // ERROR -
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/execute/
H A Dbcp-1.c2 int func(void);
12 int bad7(void) { return __builtin_constant_p(func()); }
/openbsd-current/sys/arch/alpha/pci/
H A Dpci_550.c94 int, int (*func)(void *), void *, const char *);
277 dec_550_intr_establish(ccv, ih, level, func, arg, name)
281 int (*func)(void *);
292 DEC_550_LINE_ISA_IRQ(ih), IST_LEVEL, level, func, arg,
300 level, func, arg, name);
346 dec_550_pciide_compat_intr_establish(v, dev, pa, chan, func, arg)
351 int (*func)(void *);
369 func, arg, dev->dv_xname);
H A Dpci_6600.c79 int (*func)(void *), void *, const char *);
207 dec_6600_intr_establish(acv, ih, level, func, arg, name)
211 int (*func)(void *);
219 DEC_6600_LINE_ISA_IRQ(ih), IST_LEVEL, level, func, arg,
228 level, func, arg, name);
311 dec_6600_pciide_compat_intr_establish(v, dev, pa, chan, func, arg)
316 int (*func)(void *);
335 func, arg, dev->dv_xname);
/openbsd-current/regress/sys/arch/sparc64/emul-popc/simm/
H A Dsimm13.c65 int64_t (*func)(void) = v, r;
73 r = (*func)();
/openbsd-current/regress/usr.sbin/relayd/
H A Drelayd.pl47 func => \&read_char,
69 func => \&write_char,
/openbsd-current/regress/lib/libc/stdio_threading/include/
H A Dlocal.h49 run_threads(void (*func)(void *), void *arg)
55 real_func = func;
/openbsd-current/sys/arch/sparc64/include/
H A Dsparc64.h55 void prom_start_cpu(int cpu, void *func, long arg);
56 void prom_start_cpu_by_cpuid(int cpu, void *func, long arg);
/openbsd-current/sys/arch/i386/eisa/
H A Deisa_machdep.c150 int level, int (*func)(void *), void *arg, char *what)
155 return (isa_intr_establish(NULL, ih, type, level, func, arg, what));

Completed in 171 milliseconds

<<21222324252627282930>>