Home
last modified time | relevance | path

Searched refs:DuplexCurrent (Results 1 – 2 of 2) sorted by relevance

/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Hexagon/MCTargetDesc/
DHexagonMCInstrInfo.cpp44 BundleEnd(Inst.end()), DuplexCurrent(Inst.end()), DuplexEnd(Inst.end()) {} in PacketIterator()
49 DuplexCurrent(Inst.end()), DuplexEnd(Inst.end()) {} in PacketIterator()
52 if (DuplexCurrent != DuplexEnd) { in operator ++()
53 ++DuplexCurrent; in operator ++()
54 if (DuplexCurrent == DuplexEnd) { in operator ++()
55 DuplexCurrent = BundleEnd; in operator ++()
65 DuplexCurrent = Inst.begin(); in operator ++()
73 if (DuplexCurrent != DuplexEnd) in operator *()
74 return *DuplexCurrent->getInst(); in operator *()
80 DuplexCurrent == Other.DuplexCurrent && DuplexEnd == Other.DuplexEnd; in operator ==()
DHexagonMCInstrInfo.h48 MCInst::const_iterator DuplexCurrent; variable