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 30 *shift_amount = instruction->AsShl()->GetRight()->AsIntConstant()->GetValue();
33 *shift_amount = instruction->AsShr()->GetRight()->AsIntConstant()->GetValue();
36 *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();
318 HInstruction* binop_right = binop->GetRight();
    [all...]
instruction_simplifier.cc 168 DCHECK(binop->GetLeft()->IsNeg() && binop->GetRight()->IsNeg());
170 HNeg* right_neg = binop->GetRight()->AsNeg();
203 HInstruction* right = op->GetRight();
254 HInstruction* shift_amount = instruction->GetRight();
305 return (sub->GetRight() == other &&
314 HRor* ror = new (GetGraph()->GetArena()) HRor(ushr->GetType(), ushr->GetLeft(), ushr->GetRight());
319 if (!ushr->GetRight()->HasUses()) {
320 ushr->GetRight()->GetBlock()->RemoveInstruction(ushr->GetRight());
325 if (!shl->GetRight()->HasUses())
    [all...]
scheduler_arm64.cc 91 if (instr->GetRight()->IsConstant()) {
92 int64_t imm = Int64FromConstant(instr->GetRight()->AsConstant());
159 if (instruction->GetRight()->IsConstant()) {
160 int64_t imm = Int64FromConstant(instruction->GetRight()->AsConstant());
scheduler_arm.cc 107 HInstruction* rhs = instr->GetRight();
131 HInstruction* rhs = instr->GetRight();
503 HInstruction* rhs = instruction->GetRight();
566 HInstruction* rhs = instruction->GetRight();
bounds_check_elimination.cc 75 HInstruction* right = bin_op->GetRight();
    [all...]
nodes.cc     [all...]
nodes_vector.h 178 HInstruction* GetRight() const { return InputAt(1); }
nodes.h     [all...]
code_generator_arm_vixl.cc     [all...]
  /frameworks/native/libs/vr/libdvrcommon/include/private/dvr/
field_of_view.h 30 float GetRight() const { return right_; }
log_helpers.h 56 << (fov.GetRight() * 180.0f / M_PI) << ','

Completed in 232 milliseconds