Searched refs:function (Results 1 - 25 of 1264) sorted by relevance

1234567891011>>

/freebsd-current/tools/regression/posixsem/
H A Dtest.h43 #define TEST(function, name) \
44 static struct regression_test _regtest_##function = { \
45 (function), \
48 DATA_SET(regression_tests_set, _regtest_##function)
/freebsd-current/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_stacktrace_printer.cpp36 const char *StackTracePrinter::StripFunctionName(const char *function) { argument
38 return function;
39 if (!function)
41 auto try_strip = [function](const char *prefix) -> const char * {
43 if (!internal_strncmp(function, prefix, prefix_len))
44 return function + prefix_len;
59 return function;
72 static const char *DemangleFunctionName(const char *function) { argument
74 return function;
75 if (!function)
[all...]
/freebsd-current/contrib/llvm-project/compiler-rt/lib/builtins/
H A Dint_util.c26 void __compilerrt_abort_impl(const char *file, int line, const char *function) { argument
27 panic("%s:%d: abort in %s", file, line, function);
38 void __compilerrt_abort_impl(const char *file, int line, const char *function) { argument
39 __assert_rtn(function, file, line, "libcompiler_rt abort");
52 void __compilerrt_abort_impl(const char *file, int line, const char *function) { argument
/freebsd-current/contrib/ntp/libntp/lib/isc/win32/
H A Donce.c31 isc_once_do(isc_once_t *controller, void(*function)(void)) {
32 REQUIRE(controller != NULL && function != NULL);
38 function();
/freebsd-current/contrib/llvm-project/llvm/tools/llvm-xray/
H A Dxray-registry.h21 // Use |CommandRegistration| as a global initialiser that registers a function
31 CommandRegistration(cl::SubCommand *SC, std::function<Error()> Command);
34 // Requires that |SC| is not null and has an associated function to it.
35 std::function<Error()> dispatch(cl::SubCommand *SC);
/freebsd-current/contrib/llvm-project/llvm/tools/llvm-remarkutil/
H A DRemarkUtilRegistry.h21 // Use |CommandRegistration| as a global initialiser that registers a function
31 CommandRegistration(cl::SubCommand *SC, std::function<Error()> Command);
34 // Requires that |SC| is not null and has an associated function to it.
35 std::function<Error()> dispatch(cl::SubCommand *SC);
/freebsd-current/contrib/llvm-project/compiler-rt/lib/builtins/riscv/
H A Dsave.S24 .type __riscv_save_12,@function
32 .type __riscv_save_11,@function
34 .type __riscv_save_10,@function
36 .type __riscv_save_9,@function
38 .type __riscv_save_8,@function
53 .type __riscv_save_7,@function
55 .type __riscv_save_6,@function
57 .type __riscv_save_5,@function
59 .type __riscv_save_4,@function
79 .type __riscv_save_3,@function
[all...]
H A Drestore.S28 .type __riscv_restore_12,@function
35 .type __riscv_restore_11,@function
37 .type __riscv_restore_10,@function
39 .type __riscv_restore_9,@function
41 .type __riscv_restore_8,@function
54 .type __riscv_restore_7,@function
56 .type __riscv_restore_6,@function
58 .type __riscv_restore_5,@function
60 .type __riscv_restore_4,@function
73 .type __riscv_restore_3,@function
[all...]
/freebsd-current/contrib/sendmail/libsm/
H A Dfwalk.c23 ** SM_FWALK -- apply a function to all found-open file pointers
26 ** function -- a function vector to be applied
30 ** The (binary) OR'd result of each function call
34 sm_fwalk(function, timeout)
35 int (*function) __P((SM_FILE_T *, int *));
56 ret |= (*function)(fp, &fptimeout);
/freebsd-current/contrib/llvm-project/lldb/include/lldb/Host/
H A DThreadLauncher.h24 std::function<lldb::thread_result_t()> thread_function,
32 std::function<lldb::thread_result_t()> impl;
35 std::function<lldb::thread_result_t()> impl)
/freebsd-current/contrib/llvm-project/llvm/lib/Target/NVPTX/
H A DNVPTXAllocaHoisting.cpp36 bool runOnFunction(Function &function) override;
40 bool NVPTXAllocaHoisting::runOnFunction(Function &function) { argument
42 Function::iterator I = function.begin();
45 for (Function::iterator E = function.end(); I != E; ++I) {
/freebsd-current/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DRegAllocCommon.h19 typedef std::function<bool(const TargetRegisterInfo &TRI,
22 /// Default register class filter function for register allocation. All virtual
/freebsd-current/contrib/llvm-project/compiler-rt/lib/builtins/avr/
H A Dexit.S13 .type _exit, @function
/freebsd-current/contrib/llvm-project/llvm/include/llvm/ObjCopy/ELF/
H A DELFConfig.h25 std::function<uint64_t(uint64_t)> EntryExpr;
/freebsd-current/sys/cddl/contrib/opensolaris/uts/common/sys/
H A Dasm_linkage.h59 .type x, @function; \
67 .type x, @function; \
71 * SET_SIZE trails a function and set the size for the ELF symbol table.
/freebsd-current/sys/contrib/openzfs/tests/zfs-tests/tests/functional/channel_program/lua_core/
H A Dtst.lib_coroutine.lua35 local function eqtab (t1, t2)
44 function foo (a, ...)
79 local function foo (i) return coroutine.yield(i) end
80 f = coroutine.wrap(function ()
90 function pf (n, i)
105 function gen (n)
106 return coroutine.wrap(function ()
112 function filter (p, g)
113 return coroutine.wrap(function ()
137 co = coroutine.wrap(function()
[all...]
/freebsd-current/contrib/llvm-project/llvm/include/llvm/Support/
H A DPrintable.h1 //===--- Printable.h - Print function helpers -------------------*- C++ -*-===//
23 /// Simple wrapper around std::function<void(raw_ostream&)>.
35 /// leads to operator << being ambiguous as function has matching constructors
40 std::function<void(raw_ostream &OS)> Print;
41 Printable(std::function<void(raw_ostream &OS)> Print)
/freebsd-current/usr.sbin/bhyve/
H A Dipc.h41 #define IPC_COMMAND(set, name, function) \
43 { #name, function }; \
/freebsd-current/lib/csu/i386/
H A Dcrti.S30 .type _init,@function
39 .type _fini,@function
/freebsd-current/lib/csu/amd64/
H A Dcrti.S30 .type _init,@function
38 .type _fini,@function
/freebsd-current/lib/libc/stdio/
H A Dfwalk.c41 _fwalk(int (*function)(FILE *))
59 ret |= (*function)(fp);
/freebsd-current/contrib/llvm-project/llvm/include/llvm/Transforms/Coroutines/
H A DCoroSplit.h25 const std::function<bool(Instruction &)> MaterializableCallback;
28 CoroSplitPass(std::function<bool(Instruction &)> MaterializableCallback,
/freebsd-current/usr.sbin/mpsutil/
H A Dmpsutil.h63 #define MPS_COMMAND(set, name, function, args, desc) \
64 static struct mpsutil_command function ## _mpsutil_command = \
65 { #name, function }; \
66 DATA_SET(MPS_DATASET(set), function ## _mpsutil_command); \
68 function ## _usage(const char **a3, const char **a4) \
74 static struct mpsutil_usage function ## _mpsutil_usage = \
75 { #set, #name, function ## _usage }; \
76 DATA_SET(MPS_DATASET(usage), function ## _mpsutil_usage);
78 #define _MPS_COMMAND(set, name, function) \
79 static struct mpsutil_command function ## _mpsutil_comman
[all...]
/freebsd-current/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/
H A DInternalize.h10 // If the function or variable does not need to be preserved according to the
16 // For example: Internalizing a function with external linkage. Only if we are
46 const std::function<bool(const GlobalValue &)> MustPreserveGV;
63 InternalizePass(std::function<bool(const GlobalValue &)> MustPreserveGV)
73 /// Helper function to internalize functions and variables in a Module.
76 std::function<bool(const GlobalValue &)> MustPreserveGV) {
/freebsd-current/contrib/llvm-project/llvm/include/llvm/Passes/
H A DPassBuilder.h81 /// Tuning option to enable/disable function merging. Its default value is
92 // stale/imprecise but still valid. Currently this invalidates all function
93 // analyses after various module->function or cgscc->function adaptors in the
154 /// Registers all available function analysis passes.
157 /// FunctionAnalysisManager with all registered function analyses. Callers can
169 /// Registers all available machine function analysis passes.
172 /// MachineFunctionAnalysisManager with all registered function analyses.
177 /// Construct the core LLVM function canonicalization and simplification
180 /// This is a long pipeline and uses most of the per-function optimizatio
[all...]

Completed in 210 milliseconds

1234567891011>>