OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:LessGeneral
(Results
1 - 2
of
2
) sorted by null
/external/v8/src/compiler/
representation-change.h
32
return
LessGeneral
(kind_, TruncationKind::kWord32);
35
return
LessGeneral
(kind_, TruncationKind::kWord32) ||
36
LessGeneral
(kind_, TruncationKind::kBool);
39
return
LessGeneral
(kind_, TruncationKind::kFloat64) ||
40
LessGeneral
(kind_, TruncationKind::kWord64);
50
return
LessGeneral
(kind(), other.kind());
70
static bool
LessGeneral
(TruncationKind rep1, TruncationKind rep2);
representation-change.cc
59
if (
LessGeneral
(rep1, rep2)) return rep2;
60
if (
LessGeneral
(rep2, rep1)) return rep1;
62
if (
LessGeneral
(rep1, TruncationKind::kFloat64) &&
63
LessGeneral
(rep2, TruncationKind::kFloat64)) {
73
bool Truncation::
LessGeneral
(TruncationKind rep1, TruncationKind rep2) {
Completed in 42 milliseconds