#include <GenericOperation.h>
Public メソッド | |
Type | operator() (OpEmulationState *opState) |
GenericOperation.h の 1072 行で定義されています。
Type Onikiri::EmulatorUtility::Operation::FPSqrt< Type, TSrc1, RoundMode >::operator() | ( | OpEmulationState * | opState | ) | [inline] |
GenericOperation.h の 1074 行で定義されています。
参照先 Type.
01075 { 01076 Onikiri::ScopedFESetRound sr( RoundMode()(opState) ); 01077 volatile Type rvalue = std::sqrt( TSrc1()(opState) ); 01078 return rvalue; 01079 }