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

  /external/llvm/lib/Analysis/
TypeBasedAliasAnalysis.cpp 414 uint64_t OffsetA = TagA.getOffset(), OffsetB = TagB.getOffset();
418 return OffsetA == OffsetB;
421 // Follow the edge with the correct offset, OffsetA will be adjusted to
423 T = T.getParent(OffsetA);
428 // Reset OffsetA and climb the type DAG from base type of B to see if we reach
430 OffsetA = TagA.getOffset();
434 return OffsetA == OffsetB;
  /external/llvm/lib/Target/AArch64/
AArch64InstrInfo.cpp 617 int OffsetA = 0, OffsetB = 0;
634 if (getLdStBaseRegImmOfsWidth(MIa, BaseRegA, OffsetA, WidthA, TRI) &&
637 int LowOffset = OffsetA < OffsetB ? OffsetA : OffsetB;
638 int HighOffset = OffsetA < OffsetB ? OffsetB : OffsetA;
639 int LowWidth = (LowOffset == OffsetA) ? WidthA : WidthB;
    [all...]

Completed in 1247 milliseconds