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

  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/gdiplus/
gdiplustypes.h 209 INT GetRight() const {
236 INT intersectRight = (a.GetRight() < b.GetRight())
237 ? a.GetRight() : b.GetRight();
252 INT intersectRight = (GetRight() < rc.GetRight())
253 ? GetRight() : rc.GetRight();
269 INT unionRight = (a.GetRight() < b.GetRight()
    [all...]
  /art/compiler/optimizing/
constant_folding.cc 147 if ((instruction->GetLeft()->IsNullConstant() && !instruction->GetRight()->CanBeNull()) ||
148 (instruction->GetRight()->IsNullConstant() && !instruction->GetLeft()->CanBeNull())) {
159 if ((instruction->GetLeft()->IsNullConstant() && !instruction->GetRight()->CanBeNull()) ||
160 (instruction->GetRight()->IsNullConstant() && !instruction->GetLeft()->CanBeNull())) {
183 if (instruction->GetRight()->IsConstant() &&
184 instruction->GetRight()->AsConstant()->IsArithmeticZero()) {
195 if (instruction->GetRight()->IsConstant() &&
196 instruction->GetRight()->AsConstant()->IsArithmeticZero()) {
303 HConstant* cst_right = instruction->GetRight()->AsConstant();
306 (instruction->GetLeft() == instruction->GetRight())) {
    [all...]
nodes_shared.cc 36 *shift_amount = instruction->AsShl()->GetRight()->AsIntConstant()->GetValue();
39 *shift_amount = instruction->AsShr()->GetRight()->AsIntConstant()->GetValue();
42 *shift_amount = instruction->AsUShr()->GetRight()->AsIntConstant()->GetValue();
instruction_simplifier_shared.cc 54 if (input_binop->GetRight()->IsConstant() &&
55 input_binop->GetRight()->AsConstant()->IsMinusOne()) {
68 input_b = input_binop->GetRight();
127 HInstruction* binop_right = binop->GetRight();
144 mul->GetRight());
157 mul->GetRight());
171 if (mul->GetLeft() == mul->GetRight()) {
176 HInstruction* right = mul->GetRight();
192 HInstruction* right = op->GetRight();
instruction_simplifier.cc 174 DCHECK(binop->GetLeft()->IsNeg() && binop->GetRight()->IsNeg());
176 HNeg* right_neg = binop->GetRight()->AsNeg();
209 HInstruction* right = op->GetRight();
305 HInstruction* binop_right = binop->GetRight();
323 mul->GetRight(),
341 HInstruction* shift_amount = instruction->GetRight();
410 return (sub->GetRight() == other &&
420 new (GetGraph()->GetAllocator()) HRor(ushr->GetType(), ushr->GetLeft(), ushr->GetRight());
425 if (!ushr->GetRight()->HasUses()) {
426 ushr->GetRight()->GetBlock()->RemoveInstruction(ushr->GetRight())
    [all...]
scheduler_arm64.cc 93 if (instr->GetRight()->IsConstant()) {
94 int64_t imm = Int64FromConstant(instr->GetRight()->AsConstant());
161 if (instruction->GetRight()->IsConstant()) {
162 int64_t imm = Int64FromConstant(instruction->GetRight()->AsConstant());
scheduler_arm.cc 110 HInstruction* rhs = instr->GetRight();
134 HInstruction* rhs = instr->GetRight();
499 cond->GetRight()->GetType() == DataType::Type::kBool &&
834 HInstruction* rhs = instruction->GetRight();
897 HInstruction* rhs = instruction->GetRight();
    [all...]
bounds_check_elimination.cc 76 HInstruction* right = bin_op->GetRight();
    [all...]