Searched defs:Sib (Results 1 - 4 of 4) sorted by relevance

/external/llvm/include/llvm/ADT/
H A DIntervalMap.h283 /// @param Sib Left sibling node.
286 void transferToLeftSib(unsigned Size, NodeBase &Sib, unsigned SSize, argument
288 Sib.copy(*this, 0, SSize, Count);
294 /// @param Sib Right sibling node.
297 void transferToRightSib(unsigned Size, NodeBase &Sib, unsigned SSize, argument
299 Sib.moveRight(0, Count, SSize);
300 Sib.copy(*this, Size-Count, 0, Count);
306 /// @param Sib Right sibling node.
310 int adjustFromLeftSib(unsigned Size, NodeBase &Sib, unsigned SSize, int Add) { argument
314 Sib
[all...]
/external/swiftshader/third_party/LLVM/include/llvm/ADT/
H A DIntervalMap.h262 /// @param Sib Left sibling node.
265 void transferToLeftSib(unsigned Size, NodeBase &Sib, unsigned SSize, argument
267 Sib.copy(*this, 0, SSize, Count);
273 /// @param Sib Right sibling node.
276 void transferToRightSib(unsigned Size, NodeBase &Sib, unsigned SSize, argument
278 Sib.moveRight(0, Count, SSize);
279 Sib.copy(*this, Size-Count, 0, Count);
285 /// @param Sib Right sibling node.
289 int adjustFromLeftSib(unsigned Size, NodeBase &Sib, unsigned SSize, int Add) { argument
293 Sib
[all...]
/external/llvm/lib/Target/Hexagon/
H A DRDFGraph.cpp418 Ref.Sib = DA.Addr->getReachedDef();
425 Ref.Sib = DA.Addr->getReachedUse();
1619 NodeId Sib = UA.Addr->getSibling(); local
1622 assert(Sib == 0);
1629 RDA.Addr->setReachedUse(Sib);
1693 NodeId Sib = DA.Addr->getSibling(); local
1695 assert(Sib == 0);
1705 RDA.Addr->setReachedDef(Sib);
1712 TA.Addr->setSibling(Sib);
H A DRDFGraph.h90 // | +-- UseNode --+ Sib +-- UseNode --+ Sib Sib
94 // +-- DefNode --+ Sib
450 NodeId RD, Sib; // Ids of the reaching def and the sibling. member in struct:NodeBase::Ref_struct
492 return Ref.Sib;
494 void setSibling(NodeId Sib) { argument
495 Ref.Sib = Sib;

Completed in 125 milliseconds