/frameworks/native/include/utils/ |
D | Debug.h | 38 template<bool C, typename LSH, typename RHS> struct CompileTimeIfElse; 39 template<typename LHS, typename RHS> 40 struct CompileTimeIfElse<true, LHS, RHS> { typedef LHS TYPE; }; 41 template<typename LHS, typename RHS> 42 struct CompileTimeIfElse<false, LHS, RHS> { typedef RHS TYPE; };
|
/frameworks/native/include/private/ui/ |
D | RegionHelper.h | 41 static const uint32_t RHS = 0x6; // 0b110 variable 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/ |
D | ValueEnumerator.cpp | 139 const std::pair<const Value*, unsigned> &RHS) { in operator ()() 141 if (LHS.first->getType() != RHS.first->getType()) in operator ()() 143 VE.getTypeID(RHS.first->getType()); in operator ()() 145 return LHS.second > RHS.second; in operator ()()
|
/frameworks/compile/slang/BitWriter_2_9_func/ |
D | ValueEnumerator.cpp | 139 const std::pair<const Value*, unsigned> &RHS) { in operator ()() 141 if (LHS.first->getType() != RHS.first->getType()) in operator ()() 143 VE.getTypeID(RHS.first->getType()); in operator ()() 145 return LHS.second > RHS.second; in operator ()()
|
/frameworks/compile/libbcc/bcinfo/BitReader_2_7/ |
D | BitcodeReader.cpp | 1391 Constant *RHS = ValueList.getConstantFwdRef(Record[2], CurTy); in ParseConstants() local 1410 V = ConstantExpr::get(Opc, LHS, RHS, Flags); in ParseConstants() 2213 Value *LHS, *RHS; in ParseFunctionBody() local 2215 getValue(Record, OpNum, LHS->getType(), RHS) || in ParseFunctionBody() 2221 I = BinaryOperator::Create((Instruction::BinaryOps)Opc, LHS, RHS); in ParseFunctionBody() 2412 Value *LHS, *RHS; in ParseFunctionBody() local 2414 getValue(Record, OpNum, LHS->getType(), RHS) || in ParseFunctionBody() 2419 I = new FCmpInst((FCmpInst::Predicate)Record[OpNum], LHS, RHS); in ParseFunctionBody() 2421 I = new ICmpInst((ICmpInst::Predicate)Record[OpNum], LHS, RHS); in ParseFunctionBody()
|
/frameworks/compile/slang/ |
D | slang_rs_object_ref_count.cpp | 838 clang::Expr *RHS, 1002 clang::Expr *RHS, in CreateStructRSSetObject() argument 1053 RHS, in CreateStructRSSetObject() 1100 new(C) clang::BinaryOperator(LHS, RHS, clang::BO_Assign, QT, in CreateStructRSSetObject()
|
D | slang_rs_export_type.cpp | 1340 const RSExportConstantArrayType *RHS = in equals() local 1342 return ((getSize() == RHS->getSize()) && in equals() 1343 (getElementType()->equals(RHS->getElementType()))); in equals()
|
/frameworks/compile/libbcc/bcinfo/BitReader_3_0/ |
D | BitcodeReader.cpp | 1691 Constant *RHS = ValueList.getConstantFwdRef(Record[2], CurTy); in ParseConstants() local 1710 V = ConstantExpr::get(Opc, LHS, RHS, Flags); in ParseConstants() 2507 Value *LHS, *RHS; in ParseFunctionBody() local 2509 getValue(Record, OpNum, LHS->getType(), RHS) || in ParseFunctionBody() 2515 I = BinaryOperator::Create((Instruction::BinaryOps)Opc, LHS, RHS); in ParseFunctionBody() 2706 Value *LHS, *RHS; in ParseFunctionBody() local 2708 getValue(Record, OpNum, LHS->getType(), RHS) || in ParseFunctionBody() 2713 I = new FCmpInst((FCmpInst::Predicate)Record[OpNum], LHS, RHS); in ParseFunctionBody() 2715 I = new ICmpInst((ICmpInst::Predicate)Record[OpNum], LHS, RHS); in ParseFunctionBody()
|