Searched refs:func (Results 751 - 775 of 1515) sorted by relevance

<<31323334353637383940>>

/openbsd-current/gnu/usr.bin/binutils/gdb/cli/
H A Dcli-dump.c395 void (*func) (char *cmd, char *mode); member in struct:dump_context
403 d->func (args, d->mode);
407 add_dump_command (char *name, void (*func) (char *args, char *mode),
417 d->func = func;
420 c->func = call_dump_func;
425 d->func = func;
428 c->func = call_dump_func;
/openbsd-current/gnu/usr.bin/perl/cpan/ExtUtils-Constant/lib/ExtUtils/
H A DConstant.pm319 my $func = "sub AUTOLOAD {\n"
322 $func .= " If a constant is not found then control is passed\n"
326 $func .= "\n\n"
328 $func .=
331 $func .= <<"EOT";
338 $func .= <<'EOT';
349 $func .=
353 $func .= <<'END';
369 return $func;
/openbsd-current/gnu/usr.bin/perl/ext/POSIX/lib/
H A DPOSIX.pm198 my $func = shift;
199 my $how = $replacement{$func};
208 my ($func) = ($AUTOLOAD =~ /.*::(.*)/);
210 die "POSIX.xs has failed to load\n" if $func eq 'constant';
212 if (my $code = $reimpl{$func}) {
220 eval qq{ sub $func {
222 usage "$func($arg)" if \@_ != $num;
228 if (exists $replacement{$func}) {
229 croak "Unimplemented: POSIX::$func(): ", unimplemented_message($func);
[all...]
/openbsd-current/lib/libedit/
H A Dmap.c50 #include "func.h"
925 el->el_map.func = reallocarray(NULL, EL_NUM_FCNS,
927 if (el->el_map.func == NULL)
929 memcpy(el->el_map.func, el_func, sizeof(el_func_t) * EL_NUM_FCNS);
957 free(el->el_map.func);
958 el->el_map.func = NULL;
1136 if (bp->func == map[(unsigned char) *in]) {
1171 if (bp->func == map[first]) {
1395 el_func_t func)
1400 if (name == NULL || help == NULL || func
1394 map_addfunc(EditLine *el, const wchar_t *name, const wchar_t *help, el_func_t func) argument
[all...]
/openbsd-current/sys/dev/pci/drm/i915/gt/
H A Dselftest_rps.c236 saved_work = rps->work.func;
237 rps->work.func = dummy_rps_work;
363 rps->work.func = saved_work;
398 saved_work = rps->work.func;
399 rps->work.func = dummy_rps_work;
496 rps->work.func = saved_work;
627 saved_work = rps->work.func;
628 rps->work.func = dummy_rps_work;
732 rps->work.func = saved_work;
766 saved_work = rps->work.func;
[all...]
/openbsd-current/games/atc/
H A Dinput.c67 const char *(*func)(char); member in struct:__anon41
227 const char *s, *(*func)(char);
261 func = st[stack[i].state].rule[stack[i].rule].func;
262 if (func != NULL)
263 if ((s = (*func)(stack[i].ch)) != NULL) {
/openbsd-current/gnu/usr.bin/perl/dist/Exporter/t/
H A DExporter.t136 for my $func (@missing) {
137 ::ok( $@ =~ /^"$func" is not exported by the Testing module$/m,
138 "$func is not exported error message" );
/openbsd-current/gnu/llvm/llvm/utils/UpdateTestChecks/
H A Dcommon.py332 r'^(\s*;\s*Function\sAttrs:\s(?P<attrs>[\w\s():,]+?))?\s*define\s+(?:internal\s+)?[^@]*@(?P<func>[\w.$-]+?)\s*'
337 r'^\s*\'(?P<analysis>[\w\s-]+?)\'\s+for\s+function\s+\'(?P<func>[\w.$-]+?)\':'
342 r'^\s*\'(?P<func>[\w.$-]+?)\'[^\n]*'
527 func = m.group('func')
556 if func.startswith('stress'):
560 print('Processing function: ' + func, file=sys.stderr)
569 match = re.match(regex, func)
575 func = re.sub(func_repl, '{{' + func_repl + '}}', func)
[all...]
/openbsd-current/sys/dev/pci/
H A Dpci.c715 int bus, dev, func; local
717 pci_decompose_tag(pc, tag, &bus, &dev, &func);
718 return ((bus << 8) | (dev << 3) | func);
883 int bus, dev, func; local
888 pci_decompose_tag(pc, tag, &bus, &dev, &func);
951 " 0x%lx/0x%lx\n", bus, dev, func,
964 " 0x%lx/0x%lx\n", bus, dev, func,
993 " 0x%lx/0x%lx\n", bus, dev, func,
1018 bus, dev, func, base, size);
1036 bus, dev, func, bas
1298 int bus, dev, func; local
1476 int bus, dev, func; local
1500 int bus, dev, func; local
[all...]
/openbsd-current/gnu/usr.bin/gcc/gcc/config/ip2k/
H A Dlibgcc.S49 .func _indcall,__indcall
66 .func _mulhi3, __mulhi3
96 .func _mulsi3, __mulsi3
152 .func _muldi3, __muldi3
242 .func _divmodhi4, __divmodhi4
322 .func _udivmodhi4, __udivmodhi4
405 .func _divmodsi4, __divmodsi4
535 .func _udivmodsi4, __udivmodsi4
669 .func _divmoddi4, __divmoddi4
885 .func _udivmoddi
[all...]
/openbsd-current/gnu/gcc/gcc/config/
H A Dvxlib.c62 __gthread_once (__gthread_once_t *guard, void (*func)(void)) argument
75 go ahead and call func() if no one has done it yet. */
78 func ();
/openbsd-current/gnu/usr.bin/binutils/gdb/testsuite/gdb.trace/
H A Dcirc.exp73 proc set_a_tracepoint { func } {
74 if [gdb_test "trace $func" \
76 "set tracepoint at $func"] then {
79 if [gdb_trace_setactions "set actions for $func" \
184 "#0 func\[1-9\] .*" \
/openbsd-current/gnu/usr.bin/binutils/gdb/
H A Dfbsd-nat.c82 fbsd_find_memory_regions (int (*func) (CORE_ADDR, unsigned long,
122 func (start, size, read, write, exec, obfd);
/openbsd-current/gnu/usr.bin/binutils/gdb/gdbserver/
H A Dinferiors.c148 int (*func) (struct inferior_list_entry *, void *), void *arg)
154 if ((*func) (inf, arg))
/openbsd-current/sys/arch/i386/pci/
H A Dpciide_machdep.c87 struct pci_attach_args *pa, int chan, int (*func)(void *), void *arg)
93 cookie = isa_intr_establish(NULL, irq, IST_EDGE, IPL_BIO, func, arg,
/openbsd-current/regress/usr.sbin/syslogd/
H A Dargs-client-multilisten.pl74 func => sub { redo_connect(shift, sub {
H A Dargs-zulu.pl23 func => sub {
H A Dsyslogd.pl63 func => \&read_log,
94 func => \&write_log,
/openbsd-current/regress/sys/arch/sparc64/emul-ldqstq/badfreg/
H A Dmain.c111 void (*func)(struct fpquad *); member in struct:fptest
212 (*fpt->func)(&fpq);
/openbsd-current/regress/usr.sbin/relayd/
H A Dremote.pl103 func => \&read_char,
127 func => \&write_char,
/openbsd-current/usr.bin/mandoc/
H A Ddba_array.c156 dba_array_sort(struct dba_array *array, dba_compare_func func) argument
159 qsort(array->ep, array->eu, sizeof(*array->ep), func);
/openbsd-current/sys/arch/alpha/eisa/
H A Deisa_machdep.c339 int i, func; local
489 for (func = 0; func < ecud->ecud_ndevfuncs; func++) {
494 ecud->ecud_slot, func);
511 ecud->ecud_slot, func);
518 ecud->ecud_slot, func);
524 ecuf->ecuf_funcno = func;
/openbsd-current/sys/arch/octeon/dev/
H A Docteon_intr.c187 hw_ipi_intr_establish(int (*func)(void *), u_long cpuid)
189 return octeon_ic->ic_ipi_establish(func, cpuid);
/openbsd-current/gnu/llvm/lldb/third_party/Python/module/unittest2/unittest2/test/
H A Dtest_skipping.py134 def decorator(func):
136 return func(*a)
/openbsd-current/sys/arch/mips64/mips64/
H A Dsoftintr.c105 softintr_establish(int ipl, void (*func)(void *), void *arg)
128 sih->sih_func = func;

Completed in 464 milliseconds

<<31323334353637383940>>