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

  /external/marisa-trie/lib/marisa/
rank.h 8 class Rank {
10 Rank() : abs_(0), rel_lo_(0), rel_hi_(0) {}
  /external/marisa-trie/v0_1_5/lib/marisa_alpha/
rank.h 8 class Rank {
10 Rank() : abs_(0), rel_lo_(0), rel_hi_(0) {}
  /external/llvm/lib/Transforms/Scalar/
Reassociate.cpp 15 // In the implementation of this algorithm, constants are assigned rank = 0,
16 // function arguments are rank = 1, and other values are assigned ranks
18 // (starting at 2), which effectively gives values in deep loops higher rank
52 unsigned Rank;
54 ValueEntry(unsigned R, Value *O) : Rank(R), Op(O) {}
57 return LHS.Rank > RHS.Rank; // Sort so that highest rank goes to start.
71 dbgs() << ", #" << Ops[i].Rank << "] ";
211 return 0; // Otherwise it's a global or constant, rank 0
    [all...]
  /external/clang/lib/Sema/
SemaOverload.cpp 127 /// GetConversionRank - Retrieve the implicit conversion rank
131 Rank[(int)ICK_Num_Conversion_Kinds] = {
157 return Rank[(int)Kind];
210 /// getRank - Retrieve the rank of this standard conversion sequence
211 /// (C++ 13.3.3.1.1p3). The rank is the largest rank of each of the
214 ImplicitConversionRank Rank = ICR_Exact_Match;
215 if (GetConversionRank(First) > Rank)
216 Rank = GetConversionRank(First);
217 if (GetConversionRank(Second) > Rank)
    [all...]

Completed in 814 milliseconds