Searched defs:RHS (Results 1 - 8 of 8) sorted by relevance

/frameworks/compile/slang/BitWriter_2_9/
H A DValueEnumerator.cpp179 const std::pair<const Value*, unsigned> &RHS) {
181 if (LHS.first->getType() != RHS.first->getType())
183 VE.getTypeID(RHS.first->getType());
185 return LHS.second > RHS.second;
178 operator ()(const std::pair<const Value*, unsigned> &LHS, const std::pair<const Value*, unsigned> &RHS) argument
/frameworks/compile/slang/BitWriter_2_9_func/
H A DValueEnumerator.cpp179 const std::pair<const Value*, unsigned> &RHS) {
181 if (LHS.first->getType() != RHS.first->getType())
183 VE.getTypeID(RHS.first->getType());
185 return LHS.second > RHS.second;
178 operator ()(const std::pair<const Value*, unsigned> &LHS, const std::pair<const Value*, unsigned> &RHS) argument
/frameworks/compile/slang/BitWriter_3_2/
H A DValueEnumerator.cpp179 const std::pair<const Value*, unsigned> &RHS) {
181 if (LHS.first->getType() != RHS.first->getType())
183 VE.getTypeID(RHS.first->getType());
185 return LHS.second > RHS.second;
178 operator ()(const std::pair<const Value*, unsigned> &LHS, const std::pair<const Value*, unsigned> &RHS) argument
/frameworks/native/include/private/ui/
H A DRegionHelper.h41 static const uint32_t RHS = 0x6; // 0b110 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/
H A Dslang_rs_export_type.cpp1391 const RSExportConstantArrayType *RHS = local
1393 return ((getSize() == RHS->getSize()) &&
1394 (getElementType()->equals(RHS->getElementType())));
H A Dslang_rs_object_ref_count.cpp822 clang::Expr *RHS,
985 clang::Expr *RHS,
1036 RHS,
1082 new(C) clang::BinaryOperator(LHS, RHS, clang::BO_Assign, QT,
983 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.cpp1416 Constant *RHS = ValueList.getConstantFwdRef(Record[2], CurTy); local
1435 V = ConstantExpr::get(Opc, LHS, RHS, Flags);
2283 Value *LHS, *RHS; local
2285 getValue(Record, OpNum, LHS->getType(), RHS) ||
2292 I = BinaryOperator::Create((Instruction::BinaryOps)Opc, LHS, RHS);
2483 Value *LHS, *RHS; local
2485 getValue(Record, OpNum, LHS->getType(), RHS) ||
2490 I = new FCmpInst((FCmpInst::Predicate)Record[OpNum], LHS, RHS);
2492 I = new ICmpInst((ICmpInst::Predicate)Record[OpNum], LHS, RHS);
/frameworks/compile/libbcc/bcinfo/BitReader_3_0/
H A DBitcodeReader.cpp1717 Constant *RHS = ValueList.getConstantFwdRef(Record[2], CurTy); local
1736 V = ConstantExpr::get(Opc, LHS, RHS, Flags);
2541 Value *LHS, *RHS; local
2543 getValue(Record, OpNum, LHS->getType(), RHS) ||
2550 I = BinaryOperator::Create((Instruction::BinaryOps)Opc, LHS, RHS);
2741 Value *LHS, *RHS; local
2743 getValue(Record, OpNum, LHS->getType(), RHS) ||
2748 I = new FCmpInst((FCmpInst::Predicate)Record[OpNum], LHS, RHS);
2750 I = new ICmpInst((ICmpInst::Predicate)Record[OpNum], LHS, RHS);

Completed in 902 milliseconds