Home
last modified time | relevance | path

Searched refs:RHS (Results 1 – 12 of 12) sorted by relevance

/frameworks/rs/rsov/compiler/spirit/
Dword_stream.h47 virtual InputWordStream &operator>>(uint32_t *RHS) = 0;
51 InputWordStream &operator>>(int32_t *RHS) { return *this >> (uint32_t *)RHS; }
60 InputWordStream &operator>>(IdRef *RHS) {
65 RHS->mInstruction = nullptr;
66 return *this >> &RHS->mId;
70 InputWordStream &operator>>(PairLiteralIntegerIdRef *RHS) {
71 return *this >> &RHS->mField0 >> &RHS->mField1;
74 InputWordStream &operator>>(PairIdRefLiteralInteger *RHS) {
75 return *this >> &RHS->mField0 >> &RHS->mField1;
78 InputWordStream &operator>>(PairIdRefIdRef *RHS) {
[all …]
Dword_stream_impl.h39 WordStreamImpl &operator>>(uint32_t *RHS) override {
40 *RHS = *mIter++;
44 WordStreamImpl &operator>>(LiteralContextDependentNumber *RHS) override {
46 return *this >> (uint32_t *)(&RHS->intValue);
53 WordStreamImpl &operator<<(const uint32_t RHS) override {
54 mWords.push_back(RHS);
59 operator<<(const LiteralContextDependentNumber &RHS) override {
64 return *this << (uint32_t)(RHS.intValue);
/frameworks/native/include/private/ui/
DRegionHelper.h44 static const uint32_t RHS = 0x6; // 0b110 variable
46 op_nand = LHS & ~RHS,
47 op_and = LHS & RHS,
48 op_or = LHS | RHS,
49 op_xor = LHS ^ RHS
/frameworks/ml/nn/common/include/
DUtils.h117 #define NN_RET_CHECK_OP(LHS, RHS, OP) \ argument
118 for (auto _values = ::android::base::MakeEagerEvaluator(LHS, RHS); \
121 NN_RET_CHECK_FAIL() << #LHS << " " << #OP << " " << #RHS << " (" << #LHS << " = " \
122 << _values.lhs << ", " << #RHS << " = " << _values.rhs << ") "
/frameworks/compile/slang/BitWriter_2_9_func/
DValueEnumerator.cpp197 const std::pair<const Value*, unsigned> &RHS) { in operator ()()
199 if (LHS.first->getType() != RHS.first->getType()) in operator ()()
201 VE.getTypeID(RHS.first->getType()); in operator ()()
203 return LHS.second > RHS.second; in operator ()()
/frameworks/compile/slang/BitWriter_2_9/
DValueEnumerator.cpp197 const std::pair<const Value*, unsigned> &RHS) { in operator ()()
199 if (LHS.first->getType() != RHS.first->getType()) in operator ()()
201 VE.getTypeID(RHS.first->getType()); in operator ()()
203 return LHS.second > RHS.second; in operator ()()
/frameworks/compile/slang/BitWriter_3_2/
DValueEnumerator.cpp197 const std::pair<const Value*, unsigned> &RHS) { in operator ()()
199 if (LHS.first->getType() != RHS.first->getType()) in operator ()()
201 VE.getTypeID(RHS.first->getType()); in operator ()()
203 return LHS.second > RHS.second; in operator ()()
/frameworks/compile/mclinker/include/mcld/Object/
DSectionMap.h140 bool operator()(const Output* LHS, const Output* RHS) const { in operator()
141 return LHS->order() < RHS->order(); in operator()
/frameworks/compile/libbcc/bcinfo/BitReader_2_7/
DBitcodeReader.cpp1782 Constant *RHS = ValueList.getConstantFwdRef(Record[2], CurTy); in ParseConstants() local
1801 V = ConstantExpr::get(Opc, LHS, RHS, Flags); in ParseConstants()
2663 Value *LHS, *RHS; in ParseFunctionBody() local
2665 getValue(Record, OpNum, LHS->getType(), RHS) || in ParseFunctionBody()
2672 I = BinaryOperator::Create((Instruction::BinaryOps)Opc, LHS, RHS); in ParseFunctionBody()
2884 Value *LHS, *RHS; in ParseFunctionBody() local
2886 getValue(Record, OpNum, LHS->getType(), RHS) || in ParseFunctionBody()
2891 I = new FCmpInst((FCmpInst::Predicate)Record[OpNum], LHS, RHS); in ParseFunctionBody()
2893 I = new ICmpInst((ICmpInst::Predicate)Record[OpNum], LHS, RHS); in ParseFunctionBody()
/frameworks/compile/libbcc/bcinfo/BitReader_3_0/
DBitcodeReader.cpp2075 Constant *RHS = ValueList.getConstantFwdRef(Record[2], CurTy); in ParseConstants() local
2094 V = ConstantExpr::get(Opc, LHS, RHS, Flags); in ParseConstants()
2924 Value *LHS, *RHS; in ParseFunctionBody() local
2926 getValue(Record, OpNum, LHS->getType(), RHS) || in ParseFunctionBody()
2933 I = BinaryOperator::Create((Instruction::BinaryOps)Opc, LHS, RHS); in ParseFunctionBody()
3145 Value *LHS, *RHS; in ParseFunctionBody() local
3147 getValue(Record, OpNum, LHS->getType(), RHS) || in ParseFunctionBody()
3152 I = new FCmpInst((FCmpInst::Predicate)Record[OpNum], LHS, RHS); in ParseFunctionBody()
3154 I = new ICmpInst((ICmpInst::Predicate)Record[OpNum], LHS, RHS); in ParseFunctionBody()
/frameworks/compile/slang/
Dslang_rs_object_ref_count.cpp735 clang::Expr *RHS,
898 clang::Expr *RHS, in CreateStructRSSetObject() argument
952 RHS, in CreateStructRSSetObject()
1001 new(C) clang::BinaryOperator(LHS, RHS, clang::BO_Assign, QT, in CreateStructRSSetObject()
Dslang_rs_export_type.cpp1477 const RSExportConstantArrayType *RHS = in matchODR() local
1479 return ((getNumElement() == RHS->getNumElement()) && in matchODR()
1480 (getElementType()->matchODR(RHS->getElementType(), LookInto))); in matchODR()