[Overview][Constants][Types][Classes][Procedures and functions][Variables][Index] Reference for unit 'System' (#rtl)

TDoubleRec

Extended value record

Declaration

Source position: mathh.inc line 150

type TDoubleRec = packed record

public

  function Mantissa;

  

Mantissa of the floating point value

  function Fraction;

  

Fraction of the floating point value

  function Exponent;

  

Exponent of the floating point value

  property Sign: Boolean; [rw]

  

Sign of the floating point value

  property Exp: QWord; [rw]

  

Exponent bitpattern representation

  property Frac: QWord; [rw]

  

Fractional part of double

  function SpecialType;

  

Is the floating point value special ?

  case Byte of

    0: (

        Bytes: array [0..7] of Byte;

  

Value as bytes

      );

    1: (

        Words: array [0..3] of Word;

  

Value as words

      );

    2: (

        Data: QWord;

  

Value as QWord

      );

    3: (

        Value: Double;

  

Value as Double

      );

end;

Description

TDoubleRec models the memory layout of a double value when using software floating point math.

See also

TDoubleRec

  

Extended value record

TSingleRec

  

Extended value record


Documentation generated on: Mar 17 2017