OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Rank
(Results
1 - 2
of
2
) sorted by null
/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
50
unsigned
Rank
;
52
ValueEntry(unsigned R, Value *O) :
Rank
(R), Op(O) {}
55
return LHS.
Rank
> RHS.
Rank
; // Sort so that highest
rank
goes to start.
69
dbgs() << ", #" << Ops[i].
Rank
<< "] ";
174
return 0; // Otherwise it's a global or constant,
rank
0
[
all
...]
/external/clang/lib/Sema/
SemaOverload.cpp
118
/// GetConversionRank - Retrieve the implicit conversion
rank
122
Rank
[(int)ICK_Num_Conversion_Kinds] = {
148
return
Rank
[(int)Kind];
201
/// getRank - Retrieve the
rank
of this standard conversion sequence
202
/// (C++ 13.3.3.1.1p3). The
rank
is the largest
rank
of each of the
205
ImplicitConversionRank
Rank
= ICR_Exact_Match;
206
if (GetConversionRank(First) >
Rank
)
207
Rank
= GetConversionRank(First);
208
if (GetConversionRank(Second) >
Rank
)
[
all
...]
Completed in 499 milliseconds