Lines Matching defs:tmp
33 void ff_horizontal_compose_haar0i##ext(int16_t *b, int16_t *tmp, int w);\
34 void ff_horizontal_compose_haar1i##ext(int16_t *b, int16_t *tmp, int w);\
111 int16_t *tmp = (int16_t *)_tmp; \
113 ff_horizontal_compose_haar0i##ext(b, tmp, w);\
116 b[2*x ] = tmp[x];\
117 b[2*x+1] = COMPOSE_HAARiH0(b[x+w2], tmp[x]);\
125 int16_t *tmp = (int16_t *)_tmp; \
127 ff_horizontal_compose_haar1i##ext(b, tmp, w);\
130 b[2*x ] = (tmp[x] + 1)>>1;\
131 b[2*x+1] = (COMPOSE_HAARiH0(b[x+w2], tmp[x]) + 1)>>1;\
147 int16_t *tmp = (int16_t *)_tmp;
149 ff_horizontal_compose_dd97i_ssse3(b, tmp, w);
152 b[2*x ] = (tmp[x] + 1)>>1;
153 b[2*x+1] = (COMPOSE_DD97iH0(tmp[x-1], tmp[x], b[x+w2], tmp[x+1], tmp[x+2]) + 1)>>1;