#include <AlphaOperation.h>
Public メソッド | |
u64 | operator() (EmulatorUtility::OpEmulationState *opState) |
AlphaOperation.h の 478 行で定義されています。
u64 Onikiri::AlphaLinux::Operation::AlphaUnpackWords< TSrc >::operator() | ( | EmulatorUtility::OpEmulationState * | opState | ) | [inline] |
AlphaOperation.h の 480 行で定義されています。
00481 { 00482 u64 val = TSrc()(opState); 00483 00484 return (val & 0xff) | (((val >> 8) & 0xff) << 16) | 00485 (((val >> 16) & 0xff) << 32) | (((val >> 24) & 0xff) << 48); 00486 }