Searched defs:LHS (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/include/private/ui/
H A DRegionHelper.h40 static const uint32_t LHS = 0x5; // 0b101 member in class:android::region_operator
43 op_nand = LHS & ~RHS,
44 op_and = LHS & RHS,
45 op_or = LHS | RHS,
46 op_xor = LHS ^ RHS
/frameworks/compile/slang/BitWriter_2_9/
H A DValueEnumerator.cpp138 bool operator()(const std::pair<const Value*, unsigned> &LHS, argument
141 if (LHS.first->getType() != RHS.first->getType())
142 return VE.getTypeID(LHS.first->getType()) <
145 return LHS.second > RHS.second;
/frameworks/compile/libbcc/lib/CodeGen/
H A DCodeEmitter.cpp369 llvm::GenericValue LHS, RHS; local
370 GetConstantValue(Op0, LHS);
377 Result.IntVal = LHS.IntVal + RHS.IntVal;
381 Result.IntVal = LHS.IntVal - RHS.IntVal;
385 Result.IntVal = LHS.IntVal * RHS.IntVal;
389 Result.IntVal = LHS.IntVal.udiv(RHS.IntVal);
393 Result.IntVal = LHS.IntVal.sdiv(RHS.IntVal);
397 Result.IntVal = LHS.IntVal.urem(RHS.IntVal);
401 Result.IntVal = LHS.IntVal.srem(RHS.IntVal);
405 Result.IntVal = LHS
[all...]
/frameworks/compile/slang/
H A Dslang_rs_object_ref_count.cpp829 clang::Expr *LHS,
993 clang::Expr *LHS,
997 clang::QualType QT = LHS->getType();
1031 LHS,
1090 new(C) clang::BinaryOperator(LHS, RHS, clang::BO_Assign, QT,
992 CreateStructRSSetObject(clang::ASTContext &C, clang::Expr *LHS, clang::Expr *RHS, clang::SourceLocation StartLoc, clang::SourceLocation Loc) argument
/frameworks/compile/libbcc/bcinfo/BitReader_2_7/
H A DBitcodeReader.cpp1336 Constant *LHS = ValueList.getConstantFwdRef(Record[1], CurTy); local
1356 V = ConstantExpr::get(Opc, LHS, RHS, Flags);
2159 Value *LHS, *RHS; local
2160 if (getValueTypePair(Record, OpNum, NextValueNo, LHS) ||
2161 getValue(Record, OpNum, LHS->getType(), RHS) ||
2165 int Opc = GetDecodedBinaryOpcode(Record[OpNum++], LHS->getType());
2167 I = BinaryOperator::Create((Instruction::BinaryOps)Opc, LHS, RHS);
2358 Value *LHS, *RHS; local
2359 if (getValueTypePair(Record, OpNum, NextValueNo, LHS) ||
2360 getValue(Record, OpNum, LHS
[all...]

Completed in 292 milliseconds