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

  /external/llvm/include/llvm/IR/
DataLayout.h 112 SmallVector<unsigned char, 8> LegalIntWidths; ///< Legal Integers.
194 LegalIntWidths = DL.LegalIntWidths;
225 for (unsigned LegalIntWidth : LegalIntWidths)
289 for (unsigned LegalIntWidth : LegalIntWidths)
  /external/llvm/lib/IR/
DataLayout.cpp 310 LegalIntWidths.push_back(Width);
359 LegalIntWidths == Other.LegalIntWidths &&
487 LegalIntWidths.clear();
571 if (!LegalIntWidths.empty()) {
572 OS << "-n" << (unsigned)LegalIntWidths[0];
574 for (unsigned i = 1, e = LegalIntWidths.size(); i != e; ++i)
575 OS << ':' << (unsigned)LegalIntWidths[i];
719 for (unsigned LegalIntWidth : LegalIntWidths)
726 auto Max = std::max_element(LegalIntWidths.begin(), LegalIntWidths.end())
    [all...]

Completed in 58 milliseconds