HomeSort by relevance Sort by last modified time
    Searched refs:GetRight (Results 1 - 6 of 6) sorted by null

  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/gdiplus/
gdiplustypes.h 205 INT GetRight() const {
232 INT intersectRight = (a.GetRight() < b.GetRight())
233 ? a.GetRight() : b.GetRight();
248 INT intersectRight = (GetRight() < rc.GetRight())
249 ? GetRight() : rc.GetRight();
265 INT unionRight = (a.GetRight() < b.GetRight()
    [all...]
  /art/compiler/optimizing/
constant_folding.cc 164 HConstant* cst_right = instruction->GetRight()->AsConstant();
167 (instruction->GetLeft() == instruction->GetRight())) {
202 if (instruction->GetLeft() == instruction->GetRight()) {
219 if (instruction->GetLeft() == instruction->GetRight()) {
instruction_simplifier.cc 110 DCHECK(binop->GetLeft()->IsNeg() && binop->GetRight()->IsNeg());
112 HNeg* right_neg = binop->GetRight()->AsNeg();
328 HInstruction* right = instruction->GetRight();
374 if (instruction->GetLeft() == instruction->GetRight()) {
545 new (GetGraph()->GetArena()) HSub(instruction->GetType(), sub->GetRight(), sub->GetLeft());
592 if (instruction->GetLeft() == instruction->GetRight()) {
636 HInstruction* right = instruction->GetRight();
bounds_check_elimination.cc 67 HInstruction* right = bin_op->GetRight();
    [all...]
nodes.cc 833 if (GetLeft()->IsIntConstant() && GetRight()->IsIntConstant()) {
835 GetRight()->AsIntConstant()->GetValue());
837 } else if (GetLeft()->IsLongConstant() && GetRight()->IsLongConstant()) {
839 GetRight()->AsLongConstant()->GetValue());
851 if (GetRight()->IsConstant()) {
852 return GetRight()->AsConstant();
867 return GetRight();
    [all...]
nodes.h     [all...]

Completed in 80 milliseconds