/frameworks/rs/rsov/compiler/spirit/ |
D | word_stream.h | 47 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 …]
|
D | word_stream_impl.h | 39 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/ |
D | RegionHelper.h | 44 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/ |
D | Utils.h | 117 #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/ |
D | ValueEnumerator.cpp | 197 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/ |
D | ValueEnumerator.cpp | 197 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/ |
D | ValueEnumerator.cpp | 197 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/ |
D | SectionMap.h | 140 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/ |
D | BitcodeReader.cpp | 1782 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/ |
D | BitcodeReader.cpp | 2075 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/ |
D | slang_rs_object_ref_count.cpp | 735 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()
|
D | slang_rs_export_type.cpp | 1477 const RSExportConstantArrayType *RHS = in matchODR() local 1479 return ((getNumElement() == RHS->getNumElement()) && in matchODR() 1480 (getElementType()->matchODR(RHS->getElementType(), LookInto))); in matchODR()
|