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

/frameworks/rs/rsov/compiler/spirit/
H A Dword_stream.h47 virtual InputWordStream &operator>>(uint32_t *RHS) = 0;
51 InputWordStream &operator>>(int32_t *RHS) { return *this >> (uint32_t *)RHS; } argument
60 InputWordStream &operator>>(IdRef *RHS) { argument
65 RHS->mInstruction = nullptr;
66 return *this >> &RHS->mId;
70 InputWordStream &operator>>(PairLiteralIntegerIdRef *RHS) { argument
71 return *this >> &RHS->mField0 >> &RHS->mField1;
74 InputWordStream &operator>>(PairIdRefLiteralInteger *RHS) { argument
78 operator >>(PairIdRefIdRef *RHS) argument
101 operator <<(const int32_t RHS) argument
109 operator <<(const IdRef &RHS) argument
113 operator <<(const PairLiteralIntegerIdRef &RHS) argument
117 operator <<(const PairIdRefLiteralInteger &RHS) argument
121 operator <<(const PairIdRefIdRef &RHS) argument
[all...]
/frameworks/compile/slang/BitWriter_2_9/
H A DValueEnumerator.cpp197 const std::pair<const Value*, unsigned> &RHS) {
199 if (LHS.first->getType() != RHS.first->getType())
201 VE.getTypeID(RHS.first->getType());
203 return LHS.second > RHS.second;
196 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.cpp197 const std::pair<const Value*, unsigned> &RHS) {
199 if (LHS.first->getType() != RHS.first->getType())
201 VE.getTypeID(RHS.first->getType());
203 return LHS.second > RHS.second;
196 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.cpp197 const std::pair<const Value*, unsigned> &RHS) {
199 if (LHS.first->getType() != RHS.first->getType())
201 VE.getTypeID(RHS.first->getType());
203 return LHS.second > RHS.second;
196 operator ()(const std::pair<const Value*, unsigned> &LHS, const std::pair<const Value*, unsigned> &RHS) argument
/frameworks/native/include/private/ui/
H A DRegionHelper.h42 static const uint32_t RHS = 0x6; // 0b110 member in class:android::region_operator
44 op_nand = LHS & ~RHS,
45 op_and = LHS & RHS,
46 op_or = LHS | RHS,
47 op_xor = LHS ^ RHS
/frameworks/compile/slang/
H A Dslang_rs_export_type.cpp1478 const RSExportConstantArrayType *RHS = local
1480 return ((getNumElement() == RHS->getNumElement()) &&
1481 (getElementType()->matchODR(RHS->getElementType(), LookInto)));
H A Dslang_rs_object_ref_count.cpp733 clang::Expr *RHS,
896 clang::Expr *RHS,
950 RHS,
999 new(C) clang::BinaryOperator(LHS, RHS, clang::BO_Assign, QT,
894 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.cpp1782 Constant *RHS = ValueList.getConstantFwdRef(Record[2], CurTy); local
1801 V = ConstantExpr::get(Opc, LHS, RHS, Flags);
2663 Value *LHS, *RHS; local
2665 getValue(Record, OpNum, LHS->getType(), RHS) ||
2672 I = BinaryOperator::Create((Instruction::BinaryOps)Opc, LHS, RHS);
2884 Value *LHS, *RHS; local
2886 getValue(Record, OpNum, LHS->getType(), RHS) ||
2891 I = new FCmpInst((FCmpInst::Predicate)Record[OpNum], LHS, RHS);
2893 I = new ICmpInst((ICmpInst::Predicate)Record[OpNum], LHS, RHS);
/frameworks/compile/libbcc/bcinfo/BitReader_3_0/
H A DBitcodeReader.cpp2075 Constant *RHS = ValueList.getConstantFwdRef(Record[2], CurTy); local
2094 V = ConstantExpr::get(Opc, LHS, RHS, Flags);
2924 Value *LHS, *RHS; local
2926 getValue(Record, OpNum, LHS->getType(), RHS) ||
2933 I = BinaryOperator::Create((Instruction::BinaryOps)Opc, LHS, RHS);
3145 Value *LHS, *RHS; local
3147 getValue(Record, OpNum, LHS->getType(), RHS) ||
3152 I = new FCmpInst((FCmpInst::Predicate)Record[OpNum], LHS, RHS);
3154 I = new ICmpInst((ICmpInst::Predicate)Record[OpNum], LHS, RHS);

Completed in 254 milliseconds