HomeSort by relevance Sort by last modified time
    Searched refs:WRAPLOW (Results 1 - 6 of 6) sorted by null

  /external/libvpx/libvpx/vpx_dsp/
inv_txfm.c 39 op[0] = WRAPLOW(a1);
40 op[1] = WRAPLOW(b1);
41 op[2] = WRAPLOW(c1);
42 op[3] = WRAPLOW(d1);
60 dest[stride * 0] = clip_pixel_add(dest[stride * 0], WRAPLOW(a1));
61 dest[stride * 1] = clip_pixel_add(dest[stride * 1], WRAPLOW(b1));
62 dest[stride * 2] = clip_pixel_add(dest[stride * 2], WRAPLOW(c1));
63 dest[stride * 3] = clip_pixel_add(dest[stride * 3], WRAPLOW(d1));
80 op[0] = WRAPLOW(a1);
81 op[1] = op[2] = op[3] = WRAPLOW(e1)
    [all...]
inv_txfm.h 69 // WRAPLOW() macro below that is identical to their intended
73 // The particular WRAPLOW implementation below performs strict
80 #define WRAPLOW(x) ((((int32_t)check_range(x)) << 16) >> 16)
88 #define WRAPLOW(x) ((int32_t)check_range(x))
119 trans = WRAPLOW(trans);
  /external/libvpx/libvpx/vpx_dsp/arm/
idct32x32_1_add_neon.c 42 const int16_t out0 = WRAPLOW(dct_const_round_shift(input[0] * cospi_16_64));
43 const int16_t out1 = WRAPLOW(dct_const_round_shift(out0 * cospi_16_64));
idct4x4_1_add_neon.c 35 const int16_t out0 = WRAPLOW(dct_const_round_shift(input[0] * cospi_16_64));
36 const int16_t out1 = WRAPLOW(dct_const_round_shift(out0 * cospi_16_64));
idct8x8_1_add_neon.c 39 const int16_t out0 = WRAPLOW(dct_const_round_shift(input[0] * cospi_16_64));
40 const int16_t out1 = WRAPLOW(dct_const_round_shift(out0 * cospi_16_64));
idct16x16_1_add_neon.c 35 const int16_t out0 = WRAPLOW(dct_const_round_shift(input[0] * cospi_16_64));
36 const int16_t out1 = WRAPLOW(dct_const_round_shift(out0 * cospi_16_64));

Completed in 161 milliseconds