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

/frameworks/compile/mclinker/include/mcld/Object/
H A DSectionMap.h140 bool operator()(const Output* LHS, const Output* RHS) const argument
141 { return LHS->order() < RHS->order(); }
/frameworks/compile/slang/BitWriter_2_9/
H A DValueEnumerator.cpp178 bool operator()(const std::pair<const Value*, unsigned> &LHS, argument
181 if (LHS.first->getType() != RHS.first->getType())
182 return VE.getTypeID(LHS.first->getType()) <
185 return LHS.second > RHS.second;
/frameworks/compile/slang/BitWriter_2_9_func/
H A DValueEnumerator.cpp178 bool operator()(const std::pair<const Value*, unsigned> &LHS, argument
181 if (LHS.first->getType() != RHS.first->getType())
182 return VE.getTypeID(LHS.first->getType()) <
185 return LHS.second > RHS.second;
/frameworks/compile/slang/BitWriter_3_2/
H A DValueEnumerator.cpp178 bool operator()(const std::pair<const Value*, unsigned> &LHS, argument
181 if (LHS.first->getType() != RHS.first->getType())
182 return VE.getTypeID(LHS.first->getType()) <
185 return LHS.second > RHS.second;
/frameworks/native/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/
H A Dslang_rs_object_ref_count.cpp821 clang::Expr *LHS,
984 clang::Expr *LHS,
988 clang::QualType QT = LHS->getType();
1022 LHS,
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.cpp1415 Constant *LHS = ValueList.getConstantFwdRef(Record[1], CurTy); local
1435 V = ConstantExpr::get(Opc, LHS, RHS, Flags);
2283 Value *LHS, *RHS; local
2284 if (getValueTypePair(Record, OpNum, NextValueNo, LHS) ||
2285 getValue(Record, OpNum, LHS->getType(), RHS) ||
2289 int Opc = GetDecodedBinaryOpcode(Record[OpNum++], LHS->getType());
2292 I = BinaryOperator::Create((Instruction::BinaryOps)Opc, LHS, RHS);
2483 Value *LHS, *RHS; local
2484 if (getValueTypePair(Record, OpNum, NextValueNo, LHS) ||
2485 getValue(Record, OpNum, LHS
[all...]
/frameworks/compile/libbcc/bcinfo/BitReader_3_0/
H A DBitcodeReader.cpp1716 Constant *LHS = ValueList.getConstantFwdRef(Record[1], CurTy); local
1736 V = ConstantExpr::get(Opc, LHS, RHS, Flags);
2541 Value *LHS, *RHS; local
2542 if (getValueTypePair(Record, OpNum, NextValueNo, LHS) ||
2543 getValue(Record, OpNum, LHS->getType(), RHS) ||
2547 int Opc = GetDecodedBinaryOpcode(Record[OpNum++], LHS->getType());
2550 I = BinaryOperator::Create((Instruction::BinaryOps)Opc, LHS, RHS);
2741 Value *LHS, *RHS; local
2742 if (getValueTypePair(Record, OpNum, NextValueNo, LHS) ||
2743 getValue(Record, OpNum, LHS
[all...]

Completed in 182 milliseconds