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

  /external/llvm/lib/CodeGen/
RegisterScavenging.cpp 255 BitVector &Candidates,
258 int Survivor = Candidates.find_first();
259 assert(Survivor > 0 && "No candidates for scavenging");
274 // Remove any candidates touched by instruction.
278 Candidates.clearBitsNotInMask(MO.getRegMask());
289 Candidates.reset(*AI);
300 if (Candidates.test(Survivor))
303 // All candidates gone?
304 if (Candidates.none())
307 Survivor = Candidates.find_first()
    [all...]
MachineLICM.cpp 151 /// CandidateInfo - Keep track of information about hoisting candidates.
175 SmallVector<CandidateInfo, 32> &Candidates);
407 SmallVector<CandidateInfo, 32> &Candidates) {
485 Candidates.push_back(CandidateInfo(MI, Def, FI));
500 SmallVector<CandidateInfo, 32> Candidates;
504 // collect potential LICM candidates.
528 ProcessMI(MI, PhysRegDefs, PhysRegClobbers, StoredFIs, Candidates);
548 // Now evaluate whether the potential candidates qualify.
556 for (unsigned i = 0, e = Candidates.size(); i != e; ++i) {
557 if (Candidates[i].FI != INT_MIN &
    [all...]
  /external/chromium/third_party/libjingle/source/talk/p2p/base/
sessionmessages.h 49 typedef std::vector<Candidate> Candidates;
110 const Candidates& candidates)
113 candidates(candidates) {}
117 Candidates candidates; member in struct:cricket::TransportInfo
transport.h 78 typedef std::vector<Candidate> Candidates;
80 // Used to parse and serialize (write) transport candidates. For
88 Candidates* candidates,
91 const Candidates& candidates,
171 // Handles sending of ready candidates and receiving of remote candidates.
174 void OnRemoteCandidates(const std::vector<Candidate>& candidates);
  /external/clang/include/clang/Sema/
Overload.h 41 OR_Ambiguous, ///< Ambiguous candidates found.
46 /// Requests that all candidates be shown. Viable candidates will
50 /// Requests that only viable candidates be shown.
741 /// OverloadCandidateSet - A set of overload candidates, used in C++
744 SmallVector<OverloadCandidate, 16> Candidates;
773 /// \brief Clear out all of the candidates.
777 iterator begin() { return Candidates.begin(); }
778 iterator end() { return Candidates.end(); }
780 size_t size() const { return Candidates.size();
    [all...]
  /external/clang/lib/AST/
DeclCXX.cpp     [all...]
  /external/clang/lib/Sema/
SemaTemplate.cpp     [all...]

Completed in 302 milliseconds