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

/frameworks/base/include/utils/
H A DDebug.h38 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/compile/libbcc/runtime/make/
H A Dutil.mk6 # Function: streq LHS RHS
8 # Return "true" if LHS == RHS, otherwise "".
10 # LHS == RHS <=> (LHS subst RHS is empty) and (RHS subst LHS is empty)
13 # Function: strneq LHS RHS
15 # Return "true" if LHS != RHS, otherwise "".
/frameworks/compile/libbcc/lib/CodeGen/
H A DCodeEmitter.cpp369 llvm::GenericValue LHS, RHS; local
371 GetConstantValue(CE->getOperand(1), RHS);
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.IntVal & RHS
[all...]
/frameworks/base/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/BitWriter_2_9/
H A DValueEnumerator.cpp139 const std::pair<const Value*, unsigned> &RHS) {
141 if (LHS.first->getType() != RHS.first->getType())
143 VE.getTypeID(RHS.first->getType());
145 return LHS.second > RHS.second;
138 operator ()(const std::pair<const Value*, unsigned> &LHS, const std::pair<const Value*, unsigned> &RHS) argument
/frameworks/compile/slang/
H A Dslang_rs_export_type.cpp1244 const RSExportConstantArrayType *RHS = local
1246 return ((getSize() == RHS->getSize()) &&
1247 (getElementType()->equals(RHS->getElementType())));
H A Dslang_rs_object_ref_count.cpp830 clang::Expr *RHS,
994 clang::Expr *RHS,
1044 RHS,
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.cpp1337 Constant *RHS = ValueList.getConstantFwdRef(Record[2], CurTy); local
1356 V = ConstantExpr::get(Opc, LHS, RHS, Flags);
2159 Value *LHS, *RHS; local
2161 getValue(Record, OpNum, LHS->getType(), RHS) ||
2167 I = BinaryOperator::Create((Instruction::BinaryOps)Opc, LHS, RHS);
2358 Value *LHS, *RHS; local
2360 getValue(Record, OpNum, LHS->getType(), RHS) ||
2365 I = new FCmpInst((FCmpInst::Predicate)Record[OpNum], LHS, RHS);
2367 I = new ICmpInst((ICmpInst::Predicate)Record[OpNum], LHS, RHS);

Completed in 132 milliseconds