#include <GenericOperation.h>
Public メソッド | |
u64 | operator() (OpEmulationState *opState) |
GenericOperation.h の 985 行で定義されています。
u64 Onikiri::EmulatorUtility::Operation::FPDoubleCopySignExp< TSrc1, TSrc2 >::operator() | ( | OpEmulationState * | opState | ) | [inline] |
GenericOperation.h の 987 行で定義されています。
00988 { 00989 u64 lhs = static_cast<u64>( TSrc1()(opState) ); 00990 u64 rhs = static_cast<u64>( TSrc2()(opState) ); 00991 00992 return (lhs & (u64)0xfff0000000000000ULL) | (rhs & ~(u64)0xfff0000000000000ULL); 00993 }