Home
last modified time | relevance | path

Searched refs:T_VEC (Results 1 – 1 of 1) sorted by relevance

/external/libaom/libaom/aom_dsp/
Dfft_common.h117 #define GEN_FFT_2(ret, suffix, T, T_VEC, load, store) \ argument
119 const T_VEC i0 = load(input + 0 * stride); \
120 const T_VEC i1 = load(input + 1 * stride); \
125 #define GEN_FFT_4(ret, suffix, T, T_VEC, load, store, constant, add, sub) \ argument
127 const T_VEC kWeight0 = constant(0.0f); \
128 const T_VEC i0 = load(input + 0 * stride); \
129 const T_VEC i1 = load(input + 1 * stride); \
130 const T_VEC i2 = load(input + 2 * stride); \
131 const T_VEC i3 = load(input + 3 * stride); \
132 const T_VEC w0 = add(i0, i2); \
[all …]