Lines Matching refs:INT16

67 INT16
358 INT16
1559 INT16 Index16; in ExecuteMOVxx()
2178 INT16 Index16; in ExecuteMOVI()
2203 ImmData64 = (INT64) (INT16) VmReadImmed16 (VmPtr, Size); in ExecuteMOVI()
2296 INT16 Index16; in ExecuteMOVIn()
2297 INT16 ImmedIndex16; in ExecuteMOVIn()
2398 INT16 Index16; in ExecuteMOVREL()
2504 INT16 Op1Index; in ExecuteMOVsnw()
2505 INT16 Op2Index; in ExecuteMOVsnw()
2681 INT16 Index16; in ExecutePUSHn()
2742 INT16 Index16; in ExecutePUSH()
2816 INT16 Index16; in ExecutePOPn()
2875 INT16 Index16; in ExecutePOP()
3141 INT16 Index16; in ExecuteCMP()
3304 INT16 Index16; in ExecuteCMPI()
3361 Op2 = (INT64) ((INT16) VmReadImmed16 (VmPtr, Size)); in ExecuteCMPI()
3992 INT16 Data16; in ExecuteEXTNDW()
3998 Data16 = (INT16) Op2; in ExecuteEXTNDW()
4130 INT16 Index16; in ExecuteDataManip()
4398 INT16
4405 INT16 Offset; in VmReadIndex16()
4406 INT16 ConstUnits; in VmReadIndex16()
4407 INT16 NaturalUnits; in VmReadIndex16()
4408 INT16 NBits; in VmReadIndex16()
4409 INT16 Mask; in VmReadIndex16()
4419 NBits = (INT16) ((Index & 0x7000) >> 12); in VmReadIndex16()
4429 Mask = (INT16) ((INT16)~0 << NBits); in VmReadIndex16()
4434 NaturalUnits = (INT16) (Index &~Mask); in VmReadIndex16()
4439 ConstUnits = (INT16) (((Index &~0xF000) & Mask) >> NBits); in VmReadIndex16()
4441 Offset = (INT16) (NaturalUnits * sizeof (UINTN) + ConstUnits); in VmReadIndex16()
4452 Offset = (INT16) ((INT32) Offset * -1); in VmReadIndex16()
4910 INT16
4919 if (IS_ALIGNED ((UINTN) VmPtr->Ip + Offset, sizeof (INT16))) { in VmReadImmed16()
4920 return * (INT16 *) (VmPtr->Ip + Offset); in VmReadImmed16()
4934 return (INT16) (*(UINT8 *) (VmPtr->Ip + Offset) + (*(UINT8 *) (VmPtr->Ip + Offset + 1) << 8)); in VmReadImmed16()