HomeSort by relevance Sort by last modified time
    Searched defs:UseTrimmed (Results 1 - 2 of 2) sorted by null

  /external/swiftshader/third_party/subzero/src/
IceRegAlloc.cpp 39 constexpr bool UseTrimmed = true;
42 if (Item->getLiveRange().overlapsInst(FirstDef->getNumber(), UseTrimmed))
45 if (Item->getLiveRange().overlapsInst(Def->getNumber(), UseTrimmed))
    [all...]
IceOperand.h 645 bool overlaps(const LiveRange &Other, bool UseTrimmed = false) const;
646 bool overlapsInst(InstNumberT OtherBegin, bool UseTrimmed = false) const;
802 constexpr bool UseTrimmed = true;
803 return Live.overlaps(Other->Live, UseTrimmed);
806 constexpr bool UseTrimmed = true;
807 return Live.overlapsInst(Other->Live.getStart(), UseTrimmed);
    [all...]

Completed in 66 milliseconds