Home
last modified time | relevance | path

Searched refs:pfunc (Results 1 – 14 of 14) sorted by relevance

/openbsd/gnu/llvm/lldb/bindings/python/
H A Dpython-wrapper.swig81 if (!pfunc.IsAllocated())
108 if (!pfunc.IsAllocated())
150 if (!pfunc.IsAllocated()) {
195 if (!pfunc.IsAllocated())
226 if (!pfunc.IsAllocated())
341 if (!pfunc.IsAllocated())
349 result = pfunc();
386 if (!pfunc.IsAllocated())
410 if (!pfunc.IsAllocated())
413 PythonObject result = sym_ctx ? pfunc(ToSWIGWrapper(*sym_ctx)) : pfunc();
[all …]
/openbsd/gnu/usr.bin/gcc/gcc/config/h8300/
H A Dh8300.h1091 typedef (*pfunc)(); \
1092 extern pfunc __ctors[]; \
1093 extern pfunc __ctors_end[]; \
1094 pfunc *p; \
1104 typedef (*pfunc)(); \
1105 extern pfunc __dtors[]; \
1106 extern pfunc __dtors_end[]; \
1107 pfunc *p; \
/openbsd/sys/arch/m88k/m88k/
H A Ddb_disasm.c801 u_int32_t pfunc = (inst >> 11) & 0x1f; in pinst() local
806 switch (pfunc) { in pinst()
822 if (tfield != 0 || pfunc == 0x0d /* punpk */) { in pinst()
827 switch (pfunc) { in pinst()
/openbsd/gnu/usr.bin/binutils/opcodes/
H A Dtic4x-dis.c230 tic4x_print_ftoa (val, stream, pfunc) in tic4x_print_ftoa() argument
233 fprintf_ftype pfunc;
252 (*pfunc)(stream, "%.9g", num);
/openbsd/gnu/gcc/gcc/config/sh/
H A Dsh.h2800 typedef (*pfunc)(); \
2801 extern pfunc __ctors[]; \
2802 extern pfunc __ctors_end[]; \
2803 pfunc *p; \
2813 typedef (*pfunc)(); \
2814 extern pfunc __dtors[]; \
2815 extern pfunc __dtors_end[]; \
2816 pfunc *p; \
/openbsd/gnu/usr.bin/gcc/gcc/config/sh/
H A Dsh.h2822 typedef (*pfunc)(); \
2823 extern pfunc __ctors[]; \
2824 extern pfunc __ctors_end[]; \
2825 pfunc *p; \
2835 typedef (*pfunc)(); \
2836 extern pfunc __dtors[]; \
2837 extern pfunc __dtors_end[]; \
2838 pfunc *p; \
/openbsd/gnu/usr.bin/binutils-2.17/opcodes/
H A Dtic4x-dis.c186 tic4x_print_ftoa (unsigned int val, FILE *stream, fprintf_ftype pfunc)
205 (*pfunc)(stream, "%.9g", num);
/openbsd/gnu/usr.bin/perl/cpan/Pod-Perldoc/lib/Pod/
H A DPerldoc.pm1305 my $pfunc = shift @$found_things;
1306 my $fh = $self->open_fh("<", $pfunc); # "Funk is its own reward"
1313 print "Going to perlfunc-scan for $search_re in $pfunc\n";
1391 close $fh or $self->die( "Can't close $pfunc: $!" );
/openbsd/gnu/gcc/gcc/config/score/
H A Dscore.c766 rtx pfunc, pchain; in score_initialize_trampoline() local
773 pfunc = plus_constant (ADDR, CODE_SIZE); in score_initialize_trampoline()
776 emit_move_insn (gen_rtx_MEM (ptr_mode, pfunc), FUNC); in score_initialize_trampoline()
/openbsd/usr.bin/deroff/
H A Dderoff.c480 regline(void (*pfunc)(char *, int), int constant) in regline()
513 (*pfunc)(line, constant); in regline()
/openbsd/gnu/usr.bin/binutils/binutils/
H A Ddlltool.c698 static int pfunc (const void *, const void *);
2865 pfunc (const void *a, const void *b) in pfunc() function
2988 qsort (d_export_vec, d_nfuncs, sizeof (export_type *), pfunc); in fill_ordinals()
3042 qsort (d_export_vec, d_nfuncs, sizeof (export_type *), pfunc); in fill_ordinals()
/openbsd/gnu/usr.bin/binutils-2.17/binutils/
H A Ddlltool.c698 static int pfunc (const void *, const void *);
2817 pfunc (const void *a, const void *b) in pfunc() function
2924 qsort (d_export_vec, d_nfuncs, sizeof (export_type *), pfunc); in fill_ordinals()
2978 qsort (d_export_vec, d_nfuncs, sizeof (export_type *), pfunc); in fill_ordinals()
/openbsd/sys/dev/isa/
H A Dgus.c847 void (*pfunc)(void *) = sc->sc_dmaoutintr; in gus_dmaout_dointr() local
852 (*pfunc)(arg); in gus_dmaout_dointr()
985 void (*pfunc)(void *) = sc->sc_dmaoutintr; in gus_voice_intr() local
990 (*pfunc)(arg); in gus_voice_intr()
/openbsd/gnu/llvm/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptInterpreterPython.cpp765 auto pfunc = PythonObject::ResolveNameWithDictionary<PythonCallable>( in GetMaxPositionalArgumentsForCallable() local
767 if (!pfunc.IsAllocated()) { in GetMaxPositionalArgumentsForCallable()
772 llvm::Expected<PythonCallable::ArgInfo> arg_info = pfunc.GetArgInfo(); in GetMaxPositionalArgumentsForCallable()