Home | History | Annotate | Download | only in Hexagon

Lines Matching defs:AE

32   IndexType S = start(), E = end(), AS = A.start(), AE = A.end();
35 bool SbAE = (S < AE) || (S == AE && A.TiedEnd); // S-before-AE.
48 IndexType AE = (A.end() != IndexType::None) ? A.end() : A.start();
49 if (AE <= E)
59 IndexType AS = A.start(), AE = A.end();
62 if (end() < AE || end() == IndexType::None) {
63 setEnd(AE);
66 if (end() == AE)
116 IndexType AS = A.start(), AE = A.end();
119 // If AE is None, then A is included in B, since A and B overlap.
121 if (AE == IndexType::None)
126 // AE cannot be None since A and B overlap.
127 assert(AE != IndexType::None);
132 if (BE < AE) {
135 add(BS, AE, A.Fixed, false);
137 add(BE, AE, A.Fixed, false);
402 IndexType AE = (A->end() == IndexType::None) ? A->start() : A->end();
403 IndexType DS = IndexMap.getNextIndex(AE);