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

1 23 4 5 6 7 8 91011>>

  /external/llvm/lib/DebugInfo/PDB/
PDBContext.cpp 43 if (auto Func = dyn_cast_or_null<PDBSymbolFunc>(Symbol.get())) {
44 Length = Func->getLength();
102 auto *Func = dyn_cast_or_null<PDBSymbolFunc>(FuncSymbol.get());
114 if (!Func || Func->getVirtualAddress() == PS->getVirtualAddress())
119 return Func ? Func->getName() : std::string();
  /external/swiftshader/third_party/subzero/src/
IceLiveness.cpp 41 SizeT NumVars = Func->getVariables().size();
42 SizeT NumNodes = Func->getNumNodes();
43 VariablesMetadata *VMetadata = Func->getVMetadata();
49 for (auto I = FirstVar, E = Func->getVariables().end(); I != E; ++I) {
65 for (auto I = FirstNode, E = Func->getNodes().end(); I != E; ++I) {
81 for (auto I = FirstVar, E = Func->getVariables().end(); I != E; ++I) {
101 for (auto I = Func->getVariables().begin(); I != FirstVar; ++I) {
111 for (auto I = FirstNode, E = Func->getNodes().end(); I != E; ++I) {
124 NodeList::const_iterator FirstNode = Func->getNodes().begin();
125 VarList::const_iterator FirstVar = Func->getVariables().begin()
    [all...]
WasmTranslator.cpp 264 explicit IceBuilder(class Cfg *Func)
265 : ControlPtr(nullptr), Func(Func), Ctx(Func->getContext()) {}
270 return Func->allocateArrayOf<Node>(Count);
276 auto *Entry = Func->getEntryNode();
286 Entry->appendInst(InstLoad::create(Func, WasmMemoryV, WasmMemoryPtr));
295 Func->addArg(Arg);
301 auto *Loop = Func->makeNode();
303 Entry->appendInst(InstBr::create(Func, Loop))
    [all...]
IceRegAlloc.cpp 38 bool overlapsDefs(const Cfg *Func, const Variable *Item, const Variable *Var) {
40 VariablesMetadata *VMetadata = Func->getVMetadata();
51 void dumpDisableOverlap(const Cfg *Func, const Variable *Var,
55 if (!Func->isVerbose(IceV_LinearScan))
58 VariablesMetadata *VMetadata = Func->getVMetadata();
59 Ostream &Str = Func->getContext()->getStrDump();
71 void dumpLiveRange(const Variable *Var, const Cfg *Func) {
74 Ostream &Str = Func->getContext()->getStrDump();
82 Var->dump(Func);
100 LinearScan::LinearScan(Cfg *Func)
    [all...]
IceInstrumentation.cpp 28 void Instrumentation::instrumentFunc(Cfg *Func) {
29 assert(Func);
30 assert(!Func->getNodes().empty());
32 if (!isInstrumentable(Func))
37 Context.init(Func->getNodes().front());
38 for (CfgNode *Node : Func->getNodes()) {
52 std::string FuncName = Func->getFunctionName().toStringOrEmpty();
54 instrumentStart(Func);
56 finishFunc(Func);
  /device/linaro/bootloader/edk2/MdeModulePkg/Bus/Pci/PciBusDxe/
PciRomTable.c 25 UINT8 Func;
41 @param Func Func NO of PCI space.
52 IN UINT8 Func,
82 mRomImageTable[mNumberOfPciRomImages].Func = Func;
113 mRomImageTable[Index].Func == PciIoDevice->FunctionNumber ) {
  /external/libunwind/doc/
unw_getcontext.tex 15 \Type{int} \Func{unw\_getcontext}(\Type{unw\_context\_t~*}\Var{ucp});\\
19 The \Func{unw\_getcontext}() routine initializes the context structure
21 exact set of registers stored by \Func{unw\_getcontext}() is
33 \Func{getcontext}() instead of \Func{unw\_getcontext}(). However, the
35 initialized by \Func{unw\_getcontext()} in places where a structure
36 initialized by \Func{getcontext()} is expected. The reason for this
37 asymmetry is that \Func{unw\_getcontext()} is optimized for maximum
42 On successful completion, \Func{unw\_getcontext}() returns 0.
47 \Func{unw\_getcontext}() is thread-safe as well as safe to us
    [all...]
unw_resume.tex 15 \Type{int} \Func{unw\_resume}(\Type{unw\_cursor\_t~*}\Var{cp});\\
19 The \Func{unw\_resume}() routine resumes execution at the stack frame
23 For local unwinding, \Func{unw\_resume}() restores the machine state
25 \Func{unw\_resume}() does not return in this case. Restoring the
29 \Var{cp} was interrupted by a signal, then \Func{unw\_resume}() will
31 \Func{unw\_resume}() on a cursor which identifies the stack frame of
35 For remote unwinding, \Func{unw\_resume}() installs the machine state
36 identified by the cursor by calling the \Func{access\_reg} and
37 \Func{access\_fpreg} accessor callbacks as needed. Once that is
38 accomplished, the \Func{resume} accessor callback is invoked. Th
    [all...]
unw_get_accessors.tex 15 \Type{unw\_accessors\_t~*}\Func{unw\_get\_accessors}(\Type{unw\_addr\_space\_t~}\Var{as});\\
19 The \Func{unw\_get\_accessors}() routine returns a pointer to a
22 (see \Func{unw\_create\_addr\_space}(3)). The returned pointer is
24 by a call to \Func{unw\_destroy\_addr\_space}(3).
26 Note that \Func{unw\_get\_accessors}() can be used to retrieve the
32 The \Func{unw\_get\_accessors}() routine cannot fail and always
38 The \Func{unw\_get\_accessors}() routine is thread-safe as well as
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ExecutionEngine/Orc/
RPCUtils.h 85 /// template <typename Func> T allocate():
86 /// Allocate a unique id for function Func.
99 template <typename Func> T allocate() { return NextId++; }
794 /// Negotiate a function id for Func with the other end of the channel.
795 template <typename Func> Error negotiateFunction(bool Retry = false) {
796 return getRemoteFunctionId<Func>(true, Retry).takeError();
799 /// Append a call Func, does not call send on the channel.
801 /// function returns. The handler should take an Expected<Func::ReturnType>,
802 /// or an Error (if Func::ReturnType is void). The handler will be called
804 template <typename Func, typename HandlerT, typename... ArgTs
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/ExecutionEngine/Orc/
RPCUtils.h 85 /// template <typename Func> T allocate():
86 /// Allocate a unique id for function Func.
99 template <typename Func> T allocate() { return NextId++; }
794 /// Negotiate a function id for Func with the other end of the channel.
795 template <typename Func> Error negotiateFunction(bool Retry = false) {
796 return getRemoteFunctionId<Func>(true, Retry).takeError();
799 /// Append a call Func, does not call send on the channel.
801 /// function returns. The handler should take an Expected<Func::ReturnType>,
802 /// or an Error (if Func::ReturnType is void). The handler will be called
804 template <typename Func, typename HandlerT, typename... ArgTs
    [all...]
  /external/eigen/Eigen/src/Core/util/
Meta.h 300 template<typename Func, typename ArgType, int SizeOf=sizeof(has_none)>
303 template<typename Func, typename ArgType>
304 struct unary_result_of_select<Func, ArgType, sizeof(has_std_result_type)> {typedef typename Func::result_type type;};
306 template<typename Func, typename ArgType>
307 struct unary_result_of_select<Func, ArgType, sizeof(has_tr1_result)> {typedef typename Func::template result<Func(ArgType)>::type type;};
309 template<typename Func, typename ArgType>
310 struct result_of<Func(ArgType)>
    [all...]
  /external/llvm/include/llvm/Analysis/
TargetLibraryInfo.h 45 enum Func {
71 void setState(LibFunc::Func F, AvailabilityState State) {
75 AvailabilityState getState(LibFunc::Func F) const {
87 bool isValidProtoForLibFunc(const FunctionType &FTy, LibFunc::Func F,
116 bool getLibFunc(StringRef funcName, LibFunc::Func &F) const;
123 bool getLibFunc(const Function &FDecl, LibFunc::Func &F) const;
126 void setUnavailable(LibFunc::Func F) {
131 void setAvailable(LibFunc::Func F) {
137 void setAvailableWithName(LibFunc::Func F, StringRef Name) {
217 bool getLibFunc(StringRef funcName, LibFunc::Func &F) const
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/DebugInfo/CodeView/
RecordSerialization.h 72 serialize_conditional_impl(T &Item, U Func) : Item(Item), Func(Func) {}
75 if (!Func())
81 U Func;
85 serialize_conditional_impl<T, U> serialize_conditional(T &Item, U Func) {
86 return serialize_conditional_impl<T, U>(Item, Func);
90 serialize_array_impl(ArrayRef<T> &Item, U Func) : Item(Item), Func(Func) {}
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/DebugInfo/CodeView/
RecordSerialization.h 72 serialize_conditional_impl(T &Item, U Func) : Item(Item), Func(Func) {}
75 if (!Func())
81 U Func;
85 serialize_conditional_impl<T, U> serialize_conditional(T &Item, U Func) {
86 return serialize_conditional_impl<T, U>(Item, Func);
90 serialize_array_impl(ArrayRef<T> &Item, U Func) : Item(Item), Func(Func) {}
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/DebugInfo/CodeView/
RecordSerialization.h 72 serialize_conditional_impl(T &Item, U Func) : Item(Item), Func(Func) {}
75 if (!Func())
81 U Func;
85 serialize_conditional_impl<T, U> serialize_conditional(T &Item, U Func) {
86 return serialize_conditional_impl<T, U>(Item, Func);
90 serialize_array_impl(ArrayRef<T> &Item, U Func) : Item(Item), Func(Func) {}
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/DebugInfo/CodeView/
RecordSerialization.h 72 serialize_conditional_impl(T &Item, U Func) : Item(Item), Func(Func) {}
75 if (!Func())
81 U Func;
85 serialize_conditional_impl<T, U> serialize_conditional(T &Item, U Func) {
86 return serialize_conditional_impl<T, U>(Item, Func);
90 serialize_array_impl(ArrayRef<T> &Item, U Func) : Item(Item), Func(Func) {}
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/DebugInfo/CodeView/
RecordSerialization.h 72 serialize_conditional_impl(T &Item, U Func) : Item(Item), Func(Func) {}
75 if (!Func())
81 U Func;
85 serialize_conditional_impl<T, U> serialize_conditional(T &Item, U Func) {
86 return serialize_conditional_impl<T, U>(Item, Func);
90 serialize_array_impl(ArrayRef<T> &Item, U Func) : Item(Item), Func(Func) {}
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/DebugInfo/CodeView/
RecordSerialization.h 72 serialize_conditional_impl(T &Item, U Func) : Item(Item), Func(Func) {}
75 if (!Func())
81 U Func;
85 serialize_conditional_impl<T, U> serialize_conditional(T &Item, U Func) {
86 return serialize_conditional_impl<T, U>(Item, Func);
90 serialize_array_impl(ArrayRef<T> &Item, U Func) : Item(Item), Func(Func) {}
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/DebugInfo/CodeView/
RecordSerialization.h 72 serialize_conditional_impl(T &Item, U Func) : Item(Item), Func(Func) {}
75 if (!Func())
81 U Func;
85 serialize_conditional_impl<T, U> serialize_conditional(T &Item, U Func) {
86 return serialize_conditional_impl<T, U>(Item, Func);
90 serialize_array_impl(ArrayRef<T> &Item, U Func) : Item(Item), Func(Func) {}
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/DebugInfo/CodeView/
RecordSerialization.h 72 serialize_conditional_impl(T &Item, U Func) : Item(Item), Func(Func) {}
75 if (!Func())
81 U Func;
85 serialize_conditional_impl<T, U> serialize_conditional(T &Item, U Func) {
86 return serialize_conditional_impl<T, U>(Item, Func);
90 serialize_array_impl(ArrayRef<T> &Item, U Func) : Item(Item), Func(Func) {}
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/DebugInfo/CodeView/
RecordSerialization.h 72 serialize_conditional_impl(T &Item, U Func) : Item(Item), Func(Func) {}
75 if (!Func())
81 U Func;
85 serialize_conditional_impl<T, U> serialize_conditional(T &Item, U Func) {
86 return serialize_conditional_impl<T, U>(Item, Func);
90 serialize_array_impl(ArrayRef<T> &Item, U Func) : Item(Item), Func(Func) {}
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/DebugInfo/CodeView/
RecordSerialization.h 72 serialize_conditional_impl(T &Item, U Func) : Item(Item), Func(Func) {}
75 if (!Func())
81 U Func;
85 serialize_conditional_impl<T, U> serialize_conditional(T &Item, U Func) {
86 return serialize_conditional_impl<T, U>(Item, Func);
90 serialize_array_impl(ArrayRef<T> &Item, U Func) : Item(Item), Func(Func) {}
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/DebugInfo/CodeView/
RecordSerialization.h 72 serialize_conditional_impl(T &Item, U Func) : Item(Item), Func(Func) {}
75 if (!Func())
81 U Func;
85 serialize_conditional_impl<T, U> serialize_conditional(T &Item, U Func) {
86 return serialize_conditional_impl<T, U>(Item, Func);
90 serialize_array_impl(ArrayRef<T> &Item, U Func) : Item(Item), Func(Func) {}
    [all...]
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/DebugInfo/CodeView/
RecordSerialization.h 72 serialize_conditional_impl(T &Item, U Func) : Item(Item), Func(Func) {}
75 if (!Func())
81 U Func;
85 serialize_conditional_impl<T, U> serialize_conditional(T &Item, U Func) {
86 return serialize_conditional_impl<T, U>(Item, Func);
90 serialize_array_impl(ArrayRef<T> &Item, U Func) : Item(Item), Func(Func) {}
    [all...]

Completed in 754 milliseconds

1 23 4 5 6 7 8 91011>>