Searched refs:func (Results 226 - 250 of 1517) sorted by relevance

1234567891011>>

/openbsd-current/regress/sys/kern/sosplice/tcp/
H A Dargs-smallsnd-sleep-server.pl14 func => sub { sleep 3; read_stream(@_); },
H A Dargs-smallrcv-sleep-server.pl14 func => sub { sleep 3; read_stream(@_); },
/openbsd-current/lib/csu/powerpc/
H A Dmd_init.h36 #define MD_SECT_CALL_FUNC(section, func) \
38 " bl " #func "\n" \
/openbsd-current/lib/csu/i386/
H A Dmd_init.h36 #define MD_SECT_CALL_FUNC(section, func) \
38 " call " #func "\n" \
/openbsd-current/lib/csu/amd64/
H A Dmd_init.h36 #define MD_SECT_CALL_FUNC(section, func) \
38 " call " #func "\n" \
/openbsd-current/lib/csu/aarch64/
H A Dmd_init.h36 #define MD_SECT_CALL_FUNC(section, func) \
38 " bl " #func " \n" \
/openbsd-current/lib/csu/m88k/
H A Dmd_init.h19 #define MD_SECT_CALL_FUNC(section, func) __asm ( \
21 "\tbsr\t" #func "\n" \
/openbsd-current/lib/csu/powerpc64/
H A Dmd_init.h19 #define MD_SECT_CALL_FUNC(section, func) \
21 " bl " #func " \n" \
/openbsd-current/lib/csu/riscv64/
H A Dmd_init.h18 #define MD_SECT_CALL_FUNC(section, func) \
20 "call " # func "@plt \n" \
/openbsd-current/regress/usr.sbin/relayd/
H A Dargs-http-contentlength-invalid.pl10 func => sub {
34 func => \&http_server,
H A Dargs-http-invalid-header1.pl8 func => sub {
32 func => \&http_server,
/openbsd-current/sys/dev/pci/drm/i915/selftests/
H A Digt_live_test.h17 const char *func; member in struct:igt_live_test
32 const char *func,
/openbsd-current/gnu/llvm/libcxxabi/src/
H A Dcxa_handlers.h24 __unexpected(unexpected_handler func);
28 __terminate(terminate_handler func) noexcept;
/openbsd-current/gnu/usr.bin/gcc/gcc/config/ia64/
H A Dia64-c.c31 static void ia64_hpux_add_pragma_builtin PARAMS ((tree func));
174 ia64_hpux_add_pragma_builtin (func)
175 tree func;
184 IDENTIFIER_POINTER (func)))
186 add_to_renaming_pragma_list(func,
/openbsd-current/regress/libexec/ld.so/dlopen/prog1/
H A Dprog1.C19 cp_func *func; local
46 func = (cp_func*)dlsym(handle1, "lib_entry");
47 str = (*func)();
49 printf("func should have returned libaa:aa returned %s\n", str);
53 func = (cp_func*)dlsym(handle2, "lib_entry");
54 str = (*func)();
56 printf("func should have returned libab:ab returned %s\n", str);
/openbsd-current/gnu/llvm/lldb/source/Plugins/UnwindAssembly/x86/
H A DUnwindAssembly-x86.cpp46 AddressRange &func, Thread &thread, UnwindPlan &unwind_plan) {
47 if (!func.GetBaseAddress().IsValid() || func.GetByteSize() == 0)
54 std::vector<uint8_t> function_text(func.GetByteSize());
57 func.GetBaseAddress(), function_text.data(), func.GetByteSize(),
58 error) == func.GetByteSize()) {
62 function_text.data(), func.GetByteSize(), func, unwind_plan);
68 AddressRange &func, Threa
45 GetNonCallSiteUnwindPlanFromAssembly( AddressRange &func, Thread &thread, UnwindPlan &unwind_plan) argument
67 AugmentUnwindPlanFromCallSite( AddressRange &func, Thread &thread, UnwindPlan &unwind_plan) argument
170 GetFastUnwindPlan(AddressRange &func, Thread &thread, UnwindPlan &unwind_plan) argument
206 FirstNonPrologueInsn( AddressRange &func, const ExecutionContext &exe_ctx, Address &first_non_prologue_insn) argument
[all...]
/openbsd-current/lib/csu/mips64/
H A Dmd_init.h84 #define MD_SECT_CALL_FUNC(section, func) \
86 " .local " #func " \n" \
87 " jal " #func " \n" \
/openbsd-current/sys/dev/pci/drm/i915/display/
H A Dintel_display_device.h17 #define DEV_INFO_DISPLAY_FOR_EACH_FLAG(func) \
19 func(cursor_needs_physical); \
20 func(has_cdclk_crawl); \
21 func(has_cdclk_squash); \
22 func(has_ddi); \
23 func(has_dp_mst); \
24 func(has_dsb); \
25 func(has_fpga_dbg); \
26 func(has_gmch); \
27 func(has_hotplu
[all...]
/openbsd-current/sys/dev/dt/
H A Ddtvar.h273 #define _DT_STATIC_P(func, name) (dt_static_##func##_##name)
278 #define _DT_STATIC_PROBEN(func, name, arg0, arg1, arg2, arg3, arg4, n) \
279 struct dt_probe _DT_STATIC_P(func, name) = { \
283 .dtp_func = #func, \
291 #define DT_STATIC_PROBE0(func, name) \
292 _DT_STATIC_PROBEN(func, name, NULL, NULL, NULL, NULL, NULL, 0)
294 #define DT_STATIC_PROBE1(func, name, arg0) \
295 _DT_STATIC_PROBEN(func, name, arg0, NULL, NULL, NULL, NULL, 1)
297 #define DT_STATIC_PROBE2(func, nam
[all...]
/openbsd-current/gnu/usr.bin/perl/ext/XS-APItest/t/
H A Dsvpv.t9 for my $func ('SvPVbyte_nolen', 'SvPVutf8_nolen') {
12 is &$func($g), '*main::glob', "$func(\$glob_copy)";
13 is ref\$g, 'GLOB', "$func(\$glob_copy) does not flatten the glob";
14 is &$func($r), "$r", "$func(\$ref)";
15 is ref\$r, 'REF', "$func(\$ref) does not flatten the ref";
17 is &$func(*glob), '*main::glob', "$func(*glob)";
18 is ref\$::{glob}, 'GLOB', "$func(*glo
[all...]
/openbsd-current/gnu/llvm/libcxx/src/
H A Dstring.cpp74 inline void throw_from_string_out_of_range(const string& func) { argument
75 throw_helper<out_of_range>(func + ": out of range");
78 inline void throw_from_string_invalid_arg(const string& func) { argument
79 throw_helper<invalid_argument>(func + ": no conversion");
85 inline V as_integer_helper(const string& func, const S& str, size_t* idx, int base, F f) { argument
93 throw_from_string_out_of_range(func);
95 throw_from_string_invalid_arg(func);
102 inline V as_integer(const string& func, const S& s, size_t* idx, int base);
106 inline int as_integer(const string& func, const string& s, size_t* idx, int base) { argument
108 long r = as_integer_helper<long>(func,
115 as_integer(const string& func, const string& s, size_t* idx, int base) argument
120 as_integer(const string& func, const string& s, size_t* idx, int base) argument
125 as_integer(const string& func, const string& s, size_t* idx, int base) argument
130 as_integer(const string& func, const string& s, size_t* idx, int base) argument
137 as_integer(const string& func, const wstring& s, size_t* idx, int base) argument
146 as_integer(const string& func, const wstring& s, size_t* idx, int base) argument
153 as_integer(const string& func, const wstring& s, size_t* idx, int base) argument
159 as_integer(const string& func, const wstring& s, size_t* idx, int base) argument
164 as_integer(const string& func, const wstring& s, size_t* idx, int base) argument
172 as_float_helper(const string& func, const S& str, size_t* idx, F f) argument
192 as_float(const string& func, const string& s, size_t* idx) argument
197 as_float(const string& func, const string& s, size_t* idx) argument
202 as_float(const string& func, const string& s, size_t* idx) argument
208 as_float(const string& func, const wstring& s, size_t* idx) argument
213 as_float(const string& func, const wstring& s, size_t* idx) argument
218 as_float(const string& func, const wstring& s, size_t* idx) argument
[all...]
/openbsd-current/gnu/gcc/gcc/config/ia64/
H A Dia64-c.c33 static void ia64_hpux_add_pragma_builtin (tree func);
175 ia64_hpux_add_pragma_builtin (tree func) argument
184 IDENTIFIER_POINTER (func)))
186 add_to_renaming_pragma_list(func,
/openbsd-current/gnu/lib/libstdc++/libstdc++/libsupc++/
H A Deh_terminate.cc74 std::set_terminate (std::terminate_handler func) throw() argument
77 __terminate_handler = func;
82 std::set_unexpected (std::unexpected_handler func) throw() argument
85 __unexpected_handler = func;
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.mike/
H A Dp2806.C16 void func() function
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.other/
H A Dvaarg4.C11 void func(va_list va) function

Completed in 188 milliseconds

1234567891011>>