Searched defs:RHS (Results 1 - 7 of 7) 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/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.cpp1407 const RSExportConstantArrayType *RHS = local
1409 return ((getSize() == RHS->getSize()) &&
1410 (getElementType()->equals(RHS->getElementType())));
H A Dslang_rs_object_ref_count.cpp839 clang::Expr *RHS,
1003 clang::Expr *RHS,
1054 RHS,
1101 new(C) clang::BinaryOperator(LHS, RHS, clang::BO_Assign, QT,
1001 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.cpp1402 Constant *RHS = ValueList.getConstantFwdRef(Record[2], CurTy); local
1421 V = ConstantExpr::get(Opc, LHS, RHS, Flags);
2224 Value *LHS, *RHS; local
2226 getValue(Record, OpNum, LHS->getType(), RHS) ||
2232 I = BinaryOperator::Create((Instruction::BinaryOps)Opc, LHS, RHS);
2423 Value *LHS, *RHS; local
2425 getValue(Record, OpNum, LHS->getType(), RHS) ||
2430 I = new FCmpInst((FCmpInst::Predicate)Record[OpNum], LHS, RHS);
2432 I = new ICmpInst((ICmpInst::Predicate)Record[OpNum], LHS, RHS);
/frameworks/compile/libbcc/bcinfo/BitReader_3_0/
H A DBitcodeReader.cpp1702 Constant *RHS = ValueList.getConstantFwdRef(Record[2], CurTy); local
1721 V = ConstantExpr::get(Opc, LHS, RHS, Flags);
2518 Value *LHS, *RHS; local
2520 getValue(Record, OpNum, LHS->getType(), RHS) ||
2526 I = BinaryOperator::Create((Instruction::BinaryOps)Opc, LHS, RHS);
2717 Value *LHS, *RHS; local
2719 getValue(Record, OpNum, LHS->getType(), RHS) ||
2724 I = new FCmpInst((FCmpInst::Predicate)Record[OpNum], LHS, RHS);
2726 I = new ICmpInst((ICmpInst::Predicate)Record[OpNum], LHS, RHS);

Completed in 249 milliseconds