#include <AlphaOperation.h>
Public メソッド | |
u64 | operator() (EmulatorUtility::OpEmulationState *opState) |
AlphaOperation.h の 455 行で定義されています。
u64 Onikiri::AlphaLinux::Operation::AlphaPackWords< TSrc >::operator() | ( | EmulatorUtility::OpEmulationState * | opState | ) | [inline] |
AlphaOperation.h の 457 行で定義されています。
00458 { 00459 u64 val = TSrc()(opState); 00460 00461 return (val & 0xff) | (((val >> 16) & 0xff) << 8) | 00462 (((val >> 32) & 0xff) << 16) | (((val >> 48) & 0xff) << 24); 00463 }