Searched refs:func (Results 651 - 675 of 1515) sorted by relevance

<<21222324252627282930>>

/openbsd-current/usr.bin/printf/
H A Dprintf.c61 #define PF(f, func) { \
64 (void)printf(f, fieldwidth, precision, func); \
66 (void)printf(f, fieldwidth, func); \
68 (void)printf(f, precision, func); \
70 (void)printf(f, func); \
/openbsd-current/sys/dev/pci/drm/
H A Ddrm_managed.c14 drmm_func_t func; member in struct:drmm_node
112 node->func = f;
130 node->func = f;
145 if (n->func)
146 n->func(dev, n->p);
/openbsd-current/regress/sys/kern/noexec/
H A Dnoexec.c194 int (*func)(void *, size_t);
208 func = &noexec;
299 func = &noexec_mmap;
313 func = &noexec_mprotect;
339 exit((*func)(p, size));
/openbsd-current/sys/kern/
H A Dkern_sensors.c173 void (*func)(void *); member in struct:sensor_task
186 sensor_task_register(void *arg, void (*func)(void *), unsigned int period)
203 st->func = func;
264 st->func(st->arg);
/openbsd-current/gnu/usr.bin/binutils/gdb/
H A Dstack.c162 struct symbol *func;
207 print_frame_args (struct symbol *func, struct frame_info *fi, int num,
228 if (func)
230 b = SYMBOL_BLOCK_VALUE (func);
403 print_frame_args (p->func, p->fi, numargs, p->stream);
452 ui_out_field_string (uiout, "func", "<function called from gdb>");
457 ui_out_field_string (uiout, "func", "<signal handler called>");
541 struct symbol *func;
551 func = find_pc_function (get_frame_address_in_block (fi));
552 if (func)
161 struct symbol *func; member in struct:print_args_args
206 print_frame_args(struct symbol *func, struct frame_info *fi, int num, struct ui_file *stream) argument
540 struct symbol *func; local
831 struct symbol *func; local
1481 struct symbol *func = get_frame_function (fi); local
[all...]
/openbsd-current/sbin/bioctl/
H A Dbioctl.c103 u_int64_t func = 0; local
121 func |= BIOC_ALARM;
125 func |= BIOC_BLINK;
133 func |= BIOC_CREATERAID;
148 func |= BIOC_DELETERAID;
151 func |= BIOC_BLINK;
156 func |= BIOC_SETSTATE;
164 func |= BIOC_INQ;
170 func |= BIOC_DEVLIST;
192 func |
[all...]
/openbsd-current/lib/libedit/
H A Dparse.c59 int (*func)(EditLine *, int, const wchar_t **); member in struct:__anon7922
124 i = (*cmds[i].func) (el, argc, argv);
281 return b[i].func;
H A DMakefile22 CLEANFILES+=common.h.tmp emacs.h.tmp fcns.h.tmp func.h.tmp
34 GENERATED= ${AHDR} fcns.h func.h help.h
63 func.h: ${AHDR} makelist
/openbsd-current/sys/arch/armv7/include/
H A Dintr.h94 int (*func)(void *), void *cookie, char *name),
105 int (*func)(void *), void *cookie, char *name);
143 void *arm_intr_establish(int irqno, int level, int (*func)(void *),
/openbsd-current/sys/arch/mips64/mips64/
H A Dinterrupt.c250 splassert_check(int wantipl, const char *func) argument
255 splassert_fail(wantipl, ci->ci_ipl, func);
258 splassert_fail(-1, ci->ci_intrdepth, func);
/openbsd-current/regress/usr.sbin/relayd/
H A DProc.pm65 $self->{func} && ref($self->{func}) eq 'CODE'
66 or croak "$class func not given";
110 $self->{func}->($self);
/openbsd-current/regress/usr.sbin/httpd/tests/
H A DProc.pm65 $self->{func} && ref($self->{func}) eq 'CODE'
66 or croak "$class func not given";
109 $self->{func}->($self);
/openbsd-current/sys/dev/fdt/
H A Dpinctrl.c156 uint32_t func = pins[i + 1]; local
160 func |= pins[i + 2];
168 val |= (func & sc->sc_func_mask);
/openbsd-current/regress/lib/libm/msun/
H A Dexponential_test.c60 #define test(func, x, result, exceptmask, excepts) do { \
63 CHECK_FPEQUAL((func)(_d), (result)); \
65 #func, #x); \
H A Dlogarithm_test.c61 #define test(func, x, result, exceptmask, excepts) do { \
64 CHECK_FPEQUAL((func)(_d), (result)); \
66 #func, #x); \
69 #define test_tol(func, z, result, tol) do { \
71 debug(" testing %6s(%15La) ~= % .36Le\n", #func, _d, result); \
72 CHECK_FPEQUAL_TOL((func)(_d), (result), (tol), CS_BOTH); \
/openbsd-current/regress/usr.sbin/syslogd/
H A DProc.pm67 $self->{func} && ref($self->{func}) eq 'CODE'
68 or croak "$class func not given";
137 $self->{func}->($self);
/openbsd-current/lib/libcrypto/modes/
H A Dctr128.c205 unsigned int *num, ctr128_f func)
231 * As (*func) operates on 32-bit counter, caller
241 (*func)(in, out, blocks, key, ivec);
254 (*func)(ecount_buf, ecount_buf, 1, key, ivec);
202 CRYPTO_ctr128_encrypt_ctr32(const unsigned char *in, unsigned char *out, size_t len, const void *key, unsigned char ivec[16], unsigned char ecount_buf[16], unsigned int *num, ctr128_f func) argument
/openbsd-current/sys/arch/i386/i386/
H A Dcodepatch.c176 /* Patch with calls to func */
178 codepatch_call(uint16_t tag, void *func) argument
186 DBGPRINT("patching tag %u with call %p", tag, func);
195 offset = (vaddr_t)func - (patch->addr + 5);
/openbsd-current/gnu/llvm/libcxx/src/
H A Dmutex.cpp209 void (*func)(void*))
219 func(arg);
242 func(arg);
208 __call_once(volatile once_flag::_State_type& flag, void* arg, void (*func)(void*)) argument
/openbsd-current/gnu/usr.bin/perl/cpan/Socket/
H A DMakefile.PL75 my $func = delete $args{func};
76 check_for( %args, main => "void *p = &$func; if(p == NULL) return 1;" );
80 # -Dfoo func() $Config{key}
90 my ( $func, $key ) = @{$defines{$define}};
94 func => $func
/openbsd-current/sys/arch/armv7/exynos/
H A Dexgpio.c211 uint32_t func, val, pud, drv; local
228 func = OF_getpropint(node, "samsung,pin-function", 0);
249 reg |= (func << (pin * 4));
286 int func; local
291 func = (config & GPIO_CONFIG_OUTPUT) ? GPXCON_OUTPUT : GPXCON_INPUT;
294 val |= (func << (pin * 4));
/openbsd-current/gnu/llvm/lld/wasm/
H A DInputChunks.h252 InputFunction(const WasmSignature &s, const WasmFunction *func, ObjFile *f) argument
253 : InputChunk(f, InputChunk::Function, func->SymbolName), signature(s),
254 function(func),
255 exportName(func && func->ExportName ? (*func->ExportName).str()
/openbsd-current/lib/libcrypto/lhash/
H A Dlhash.c343 doall_util_fn(_LHASH *lh, int use_arg, LHASH_DOALL_FN_TYPE func, argument
374 func(a->data);
387 lh_doall(_LHASH *lh, LHASH_DOALL_FN_TYPE func) argument
389 doall_util_fn(lh, 0, func, (LHASH_DOALL_ARG_FN_TYPE)0, NULL);
394 lh_doall_arg(_LHASH *lh, LHASH_DOALL_ARG_FN_TYPE func, void *arg) argument
396 doall_util_fn(lh, 1, (LHASH_DOALL_FN_TYPE)0, func, arg);
/openbsd-current/gnu/gcc/gcc/
H A Dgthr-tpf.h103 __gthread_once (__gthread_once_t *once, void (*func) (void))
106 return __gthrw_(pthread_once) (once, func);
/openbsd-current/gnu/gcc/gcc/config/avr/
H A Dlibgcc.S70 .func __mulqi3
93 .func __mulqihi3
107 .func __umulqihi3
127 .func __mulhi3
166 .func __mulhisi3
184 .func __umulhisi3
218 .func __mulsi3
314 .func __udivmodqi4
336 .func __divmodqi4
380 .func __udivmodhi
[all...]

Completed in 175 milliseconds

<<21222324252627282930>>