Searched refs:mOp (Results 1 – 5 of 5) sorted by relevance
/external/angle/src/compiler/translator/ |
D | IntermNode.cpp | 623 if (BuiltInGroup::IsBuiltIn(mOp) && !BuiltInGroup::IsMath(mOp)) in setPrecisionAndQualifier() 685 ASSERT(BuiltInGroup::IsMath(mOp)); in setPrecisionForMathBuiltInOp() 694 switch (mOp) in setPrecisionForSpecialBuiltInOp() 718 ASSERT(!isFunctionCall() && !isConstructor() && !BuiltInGroup::IsMath(mOp)); in setBuiltInFunctionPrecision() 733 if (mOp == EOpTextureSize) in setBuiltInFunctionPrecision() 742 switch (mOp) in functionName() 748 if (BuiltInGroup::IsBuiltIn(mOp)) in functionName() 752 return GetOperatorString(mOp); in functionName() 1123 TIntermAggregate *copyNode = new TIntermAggregate(mFunction, mType, mOp, ©Seq); in shallowCopy() 1169 return IsAssignment(mOp); in isAssignment() [all …]
|
D | Symbol.h | 316 TOperator getBuiltInOp() const { return mOp; } in getBuiltInOp() 351 mOp(op), 372 mOp(op), in TFunction() 387 const TOperator mOp; // Only set for built-ins variable
|
D | IntermNode.h | 405 TOperator getOp() const { return mOp; } in getOp() 417 TIntermOperator(TOperator op) : TIntermExpression(TType(EbtFloat, EbpUndefined)), mOp(op) {} in TIntermOperator() 418 TIntermOperator(TOperator op, const TType &type) : TIntermExpression(type), mOp(op) {} in TIntermOperator() 422 const TOperator mOp; variable
|
D | Symbol.cpp | 196 mOp(EOpNull), in TFunction()
|
/external/llvm-project/llvm/lib/Target/VE/ |
D | VEInstrInfo.td | 519 Operand immOp = simm7, Operand mOp = mimm, 531 def rm : RR<opc, (outs RCo:$sx), (ins RCi:$sy, mOp:$sz), 533 [(set Tyo:$sx, (OpNode Tyi:$sy, (Tyi mOp:$sz)))]>; 535 def im : RR<opc, (outs RCo:$sx), (ins immOp:$sy, mOp:$sz), 537 [(set Tyo:$sx, (OpNode (Tyi immOp:$sy), (Tyi mOp:$sz)))]> { 551 Operand immOp = simm7, Operand mOp = mimm> { 560 def rm : RR<opc, (outs RCo:$sx), (ins RCi:$sy, mOp:$sz), 562 [(set Tyo:$sx, (OpNode Tyi:$sy, (Tyi mOp:$sz)))]>; 564 def im : RR<opc, (outs RCo:$sx), (ins immOp:$sy, mOp:$sz), 566 [(set Tyo:$sx, (OpNode (Tyi immOp:$sy), (Tyi mOp:$sz)))]>; [all …]
|