Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- Watcom C Library Reference - <u>synopsis:</u> http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
Synopsis:
    #include <mmintrin.h>
    int   _m_to_int(__m64 *__m);

Description:
    The _m_to_int function returns the low-order 32 bits of a multimedia
    value.

Returns:
    The low-order 32 bits of a multimedia value are fetched and returned as
    the result.

Example:
    #include <stdio.h>
    #include <mmintrin.h>

    __m64   b = { 0x0123456789abcdef };

    int     j;

    void main()
      {
        j = _m_to_int( b );
        printf( "m=%16.16Lx int=%8.8lx\n",
                b, j );
      }

    produces the following:

    m=0123456789abcdef int=89abcdef

Classification:
    Intel

Systems:
    MACRO

See Also:
    _m_empty, _m_from_int, _m_packsswb, _m_paddb, _m_pand, _m_empty,
    _m_pcmpeqb, _m_pmaddwd, _m_psllw, _m_psraw, _m_psrlw, _m_empty,
    _m_psubb, _m_punpckhbw

See Also: _m_empty _m_from_int

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson