HomeSort by: relevance | last modified time | path
    Searched defs:Function (Results 1 - 25 of 90) sorted by relevancy

1 2 3 4

  /src/external/apache2/llvm/dist/clang/lib/AST/Interp/
Function.cpp 1 //===--- Function.h - Bytecode function for the VM --------------*- C++ -*-===//
9 #include "Function.h"
18 Function::Function(Program &P, const FunctionDecl *F, unsigned ArgSize,
24 CodePtr Function::getCodeBegin() const { return Code.data(); }
26 CodePtr Function::getCodeEnd() const { return Code.data() + Code.size(); }
28 Function::ParamDescriptor Function::getParamDescriptor(unsigned Offset) const {
34 SourceInfo Function::getSource(CodePtr PC) const
    [all...]
Function.h 1 //===--- Function.h - Bytecode function for the VM --------------*- C++ -*-===//
9 // Defines the Function class which holds all bytecode function-specific data.
55 /// Bytecode function.
57 /// Contains links to the bytecode of the function, as well as metadata
59 class Function {
63 /// Returns the size of the function's local stack.
102 /// Checks if the function is valid to call in constexpr.
105 /// Checks if the function is virtual
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
CastValueChecker.cpp 34 enum class CallKind { Function, Method, InstanceOf };
37 std::function<void(const CastValueChecker *, const CallEvent &Call,
61 {&CastValueChecker::evalCast, CallKind::Function}},
63 {&CastValueChecker::evalDynCast, CallKind::Function}},
65 {&CastValueChecker::evalCastOrNull, CallKind::Function}},
67 {&CastValueChecker::evalDynCastOrNull, CallKind::Function}},
475 case CallKind::Function: {
  /src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/Utils/
SymbolRewriter.h 63 /// whether to rewrite a function, global variable, or global alias. Each of
72 Function, /// function - descriptor rewrites a function
  /src/external/gpl3/gdb.old/dist/gdb/
gdbarch_types.py 71 # for a function or method with void return type.
115 class Function(Component):
116 "A Function component is a function pointer member."
150 "Return the name of the function typedef to use."
158 """Return the formal parameter list of the caller function,
169 class Method(Function):
170 "A Method is like a Function but passes the gdbarch through."
gdbarch_components.py 29 # * Function - a function pointer.
31 # * Method - a function pointer, but the function takes a gdbarch as
35 # for instance, you can use the function named "Value" to make a new
51 # Value, Function, and Method share some more parameters. Some of
59 # * "predicate" - a boolean, if True then a _p predicate function will
61 # function for the field. See below.
85 # validation function is used: the field is considered invalid it
87 # within the _p predicate function if the field has "predicate" set t
    [all...]
gdbarch.py 28 from gdbarch_types import Component, Function, Info, Value, components
42 "Filter function to only allow Info components."
47 "Filter function to omit Info components."
107 assert isinstance(c, Function)
150 if isinstance(c, Function):
160 assert isinstance(c, Function)
270 if isinstance(c, Function):
303 if isinstance(c, Function):
312 # Allow a call to a function with a predicate.
  /src/sys/external/bsd/acpica/dist/executer/
exserial.c 57 * FUNCTION: AcpiExReadGpio
106 * FUNCTION: AcpiExWriteGpio
169 * FUNCTION: AcpiExReadSerialBus
189 UINT32 Function;
201 * of Function
213 Function = ACPI_READ | (ObjDesc->Field.Attribute << 16);
219 Function = ACPI_READ;
245 Function = ACPI_READ | (AccessorType << 16);
251 Function = ACPI_READ;
257 Function = ACPI_READ
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/xray/
xray_fdr_log_records.h 10 // This file is a part of XRay, a function call tracing system.
19 enum class RecordType : uint8_t { Function, Metadata };
59 // We only use 28 bits of the function ID, so that we can use as few bytes as
60 // possible. This means we only support 2^28 (268,435,456) unique function ids
xray_interface_internal.h 28 uint64_t Function;
35 uint32_t Function;
  /src/external/apache2/llvm/dist/llvm/include/llvm/XRay/
BlockPrinter.h 28 Function,
BlockVerifier.h 36 Function,
YAMLXRayRecord.h 36 std::string Function;
57 IO.enumCase(Type, "function-enter", xray::RecordTypes::ENTER);
58 IO.enumCase(Type, "function-exit", xray::RecordTypes::EXIT);
59 IO.enumCase(Type, "function-tail-exit", xray::RecordTypes::TAIL_EXIT);
60 IO.enumCase(Type, "function-enter-arg", xray::RecordTypes::ENTER_ARG);
80 IO.mapOptional("function", Record.Function);
InstrumentationMap.h 45 /// The address of the function.
46 uint64_t Function;
60 yaml::Hex64 Function;
67 /// The InstrumentationMap represents the computed function id's and indicated
68 /// function addresses from an object file (or a YAML file). This provides an
69 /// interface to just the mapping between the function id, and the function
89 /// Provides a raw accessor to the unordered map of function addresses.
92 /// Returns an XRay computed function id, provided a function address
    [all...]
  /src/external/gpl3/gdb/dist/gdb/
gdbarch_components.py 29 # * Function - a function pointer.
31 # * Method - a function pointer, but the function takes a gdbarch as
35 # for instance, you can use the function named "Value" to make a new
51 # Value, Function, and Method share some more parameters. Some of
59 # * "predicate" - a boolean, if True then a _p predicate function will
61 # function for the field. See below.
85 # validation function is used: the field is considered invalid it
87 # within the _p predicate function if the field has "predicate" set t
    [all...]
gdbarch_types.py 71 # for a function or method with void return type.
115 class Function(Component):
116 "A Function component is a function pointer member."
150 "Return the name of the function typedef to use."
158 """Return the formal parameter list of the caller function,
169 class Method(Function):
170 "A Method is like a Function but passes the gdbarch through."
gdbarch.py 28 from gdbarch_types import Component, Function, Info, Value, components
42 "Filter function to only allow Info components."
47 "Filter function to omit Info components."
107 assert isinstance(c, Function)
150 if isinstance(c, Function):
160 assert isinstance(c, Function)
270 if isinstance(c, Function):
303 if isinstance(c, Function):
312 # Allow a call to a function with a predicate.
  /src/external/apache2/llvm/dist/clang/include/clang/Analysis/
AnyCall.h 28 /// A function, function pointer, or a C++ method call
29 Function,
47 /// A C++ allocation function call (operator `new`), via C++ new-expression
50 /// A C++ deallocation function call (operator `delete`), via C++
63 /// Corresponds to a statically known declaration of the called function,
64 /// or null if it is not known (e.g. for a function pointer).
72 : Function;
73 if (D && ((K == Function && !isa<FunctionDecl>(D)) ||
105 K = Function;
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/XRay/
BlockVerifier.cpp 39 case BlockVerifier::State::Function:
40 return "Function";
78 mask(State::CustomEvent) | mask(State::Function) |
83 mask(State::CustomEvent) | mask(State::Function) |
88 mask(State::NewCPUId) | mask(State::Function) |
93 mask(State::NewCPUId) | mask(State::Function) |
96 {State::Function,
97 {mask(State::Function) | mask(State::TSCWrap) |
103 {mask(State::CallArg) | mask(State::Function) |
179 return transition(State::Function);
    [all...]
  /src/external/gpl2/texinfo/dist/info/
info.h 37 typedef int Function ();
114 info_error () function to determine how to format and output errors. */
  /src/external/apache2/llvm/dist/llvm/include/llvm/MC/
MCWinEH.h 44 const MCSymbol *Function = nullptr;
60 FrameInfo(const MCSymbol *Function, const MCSymbol *BeginFuncEHLabel)
61 : Begin(BeginFuncEHLabel), Function(Function) {}
62 FrameInfo(const MCSymbol *Function, const MCSymbol *BeginFuncEHLabel,
64 : Begin(BeginFuncEHLabel), Function(Function),
  /src/external/apache2/llvm/dist/llvm/utils/unittest/googlemock/include/gmock/internal/
gmock-internal-utils.h 269 // inline this function to prevent it from showing up in the stack
319 // function calls will be inlined by the compiler and need to be
467 // Apply the function to a tuple of arguments.
476 // Template struct Function<F>, where F must be a function type, contains
479 // Result: the function's return type.
484 // MakeResultVoid: the function type obtained by substituting void
487 // the function type obtained by substituting Something
490 struct Function;
493 struct Function<R(Args...)>
    [all...]
  /src/external/gpl3/gdb/dist/readline/readline/
rltypedefs.h 35 typedef int Function () __attribute__((deprecated));
40 typedef int Function ();
70 /* Input function type */
73 /* Generic function that takes a character buffer (which could be the readline
78 /* `Generic' function pointer typedefs */
  /src/external/gpl3/gdb.old/dist/readline/readline/
rltypedefs.h 35 typedef int Function () __attribute__((deprecated));
40 typedef int Function ();
70 /* Input function type */
73 /* Generic function that takes a character buffer (which could be the readline
78 /* `Generic' function pointer typedefs */
  /src/external/apache2/llvm/dist/llvm/lib/IR/
Function.cpp 1 //===- Function.cpp - Implement the Global object classes -----------------===//
9 // This file implements the Function class for the IR library.
13 #include "llvm/IR/Function.h"
73 using ProfileCount = Function::ProfileCount;
83 Argument::Argument(Type *Ty, const Twine &Name, Function *Par, unsigned ArgNo)
88 void Argument::setParent(Function *parent) {
319 // Helper Methods in Function
322 LLVMContext &Function::getContext() const {
326 unsigned Function::getInstructionCount() const {
334 Function *Function::Create(FunctionType *Ty, LinkageTypes Linkage
    [all...]

Completed in 29 milliseconds

1 2 3 4