Searched refs:greater (Results 1 – 4 of 4) sorted by relevance
/art/cmdline/ |
D | token_range.h | 201 auto& greater = Size() < other.Size() ? other : *this; in StartsWith() local 203 return std::equal(smaller.begin(), smaller.end(), greater.begin()); in StartsWith()
|
/art/compiler/optimizing/ |
D | code_generator_x86.cc | 3087 Label less, greater, done; in VisitCompare() local 3117 __ j(kGreater, &greater); // Signed compare. in VisitCompare() 3134 __ j(kUnordered, compare->IsGtBias() ? &greater : &less); in VisitCompare() 3139 __ j(kUnordered, compare->IsGtBias() ? &greater : &less); in VisitCompare() 3149 __ Bind(&greater); in VisitCompare()
|
D | code_generator_arm.cc | 2726 Label less, greater, done; in VisitCompare() local 2733 __ b(&greater, GT); in VisitCompare() 2750 __ b(compare->IsGtBias() ? &greater : &less, VS); // VS for unordered. in VisitCompare() 2759 __ Bind(&greater); in VisitCompare()
|
D | code_generator_x86_64.cc | 1058 Label less, greater, done; in VisitCompare() local 1092 __ j(kUnordered, compare->IsGtBias() ? &greater : &less); in VisitCompare() 1105 __ j(kUnordered, compare->IsGtBias() ? &greater : &less); in VisitCompare() 1115 __ Bind(&greater); in VisitCompare()
|