Int128Rec
Record representing a 128-bit unsigned integer.
Declaration
Source position: sysutilh.inc line 74
Type
Int128Rec = packed record
case Integer of
0: (
public
Lo : QWord;
Hi : QWord;
);
1: (
public
DWords : Array[0..3] of DWord;
);
2: (
public
Words : Array[0..7] of Word;
);
3: (
public
Bytes : Array[0..15] of Byte;
);
end
Description
Int128Rec is a record defining a 128-bit integer. It is made up of 2 QWords or 4 DWords or 8 words or 16 bytes.
See also
Name | Description |
---|---|
LongRec | Record describing a longint value |
OWordRec | Identical to the Int128Rec record. |
WordRec | Record describing a word value. |