HomeSort by relevance Sort by last modified time
    Searched defs:Sentinel (Results 26 - 33 of 33) sorted by null

12

  /external/swiftshader/third_party/LLVM/include/llvm/
Module.h 42 return static_cast<Function*>(&Sentinel);
51 mutable ilist_node<Function> Sentinel;
58 return static_cast<GlobalVariable*>(&Sentinel);
66 mutable ilist_node<GlobalVariable> Sentinel;
73 return static_cast<GlobalAlias*>(&Sentinel);
81 mutable ilist_node<GlobalAlias> Sentinel;
89 return static_cast<NamedMDNode*>(&Sentinel);
99 mutable ilist_node<NamedMDNode> Sentinel;
  /external/llvm/include/llvm/ADT/
ilist.h 70 /// that provides default sentinel implementations for common operations.
72 /// ilist_sentinel_traits implements a lazy dynamic sentinel allocation
73 /// strategy. The sentinel is stored in the prev field of ilist's Head.
77 /// createSentinel - create the dynamic sentinel
80 /// destroySentinel - deallocate the dynamic sentinel
89 /// initialized or assigned a fresh sentinel
90 /// @return the sentinel
101 /// noteHead - stash the sentinel into its default location
102 static void noteHead(NodeTy *NewHead, NodeTy *Sentinel) {
103 ilist_traits<NodeTy>::setPrev(NewHead, Sentinel);
    [all...]
  /external/llvm/include/llvm/CodeGen/
MachineBasicBlock.h 44 mutable ilist_half_node<MachineInstr> Sentinel;
52 return static_cast<MachineInstr*>(&Sentinel);
    [all...]
SelectionDAG.h 86 mutable ilist_half_node<SDNode> Sentinel;
89 return static_cast<SDNode*>(&Sentinel);
    [all...]
  /external/llvm/include/llvm/IR/
Module.h 45 return static_cast<NamedMDNode*>(&Sentinel);
56 mutable ilist_node<NamedMDNode> Sentinel;
    [all...]
  /external/swiftshader/third_party/subzero/src/
IceInst.h     [all...]
IceOperand.h 466 /// RegNumT is for holding target-specific register numbers, plus the sentinel
541 static constexpr int Sentinel = -1;
554 assert(Current != Sentinel);
558 assert(Current != Sentinel);
573 Iterator end() { return Iterator(V, Sentinel); }
    [all...]
  /external/llvm/lib/Support/
YAMLParser.cpp 154 return &Sentinel;
163 mutable Token Sentinel;
    [all...]

Completed in 134 milliseconds

12