Searched refs:function (Results 201 - 225 of 1263) sorted by relevance

1234567891011>>

/freebsd-current/stand/lua/
H A Dconfig.lua84 local function restoreEnv()
115 local function getEnv(key)
124 local function setEnv(key, value)
142 local function setKey(key, name, value)
152 local function escapeName(name)
156 local function processEnvVar(value)
212 local function checkPattern(line, pattern)
213 local function _realCheck(_line, _pattern)
233 -- process function. All trailing characters will be validated. Any $VALUE
251 process = function(
[all...]
H A Dpassword.lua41 local function setup_screen()
48 function password.read(prompt_length)
52 local function draw_twiddle()
87 function password.check()
89 local function doPrompt(prompt, pwd)
92 local function clear_incorrect_text_prompt()
117 local function compare(prompt, pwd)
/freebsd-current/sys/contrib/vchiq/interface/compat/
H A Dvchi_bsd.c58 void (*function)(unsigned long);
73 function = t->function;
76 function(t->data);
86 * function and data are not initialized intentionally:
92 vchiq_setup_timer(struct timer_list *t, void (*function)(unsigned long), unsigned long data)
94 t->function = function;
/freebsd-current/tools/regression/compat32/aarch64/
H A Dswp_test_impl.S24 .type main,%function
103 .type secondary_thread,%function
133 .type thread_loop,%function
204 .type random_cycles,%function
230 .type lock_mutex_swp,%function
240 .type unlock_mutex_swp,%function
248 .type create_thr,%function
281 .type printnum,%function
369 .type print,%function
/freebsd-current/contrib/llvm-project/clang/include/clang/Tooling/Transformer/
H A DTransformer.h71 using ChangeSetConsumer = std::function<void(
98 std::function<void(llvm::Expected<TransformerResult<
142 std::function<void(llvm::Expected<TransformerResult<T>>)> Consumer;
147 std::function<void(llvm::Expected<TransformerResult<T>>)> Consumer)
203 std::function<void(llvm::Expected<TransformerResult<
/freebsd-current/sys/amd64/include/
H A Dasmacros.h64 .type CNAME(name),@function; CNAME(name):
92 .type __CONCAT(X,name),@function; __CONCAT(X,name):
135 .type X\name\()_pti,@function
147 .type X\vec_name\()_pti,@function
158 .type X\vec_name,@function
221 * state for function parameters and return values. To keep this state
/freebsd-current/contrib/llvm-project/llvm/lib/Support/
H A DParallel.cpp42 virtual void add(std::function<void()> func, bool Sequential = false) = 0;
101 void add(std::function<void()> F, bool Sequential = false) override {
149 std::deque<std::function<void()>> WorkQueue;
150 std::deque<std::function<void()>> WorkQueueSequential;
208 void TaskGroup::spawn(std::function<void()> F, bool Sequential) {
/freebsd-current/contrib/llvm-project/llvm/include/llvm/Option/
H A DOptTable.h220 std::function<bool(const Info &)> ExcludeOption) const;
257 std::function<bool(const Option &)> ExcludeOption) const;
288 std::function<bool(const Option &)> ExcludeOption) const;
301 std::function<void(StringRef)> ErrorFn) const;
326 std::function<bool(const Info &)> ExcludeOption) const;
/freebsd-current/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectSource.cpp390 // symbols that line up exactly with function addresses.
397 Function *function = base_address.CalculateSymbolContextFunction(); local
398 if (function) {
399 sc_list_funcs.Append(SymbolContext(function));
406 result.AppendErrorWithFormat("Could not find function named \'%s\'.\n",
412 // Loop through all the ranges in the function.
738 ConstString function; member in struct:CommandObjectSourceList::SourceInfo
742 : function(name), line_entry(line_entry) {}
746 bool IsValid() const { return (bool)function && line_entry.IsValid(); }
749 return function
929 Function *function = base_address.CalculateSymbolContextFunction(); variable
[all...]
/freebsd-current/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_symbolizer_libbacktrace.cpp111 const char *function) {
113 if (function) {
115 info->function = DemangleAlloc(function, /*always_alloc*/ true);
129 info->function = DemangleAlloc(symname, /*always_alloc*/ true);
109 SymbolizeCodePCInfoCallback(void *vdata, uintptr_t addr, const char *filename, int lineno, const char *function) argument
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DIRForTarget.cpp56 IRForTarget::FunctionValueCache::GetValue(llvm::Function *function) { argument
57 if (!m_values.count(function)) {
58 llvm::Value *ret = m_maker(function);
59 m_values[function] = ret;
62 return m_values[function];
65 static llvm::Value *FindEntryInstruction(llvm::Function *function) { argument
66 if (function->empty())
69 return function->getEntryBlock().getFirstNonPHIOrDbg();
435 // Build the function type:
466 // Build the constant containing the pointer to the function
[all...]
/freebsd-current/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DBlock.h129 /// prior to passing the value into this function for dumping.
132 /// Limit the number of levels deep that this function should
148 void GetDescription(Stream *s, Function *function,
161 /// If this block contains inlined function info, it will return
164 /// nor any parent blocks are inlined function blocks.
181 /// If this block contains inlined function info and is at the call
237 const std::function<bool(Variable *)> &filter,
257 /// or the parent block has inlined function info.
268 const std::function<bool(Variable *)> &filter,
271 /// Get const accessor for any inlined function informatio
[all...]
/freebsd-current/sys/contrib/openzfs/module/lua/setjmp/
H A Dsetjmp_ppc.S58 .type name,@function; \
76 .type GLUE(.,name),@function; \
87 .type name,@function; \
/freebsd-current/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DGlobalsModRef.h29 /// function call mod/ref information.
34 std::function<const TargetLibraryInfo &(Function &F)> GetTLI;
50 /// For each function, keep track of what globals are modified or read.
77 std::function<const TargetLibraryInfo &(Function &F)> GetTLI);
90 std::function<const TargetLibraryInfo &(Function &F)> GetTLI,
104 /// getMemoryEffects - Return the behavior of the specified function if
106 /// case the most generic behavior of this function should be returned.
/freebsd-current/libexec/rtld-elf/amd64/
H A Drtld_start.S29 .type .rtld_start,@function
46 * %rdx contains a pointer to a termination function that should be
83 .type _rtld_bind_start,@function
125 /* Now %rax contains the entry point of the function being called. */
164 .type rtld_dynamic_addr,@function
/freebsd-current/sys/crypto/openssl/i386/
H A Dx86cpuid.S5 .type OPENSSL_ia32_cpuid,@function
154 .type OPENSSL_rdtsc,@function
176 .type OPENSSL_instrument_halt,@function
213 .type OPENSSL_far_spin,@function
245 .type OPENSSL_wipe_cpu,@function
281 .type OPENSSL_atomic_add,@function
305 .type OPENSSL_cleanse,@function
347 .type CRYPTO_memcmp,@function
381 .type OPENSSL_instrument_bus,@function
434 .type OPENSSL_instrument_bus2,@function
[all...]
/freebsd-current/sys/dev/xen/efi/
H A Dpvefi.c57 .u.efi_runtime_call.function = XEN_EFI_get_time,
84 .u.efi_runtime_call.function = XEN_EFI_get_time,
105 .u.efi_runtime_call.function = XEN_EFI_get_time,
130 .u.efi_runtime_call.function = XEN_EFI_get_variable,
158 .u.efi_runtime_call.function = XEN_EFI_get_next_variable_name,
185 .u.efi_runtime_call.function = XEN_EFI_set_variable,
/freebsd-current/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/
H A DLocal.h96 std::function<void(Value *)> AboutToDeleteCallback =
97 std::function<void(Value *)>());
110 std::function<void(Value *)> AboutToDeleteCallback =
111 std::function<void(Value *)>());
120 std::function<void(Value *)> AboutToDeleteCallback =
121 std::function<void(Value *)>());
177 /// This function is used to do simplification of a CFG. For example, it
189 /// This function is used to flatten a CFG. For example, it uses parallel-and
202 /// This function takes a virtual register computed by an Instruction and
211 /// This function take
[all...]
/freebsd-current/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCClassDescriptorV2.h58 std::function<void(ObjCLanguageRuntime::ObjCISA)> const &superclass_func,
59 std::function<bool(const char *, const char *)> const
61 std::function<bool(const char *, const char *)> const &class_method_func,
62 std::function<bool(const char *, const char *, lldb::addr_t,
258 bool ProcessMethodList(std::function<bool(const char *, const char *)> const
263 std::function<bool(const char *, const char *)> const
/freebsd-current/contrib/llvm-project/compiler-rt/lib/xray/
H A Dxray_trampoline_mips.S19 .type __xray_FunctionEntry,@function
66 .type __xray_FunctionExit,@function
/freebsd-current/contrib/llvm-project/compiler-rt/lib/builtins/hexagon/
H A Dcommon_entry_exit_legacy.S10 // Functions that implement common sequences in function prologues and epilogues
16 .type \name, @function
28 .type \name1, @function
/freebsd-current/sys/contrib/libsodium/src/libsodium/randombytes/
H A Drandombytes.c99 var randomValuesStandard = function() {
109 var randomValueNodeJS = function() {
/freebsd-current/contrib/bmake/unit-tests/
H A Dcounter.mk18 # See parse.c, function Parse_Var, keyword "!Var_Exists".
H A Dcounter-append.mk18 # See parse.c, function Parse_Var, keyword "!Var_Exists".
/freebsd-current/contrib/llvm-project/lldb/include/lldb/Host/
H A DXML.h41 typedef std::function<bool(const XMLNode &node)> NodeCallback;
42 typedef std::function<bool(const llvm::StringRef &name,

Completed in 381 milliseconds

1234567891011>>