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 << "] ";
136 // Sort the XorOpnd-Pointer in ascending order of symbolic-value-rank
    [all...]
  /external/clang/lib/Sema/
SemaOverload.cpp 136 /// GetConversionRank - Retrieve the implicit conversion rank
140 Rank[(int)ICK_Num_Conversion_Kinds] = {
166 return Rank[(int)Kind];
219 /// getRank - Retrieve the rank of this standard conversion sequence
220 /// (C++ 13.3.3.1.1p3). The rank is the largest rank of each of the
223 ImplicitConversionRank Rank = ICR_Exact_Match;
224 if (GetConversionRank(First) > Rank)
225 Rank = GetConversionRank(First);
226 if (GetConversionRank(Second) > Rank)
    [all...]

Completed in 89 milliseconds