HomeSort by: relevance | last modified time | path
    Searched refs:Filtered (Results 1 - 5 of 5) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/Driver/
Multilib.cpp 252 multilib_list Filtered = filterCopy([&FlagSet](const Multilib &M) {
262 if (Filtered.empty())
264 if (Filtered.size() == 1) {
265 M = Filtered[0];
270 llvm::sort(Filtered.begin(), Filtered.end(),
275 if (Filtered[0].priority() > Filtered[1].priority()) {
276 M = Filtered[0];
  /src/external/apache2/llvm/dist/llvm/tools/llvm-pdbutil/
PrettyTypeDumper.cpp 91 std::vector<std::unique_ptr<ClassLayout>> Filtered;
93 Filtered.reserve(UnfilteredCount);
130 Filtered.push_back(std::move(Layout));
134 llvm::sort(Filtered, Comp);
135 return Filtered;
228 // responsive. So only precompute the filtered/sorted set of classes if
230 std::vector<LayoutPtr> Filtered;
233 Filtered = filterAndSortClassDefs(Printer, *Classes, All);
235 Shown = Filtered.size();
240 Printer << ", " << (All - Shown) << " filtered";
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
NewGVN.cpp 1028 auto Filtered = make_filter_range(PHIOperands, [&](const ValPair &P) {
1042 std::transform(Filtered.begin(), Filtered.end(), op_inserter(E),
1722 auto Filtered = make_filter_range(E->operands(), [&](Value *Arg) {
1730 if (Filtered.empty()) {
1744 Value *AllSameValue = *(Filtered.begin());
1745 ++Filtered.begin();
1747 if (llvm::all_of(Filtered, [&](Value *Arg) { return Arg == AllSameValue; })) {
3007 auto Filtered = make_filter_range(MP->operands(), [&](const Use &U) {
3015 if (Filtered.begin() == Filtered.end())
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
LoopInfoImpl.h 113 auto Filtered = make_filter_range(L->blocks(), Pred);
114 for (BlockT *BB : Filtered)
  /src/external/apache2/llvm/dist/llvm/utils/TableGen/
FixedLenDecoderEmitter.cpp 289 // Keeps track of the last opcode in the filtered bucket.
316 // A special case arises when there's only one entry in the filtered
593 // A special case arises when there's only one entry in the filtered
612 // No need to recurse for a singleton filtered instruction.
1071 bool Filtered = PositionFiltered(i);
1076 if (Filtered || Val == -1)
1086 if (Filtered || Val == -1) {
1533 // States: NONE, FILTERED, ALL_SET, ALL_UNSET, and MIXED.
1543 // (FILTERED)---- . ----> (FILTERED)
    [all...]

Completed in 33 milliseconds