#include <GenericOperation.h>
Public メソッド | |
Type | operator() (OpEmulationState *opState) |
GenericOperation.h の 1083 行で定義されています。
Type Onikiri::EmulatorUtility::Operation::FPSubTest< Type, TSrc1, TSrc2, RoundMode >::operator() | ( | OpEmulationState * | opState | ) | [inline] |
GenericOperation.h の 1085 行で定義されています。
参照先 Type.
01086 { 01087 volatile Type lhs = TSrc1()(opState); 01088 volatile Type rhs = TSrc2()(opState); 01089 01090 Onikiri::ScopedFESetRound sr( RoundMode()(opState) ); 01091 volatile Type rvalue = lhs - rhs; 01092 return rvalue; 01093 }