Lines Matching defs:temp
70 TYPE *temp = (TYPE *)_temp;
72 temp[0] = COMPOSE_53iL0(b[w2], b[0], b[w2]);
74 temp[x ] = COMPOSE_53iL0 (b[x+w2-1], b[x ], b[x+w2]);
75 temp[x+w2-1] = COMPOSE_DIRAC53iH0(temp[x-1], b[x+w2-1], temp[x]);
77 temp[w-1] = COMPOSE_DIRAC53iH0(temp[w2-1], b[w-1], temp[w2-1]);
79 RENAME(interleave)(b, temp, temp+w2, w2, 1, 1);
126 static av_always_inline void RENAME(horizontal_compose_haari)(TYPE *b, TYPE *temp,
133 temp[x ] = COMPOSE_HAARiL0(b[x ], b[x+w2]);
134 temp[x+w2] = COMPOSE_HAARiH0(b[x+w2], temp[x]);
137 RENAME(interleave)(b, temp, temp+w2, w2, shift, shift);
143 TYPE *temp = (TYPE *)_temp;
144 RENAME(horizontal_compose_haari)(b, temp, w, 0);
150 TYPE *temp = (TYPE *)_temp;
151 RENAME(horizontal_compose_haari)(b, temp, w, 1);
182 TYPE *temp = (TYPE *)_temp;
184 temp[0] = COMPOSE_DAUB97iL1(b[w2], b[0], b[w2]);
186 temp[x ] = COMPOSE_DAUB97iL1(b[x+w2-1], b[x ], b[x+w2]);
187 temp[x+w2-1] = COMPOSE_DAUB97iH1(temp[x-1], b[x+w2-1], temp[x]);
189 temp[w-1] = COMPOSE_DAUB97iH1(temp[w2-1], b[w-1], temp[w2-1]);
192 b0 = b2 = COMPOSE_DAUB97iL0(temp[w2], temp[0], temp[w2]);
195 b2 = COMPOSE_DAUB97iL0(temp[x+w2-1], temp[x ], temp[x+w2]);
196 b1 = COMPOSE_DAUB97iH0( b0, temp[x+w2-1], b2 );
201 b[w-1] = ~((~COMPOSE_DAUB97iH0(b2, temp[w-1], b2)) >> 1);
355 if(y-1<(unsigned)height) d->horizontal_compose(b[0], d->temp, width);
356 if(y+0<(unsigned)height) d->horizontal_compose(b[1], d->temp, width);
377 if(y-1<(unsigned)height) d->horizontal_compose(b[0], d->temp, width);
378 if(y+0<(unsigned)height) d->horizontal_compose(b[1], d->temp, width);
401 if(y-1<(unsigned)height) d->horizontal_compose(b[0], d->temp, width);
402 if(y+0<(unsigned)height) d->horizontal_compose(b[1], d->temp, width);
418 d->horizontal_compose(b0, d->temp, width);
419 d->horizontal_compose(b1, d->temp, width);
446 d->horizontal_compose(d->buffer + y*stride, d->temp, width);
471 if(y-1<(unsigned)height) d->horizontal_compose(b[0], d->temp, width);
472 if(y+0<(unsigned)height) d->horizontal_compose(b[1], d->temp, width);
523 d->temp = (uint8_t *)(((TYPE *)d->temp) + 8);