libavcodec/bfin/mathops.h File Reference

#include "config.h"

Go to the source code of this file.

Defines

#define MULH(X, Y)
#define MUL16(a, b)


Define Documentation

#define MUL16 ( a,
 ) 

Value:

({ int xxo;                         \
    __asm__ (                                               \
       "%0 = %1.l*%2.l (is);\n\t"                       \
       : "=W" (xxo) : "d" (a), "d" (b) : "A1");         \
    xxo; })

Definition at line 38 of file mathops.h.

Referenced by apply_window_int16_c(), ff_dot_product(), pRNG(), and synth_frame().

#define MULH ( X,
 ) 

Value:

({ int xxo;                           \
    __asm__ (                                               \
        "a1 = %2.L * %1.L (FU);\n\t"                    \
        "a1 = a1 >> 16;\n\t"                            \
        "a1 += %2.H * %1.L (IS,M);\n\t"                 \
        "a0 = %1.H * %2.H, a1+= %1.H * %2.L (IS,M);\n\t"\
        "a1 = a1 >>> 16;\n\t"                           \
        "%0 = (a0 += a1);\n\t"                          \
        : "=d" (xxo) : "d" (X), "d" (Y) : "A0","A1"); xxo; })

Definition at line 27 of file mathops.h.

Referenced by calc_transform_coeffs_cpl(), and pRNG().


Generated on Fri Oct 26 02:50:04 2012 for FFmpeg by  doxygen 1.5.8