HomeSort by relevance Sort by last modified time
    Searched refs:Func (Results 101 - 125 of 1149) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/swiftshader/third_party/subzero/src/
IcePhiLoweringImpl.h 33 void prelowerPhis32Bit(TargetT *Target, CfgNode *Node, Cfg *Func) {
43 auto *PhiLo = InstPhi::create(Func, Phi->getSrcSize(), DestLo);
44 auto *PhiHi = InstPhi::create(Func, Phi->getSrcSize(), DestHi);
60 auto *PhiElem = InstPhi::create(Func, Phi->getSrcSize(), DestElem);
IceSwitchLowering.cpp 24 CaseClusterArray CaseCluster::clusterizeSwitch(Cfg *Func,
54 if (CaseClusters.size() < Func->getTarget()->getMinJumpTableSize())
79 InstJumpTable::create(Func, TotalRange, Instr->getLabelDefault());
88 Func->addJumpTable(JumpTable);
IceASanInstrumentation.h 49 bool isInstrumentable(Cfg *Func) override;
57 void instrumentStart(Cfg *Func) override;
58 void finishFunc(Cfg *Func) override;
IceLiveness.h 70 Cfg *getFunc() const { return Func; }
110 static std::unique_ptr<Liveness> create(Cfg *Func, LivenessMode Mode) {
111 return std::unique_ptr<Liveness>(new Liveness(Func, Mode));
123 Liveness(Cfg *Func, LivenessMode Mode)
124 : Alloc(new ArenaAllocator()), AllocScope(this), Func(Func), Mode(Mode) {}
138 Cfg *Func;
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
TreeFilter.cs 35 public delegate TResult Func<T, TResult>(T arg);
121 Func<object, object> pre = delegate(object o)
126 Func<object, object> post = delegate(object o)
  /external/clang/test/CodeGenCXX/
predefined-expr-cxx14.cpp 79 const char *Func;
82 FuncTemplate() : Func(__func__) {}
83 const char *getFunc() const { return Func; }
  /external/libunwind/doc/
_U_dyn_cancel.tex 15 \Type{void} \Func{\_U\_dyn\_cancel}(\Type{unw\_dyn\_info\_t~*}\Var{di});\\
19 The \Func{\_U\_dyn\_cancel}() routine cancels the registration of the
24 The \Func{\_U\_dyn\_cancel}() routine is guaranteed to execute in
26 \Func{\_U\_dyn\_register}() or \Func{\_U\_dyn\_cancel}()).
31 \Func{\_U\_dyn\_cancel}() is thread-safe but \emph{not} safe to use
_U_dyn_register.tex 15 \Type{void} \Func{\_U\_dyn\_register}(\Type{unw\_dyn\_info\_t~*}\Var{di});\\
19 The \Func{\_U\_dyn\_register}() routine registers unwind-info for a
25 The \Func{\_U\_dyn\_register}() routine is guaranteed to execute in
27 \Func{\_U\_dyn\_register}() or \Func{\_U\_dyn\_cancel}()).
32 \Func{\_U\_dyn\_register}() is thread-safe but \emph{not} safe to use
unw_init_remote.tex 15 \Type{int} \Func{unw\_init\_remote}(\Type{unw\_cursor\_t~*}\Var{c}, \Type{unw\_addr\_space\_t~}\Var{as}, \Type{void~*}\Var{arg});\\
19 The \Func{unw\_init\_remote}() routine initializes the unwind cursor
23 address space created with \Func{unw\_create\_addr\_space}().
35 Note that \Func{unw\_init\_remote}() can be used to initiate unwinding
38 generally preferable to use \Func{unw\_init\_local}() instead, because
43 On successful completion, \Func{unw\_init\_remote}() returns 0.
49 \Func{unw\_init\_remote}() is thread-safe. If the local address-space
56 \item[\Const{UNW\_EINVAL}] \Func{unw\_init\_remote}() was called in a
60 \Func{unw\_init\_remote}()).
62 \item[\Const{UNW\_EBADREG}] A register needed by \Func{unw\_init\_remote}(
    [all...]
  /external/llvm/tools/llvm-cov/
llvm-cov.cpp 69 MainFunction Func = StringSwitch<MainFunction>(argv[1])
78 if (Func) {
81 return Func(argc - 1, argv + 1);
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/ssa/
func.go 23 // A Func represents a Go func declaration (or function literal) and its body.
24 // This package compiles each Func independently.
25 // Funcs are single-use; a new Func must be created for every compiled function.
26 type Func struct {
29 fe Frontend // frontend state associated with this Func, callbacks into compiler frontend
71 func NewFunc(fe Frontend) *Func {
72 return &Func{fe: fe, NamedValues: make(map[LocalSlot][]*Value)}
75 // NumBlocks returns an integer larger than the id of any Block in the Func
    [all...]
  /prebuilts/go/linux-x86/src/cmd/compile/internal/ssa/
func.go 23 // A Func represents a Go func declaration (or function literal) and its body.
24 // This package compiles each Func independently.
25 // Funcs are single-use; a new Func must be created for every compiled function.
26 type Func struct {
29 fe Frontend // frontend state associated with this Func, callbacks into compiler frontend
71 func NewFunc(fe Frontend) *Func {
72 return &Func{fe: fe, NamedValues: make(map[LocalSlot][]*Value)}
75 // NumBlocks returns an integer larger than the id of any Block in the Func
    [all...]
  /external/eigen/unsupported/test/
forward_adolc.cpp 99 template<typename Func> void adolc_forward_jacobian(const Func& f)
101 typename Func::InputType x = Func::InputType::Random(f.inputs());
102 typename Func::ValueType y(f.values()), yref(f.values());
103 typename Func::JacobianType j(f.values(),f.inputs()), jref(f.values(),f.inputs());
113 AdolcForwardJacobian<Func> autoj(f);
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/ExecutionEngine/Orc/
RPCUtils.h 188 /// template <typename Func> T allocate():
189 /// Allocate a unique id for function Func.
202 template <typename Func> T allocate() { return NextId++; }
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/ExecutionEngine/Orc/
RPCUtils.h 188 /// template <typename Func> T allocate():
189 /// Allocate a unique id for function Func.
202 template <typename Func> T allocate() { return NextId++; }
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/ExecutionEngine/Orc/
RPCUtils.h 188 /// template <typename Func> T allocate():
189 /// Allocate a unique id for function Func.
202 template <typename Func> T allocate() { return NextId++; }
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/ExecutionEngine/Orc/
RPCUtils.h 188 /// template <typename Func> T allocate():
189 /// Allocate a unique id for function Func.
202 template <typename Func> T allocate() { return NextId++; }
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/ExecutionEngine/Orc/
RPCUtils.h 188 /// template <typename Func> T allocate():
189 /// Allocate a unique id for function Func.
202 template <typename Func> T allocate() { return NextId++; }
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/ExecutionEngine/Orc/
RPCUtils.h 188 /// template <typename Func> T allocate():
189 /// Allocate a unique id for function Func.
202 template <typename Func> T allocate() { return NextId++; }
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/ExecutionEngine/Orc/
RPCUtils.h 188 /// template <typename Func> T allocate():
189 /// Allocate a unique id for function Func.
202 template <typename Func> T allocate() { return NextId++; }
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/ExecutionEngine/Orc/
RPCUtils.h 188 /// template <typename Func> T allocate():
189 /// Allocate a unique id for function Func.
202 template <typename Func> T allocate() { return NextId++; }
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/ExecutionEngine/Orc/
RPCUtils.h 188 /// template <typename Func> T allocate():
189 /// Allocate a unique id for function Func.
202 template <typename Func> T allocate() { return NextId++; }
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/ExecutionEngine/Orc/
RPCUtils.h 188 /// template <typename Func> T allocate():
189 /// Allocate a unique id for function Func.
202 template <typename Func> T allocate() { return NextId++; }
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/ExecutionEngine/Orc/
RPCUtils.h 188 /// template <typename Func> T allocate():
189 /// Allocate a unique id for function Func.
202 template <typename Func> T allocate() { return NextId++; }
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/ExecutionEngine/Orc/
RPCUtils.h 188 /// template <typename Func> T allocate():
189 /// Allocate a unique id for function Func.
202 template <typename Func> T allocate() { return NextId++; }
    [all...]

Completed in 820 milliseconds

1 2 3 45 6 7 8 91011>>