#include <GenericOperation.h>
Public メソッド | |
Type | operator() (OpEmulationState *opState) |
GenericOperation.h の 1030 行で定義されています。
Type Onikiri::EmulatorUtility::Operation::FPSub< Type, TSrc1, TSrc2, RoundMode >::operator() | ( | OpEmulationState * | opState | ) | [inline] |
GenericOperation.h の 1032 行で定義されています。
参照先 Type.
01033 { 01034 Type lhs = TSrc1()(opState); 01035 Type rhs = TSrc2()(opState); 01036 01037 Onikiri::ScopedFESetRound sr( RoundMode()(opState) ); 01038 volatile Type rvalue = lhs - rhs; 01039 return rvalue; 01040 }