Searched refs:function (Results 176 - 200 of 1263) sorted by relevance

1234567891011>>

/freebsd-current/sys/contrib/dev/iwlwifi/
H A Diwl-debug.c141 u32 level, bool limit, const char *function,
155 dev_printk(KERN_DEBUG, dev, "%s %pV", function, &vaf);
160 curthread->td_tid, (unsigned int)ticks, function, str);
166 trace_iwlwifi_dbg(level, function, &vaf);
140 __iwl_dbg(struct device *dev, u32 level, bool limit, const char *function, const char *fmt, ...) argument
/freebsd-current/sys/net/altq/
H A Daltq_rmclass_debug.h63 int function; /* address of function */ member in struct:cbqtrace
/freebsd-current/contrib/llvm-project/llvm/include/llvm/DebugInfo/BTF/
H A DBTFContext.h29 // This function is called from objdump when --dwarf=? option is set.
53 std::function<void(Error)> ErrorHandler = WithColor::defaultErrorHandler);
/freebsd-current/contrib/llvm-project/clang/include/clang/Analysis/FlowSensitive/
H A DLogger.h35 /// Each function's analysis is written to a stream obtained from the factory.
37 html(std::function<std::unique_ptr<llvm::raw_ostream>()>);
41 /// Called by the framework as we start analyzing a new function or statement.
58 /// Calls to log() describe the transfer() function.
68 /// The Emit function produces the log message. It may or may not be called,
81 /// This allows log() to skip evaluating its Emit function.
/freebsd-current/contrib/llvm-project/clang/include/clang/Sema/
H A DHLSLExternalSemaSource.h28 using CompletionFunction = std::function<void(CXXRecordDecl *)>;
/freebsd-current/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DStackSafetyAnalysis.h25 /// Interface to access stack safety analysis results for single function.
32 std::function<ScalarEvolution &()> GetSE;
37 StackSafetyInfo(Function *F, std::function<ScalarEvolution &()> GetSE);
64 std::function<const StackSafetyInfo &(Function &F)> GetSSI;
72 Module *M, std::function<const StackSafetyInfo &(Function &F)> GetSSI,
/freebsd-current/contrib/llvm-project/llvm/include/llvm/DWARFLinker/
H A DDWARFFile.h27 using UnloadCallbackTy = std::function<void(StringRef FileName)>;
/freebsd-current/contrib/llvm-project/lldb/bindings/interface/
H A DSBAddressExtensions.i6 # operator== is a free function, which swig does not handle, so we inject
46 function = property(GetFunction, None, doc='''A read only property that returns an lldb object that represents the function (lldb.SBFunction) that this address resides within.''')
H A DSBFunctionExtensions.i6 # operator== is a free function, which swig does not handle, so we inject
14 addr = property(GetStartAddress, None, doc='''A read only property that returns an lldb object that represents the start address (lldb.SBAddress) for this function.''')
15 end_addr = property(GetEndAddress, None, doc='''A read only property that returns an lldb object that represents the end address (lldb.SBAddress) for this function.''')
16 block = property(GetBlock, None, doc='''A read only property that returns an lldb object that represents the top level lexical block (lldb.SBBlock) for this function.''')
17 instructions = property(get_instructions_from_current_target, None, doc='''A read only property that returns an lldb object that represents the instructions (lldb.SBInstructionList) for this function.''')
18 mangled = property(GetMangledName, None, doc='''A read only property that returns the mangled (linkage) name for this function as a string.''')
19 name = property(GetName, None, doc='''A read only property that returns the name for this function as a string.''')
21 type = property(GetType, None, doc='''A read only property that returns an lldb object that represents the return type (lldb.SBType) for this function.''')
H A DSBLineEntryExtensions.i6 # operator== is a free function, which swig does not handle, so we inject
/freebsd-current/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_symbolizer_markup_fuchsia.cpp49 // identify a PC location to a function name, so we always fill in
50 // the function member with a string containing markup around the PC
59 s->info.function = internal_strdup(buffer);
/freebsd-current/stand/lua/
H A Ddrawer.lua63 local function menuEntryName(drawing_menu, entry)
69 if type(entry.name) == "function" then
75 local function processFile(gfxname)
104 local function getBranddef(brand)
131 local function getLogodef(logo)
158 local function draw(x, y, logo)
165 local function drawmenu(menudef)
177 if type(menu_entries) == "function" then
182 -- a visible function.
209 local function defaultfram
[all...]
/freebsd-current/contrib/cortex-strings/scripts/
H A Dlibplot.py6 Record = collections.namedtuple('Record', 'variant function bytes loops src_alignment dst_alignment run_id elapsed rest')
58 for record in [x for x in records if x.function=='bounce']:
65 if record.function == 'bounce':
/freebsd-current/contrib/llvm-project/lldb/include/lldb/Target/
H A DThreadPlanCallFunction.h21 // Create a thread plan to call a function at the address passed in the
22 // "function" argument. If you plan to call GetReturnValueObject, then pass
25 ThreadPlanCallFunction(Thread &thread, const Address &function,
30 ThreadPlanCallFunction(Thread &thread, const Address &function,
53 // To get the return value from a function call you must create a
55 // RequestReturnValue. The ValueSP will be stored and when the function is
66 // Return the stack pointer that the function received on entry. Any stack
67 // address below this should be considered invalid after the function has
78 // reason at the end of the function call. If it hasn't been set for one or
132 m_real_stop_info_sp; // In general we want to hide call function
[all...]
/freebsd-current/contrib/llvm-project/lldb/source/Target/
H A DThreadPlanCallUserExpression.cpp32 // ThreadPlanCallUserExpression: Plan to call a single function
35 Thread &thread, Address &function, llvm::ArrayRef<lldb::addr_t> args,
38 : ThreadPlanCallFunction(thread, function, CompilerType(), args, options),
72 LLDB_LOGF(log, "ThreadPlanCallFunction(%p): Completed call function plan.",
34 ThreadPlanCallUserExpression( Thread &thread, Address &function, llvm::ArrayRef<lldb::addr_t> args, const EvaluateExpressionOptions &options, lldb::UserExpressionSP &user_expression_sp) argument
H A DThreadPlanStepOverRange.cpp111 if (m_addr_context.function) {
112 if (m_addr_context.function != context.function)
114 // It is okay to return to a different block of a straight function, we
123 // Fall back to symbol if we have no decision from comp_unit/function/block.
163 // if the start function really is our start function...
210 // source file of the inlining function. This is bad, because now you
211 // are missing the stack frame for the function containing the inlining,
212 // and if you sensibly do "finish" to get out of this function yo
[all...]
/freebsd-current/sys/netpfil/pf/
H A Dpf_nv.h40 SDT_PROBE_DECLARE(pf, ioctl, function, error);
46 SDT_PROBE3(pf, ioctl, function, error, __func__, error, \
/freebsd-current/libexec/rtld-elf/arm/
H A Drtld_start.S36 .type .rtld_start,%function
71 .type _rtld_bind_start,%function
/freebsd-current/contrib/llvm-project/llvm/lib/Target/AArch64/GISel/
H A DAArch64CallLowering.h63 using RegHandler = std::function<void(MachineIRBuilder &, Type *, unsigned,
67 std::function<void(MachineIRBuilder &, int, CCValAssign &)>;
/freebsd-current/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
H A DCompileOnDemandLayer.h1 //===- CompileOnDemandLayer.h - Compile each function on demand -*- C++ -*-===//
61 std::function<std::unique_ptr<IndirectStubsManager>()>;
65 /// Partitioning function.
67 std::function<std::optional<GlobalValueSet>(GlobalValueSet Requested)>;
70 /// a single function at a time).
84 /// Sets the partition function.
/freebsd-current/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/
H A DHotColdSplitting.h8 // This pass outlines cold regions to a separate function.
39 std::function<OptimizationRemarkEmitter &(Function &)> *GORE,
62 std::function<OptimizationRemarkEmitter &(Function &)> *GetORE;
/freebsd-current/contrib/llvm-project/compiler-rt/lib/hwasan/
H A Dhwasan_tag_mismatch_aarch64.S10 // This entry point function should be called from a __hwasan_check_* symbol.
14 // The __hwasan_check_* caller of this function should have expanded the stack
15 // and saved the previous values of x0, x1, x29, and x30. This function will
17 // In this sense, the __hwasan_check_* callee and this function "share" a stack
19 // in every __hwasan_check_* function, therefore reducing binary size. This is
22 // This function calls HwasanTagMismatch to step back into the C++ code that
23 // completes the stack unwinding and error printing. This function is is not
54 // This function takes two arguments:
58 // This function has two entry points. The first, __hwasan_tag_mismatch, is used
76 .type __hwasan_tag_mismatch, %function
[all...]
/freebsd-current/sys/powerpc/include/
H A Dasm.h70 .type DOT_LABEL(name),@function; \
74 /* ELFv1 user code uses local function entry points */
76 #define TYPE_ENTRY(name) .type name,@function;
82 #define TYPE_ENTRY(name) .type name,@function;
123 .type name,@function; \
130 /* "Naked" function entry. No TOC prologue for ELFv2. */
135 .type name,@function; \
158 .type name,@function; \
/freebsd-current/contrib/llvm-project/llvm/include/llvm/Bitcode/
H A DBitcodeReader.h44 typedef std::function<std::optional<std::string>(StringRef, StringRef)>
47 typedef std::function<Type *(unsigned)> GetTypeByIDTy;
49 typedef std::function<unsigned(unsigned, unsigned)> GetContainedTypeIDTy;
51 typedef std::function<void(Value *, unsigned, GetTypeByIDTy,
55 typedef std::function<void(Metadata **, unsigned, GetTypeByIDTy,
74 /// The ValueType callback is called for every function definition or
79 /// function, the two passed functions can be used to extract type
138 /// Read the bitcode module and prepare for lazy deserialization of function
161 std::function<bool(GlobalValue::GUID)> IsPrevailing = nullptr);
171 /// symbol table should prefer to use irsymtab::read instead of this function
[all...]
/freebsd-current/contrib/lutok/
H A Dstate.cpp128 /// Calls a C++ Lua function from a C calling environment.
130 /// Any errors reported by the C++ function are caught and reported to the
133 /// \param function The C++ function to call.
137 /// function.
139 call_cxx_function_from_c(lutok::cxx_function function, argument
146 return function(state);
167 /// C++ function we have to call. All we do here is safely delegate the
186 lutok::cxx_function* function = state.to_userdata< lutok::cxx_function >( local
188 return call_cxx_function_from_c(*function, raw_stat
206 lutok::cxx_function* function = state.to_userdata< lutok::cxx_function >( local
680 push_cxx_closure(cxx_function function, const int nvalues) argument
696 push_cxx_function(cxx_function function) argument
[all...]

Completed in 264 milliseconds

1234567891011>>