Searched refs:function (Results 101 - 125 of 1263) sorted by relevance

1234567891011>>

/freebsd-current/crypto/openssl/crypto/
H A Darmv4cpuid.pl39 .type OPENSSL_atomic_add,%function
75 .type OPENSSL_cleanse,%function
114 .type CRYPTO_memcmp,%function
149 .type _armv7_neon_probe,%function
156 .type _armv7_tick,%function
167 .type _armv8_aes_probe,%function
178 .type _armv8_sha1_probe,%function
189 .type _armv8_sha256_probe,%function
199 .type _armv8_pmull_probe,%function
211 .type OPENSSL_wipe_cpu,%function
[all...]
H A Ds390xcpuid.pl34 .type OPENSSL_s390x_facilities,\@function
56 .type OPENSSL_s390x_functions,\@function
162 .type OPENSSL_rdtsc,\@function
179 .type OPENSSL_atomic_add,\@function
192 .type OPENSSL_wipe_cpu,\@function
212 .type OPENSSL_cleanse,\@function
247 .type CRYPTO_memcmp,\@function
274 .type OPENSSL_instrument_bus,\@function
282 .type OPENSSL_instrument_bus2,\@function
290 .type OPENSSL_vx_probe,\@function
[all...]
/freebsd-current/stand/lua/
H A Dscreen.lua38 function screen.clear()
42 function screen.setcursor(x, y)
46 function screen.setforeground(color_value)
53 function screen.setbackground(color_value)
60 function screen.defcolor()
64 function screen.defcursor()
/freebsd-current/tools/test/xregs_sig/
H A Dc2x2c_aarch64.S9 .type xregs_banks_max, @function
18 .type cpu_to_vfp, @function
42 .type vfp_to_cpu, @function
/freebsd-current/sys/crypto/openssl/arm/
H A Darmv4cpuid.S16 .type OPENSSL_atomic_add,%function
52 .type OPENSSL_cleanse,%function
91 .type CRYPTO_memcmp,%function
126 .type _armv7_neon_probe,%function
133 .type _armv7_tick,%function
144 .type _armv8_aes_probe,%function
155 .type _armv8_sha1_probe,%function
166 .type _armv8_sha256_probe,%function
176 .type _armv8_pmull_probe,%function
188 .type OPENSSL_wipe_cpu,%function
[all...]
/freebsd-current/contrib/llvm-project/lldb/include/lldb/Target/
H A DThreadPlanCallOnFunctionExit.h19 /// This thread plan calls a function object when the current function exits.
25 /// finishes executing its function.
26 using Callback = std::function<void()>;
/freebsd-current/contrib/llvm-project/clang/include/clang/Tooling/
H A DArgumentsAdjusters.h35 using ArgumentsAdjuster = std::function<CommandLineArguments(
/freebsd-current/contrib/llvm-project/compiler-rt/lib/builtins/avr/
H A Ddivmodqi4.S27 .type __divmodqi4, @function
H A Dmulqi3.S37 .type __mulqi3, @function
/freebsd-current/contrib/llvm-project/llvm/tools/llvm-xray/
H A Dxray-registry.cpp19 using HandlerType = std::function<Error()>;
30 assert(Command && "Attempting to register an empty std::function<Error()>");
/freebsd-current/crypto/openssl/engines/
H A De_ossltest_err.c50 static void ERR_OSSLTEST_error(int function, int reason, const char *file, int line) argument
H A De_dasync_err.c50 static void ERR_DASYNC_error(int function, int reason, const char *file, int line) argument
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/Trace/intel-pt/
H A DTaskTimer.cpp17 std::function<void(const std::string &event,
/freebsd-current/sys/dev/acpi_support/
H A Dacpi_sony.c175 int function = oidp->oid_arg2; local
179 acpi_sony_oids[function].getmethod, &val);
181 if (error || !req->newptr || !acpi_sony_oids[function].setmethod)
184 acpi_sony_oids[function].setmethod, val);
H A Dacpi_rapidstart.c109 int function = oidp->oid_arg2; local
113 acpi_rapidstart_oids[function].getmethod, &val);
115 if (error || !req->newptr || !acpi_rapidstart_oids[function].setmethod)
118 acpi_rapidstart_oids[function].setmethod, val);
/freebsd-current/contrib/llvm-project/llvm/include/llvm/DWARFLinker/
H A DDWARFLinkerBase.h77 using MessageHandlerTy = std::function<void(
79 using ObjFileLoaderTy = std::function<ErrorOr<DWARFFile &>(
82 std::function<void(const DWARFFile &File, llvm::StringRef Output)>;
85 using TranslatorFuncTy = std::function<StringRef(StringRef)>;
125 /// Set whether to keep the enclosing function for a static variable.
/freebsd-current/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_redefine_builtins.h41 using function = Define_SANITIZER_COMMON_NO_REDEFINE_BUILTINS_in_cpp_file;
/freebsd-current/contrib/llvm-project/llvm/tools/llvm-remarkutil/
H A DRemarkUtilRegistry.cpp18 using HandlerType = std::function<Error()>;
29 assert(Command && "Attempting to register an empty std::function<Error()>");
/freebsd-current/contrib/wpa/src/utils/
H A Dtrace.c46 * "The dl_iterate_phdr() function walks through the list of an
47 * application's shared objects and calls the function callback
145 const char *function; member in struct:bfd_data
184 &data->function,
208 if (data.function)
209 aname = bfd_demangle(abfd, data.function,
211 name = aname ? aname : data.function;
228 &data.function, &data.line);
248 return data.function;
318 if (data.function
[all...]
/freebsd-current/contrib/llvm-project/compiler-rt/lib/builtins/hexagon/
H A Dcommon_entry_exit_abi1.S9 // Functions that implement common sequences in function prologues and epilogues
15 .type \name, @function
27 .type \name1, @function
/freebsd-current/contrib/llvm-project/lldb/source/Target/
H A DThreadPlanCallFunctionUsingABI.cpp21 // ThreadPlanCallFunctionUsingABI: Plan to call a single function using the ABI
24 Thread &thread, const Address &function, llvm::Type &prototype,
27 : ThreadPlanCallFunction(thread, function, options),
23 ThreadPlanCallFunctionUsingABI( Thread &thread, const Address &function, llvm::Type &prototype, llvm::Type &return_type, llvm::ArrayRef<ABI::CallArgument> args, const EvaluateExpressionOptions &options) argument
/freebsd-current/sys/contrib/openzfs/module/lua/setjmp/
H A Dsetjmp_s390x.S25 .type setjmp,@function
42 .type longjmp,@function
/freebsd-current/contrib/wireguard-tools/
H A Dwg.c17 int (*function)(int, const char**); member in struct:__anon5
60 return subcommands[i].function(argc - 1, argv + 1);
/freebsd-current/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DTypeList.h48 std::function<bool(const lldb::TypeSP &type_sp)> const &callback) const;
50 void ForEach(std::function<bool(lldb::TypeSP &type_sp)> const &callback);
/freebsd-current/contrib/llvm-project/llvm/include/llvm/Support/
H A DThreadPool.h84 return asyncImpl(std::function<decltype(F())()>(std::forward<Func>(F)),
91 return asyncImpl(std::function<decltype(F())()>(std::forward<Func>(F)),
120 static std::pair<std::function<void()>, std::future<ResTy>>
121 createTaskAndFuture(std::function<ResTy()> Task) {
129 static std::pair<std::function<void()>, std::future<void>>
130 createTaskAndFuture(std::function<void()> Task) {
148 std::shared_future<ResTy> asyncImpl(std::function<ResTy()> Task,
152 /// Wrap the Task in a std::function<void()> that sets the result of the
195 std::deque<std::pair<std::function<void()>, ThreadPoolTaskGroup *>> Tasks;

Completed in 411 milliseconds

1234567891011>>