Lines Matching refs:tprev
107 uint8_t *out, *tprev; in zmbv_decode_xor_8() local
118 tprev = prev + x + dx + dy * c->width; in zmbv_decode_xor_8()
125 memcpy(out, tprev, sizeof(*out) * bw2); in zmbv_decode_xor_8()
131 out[i] = tprev[i]; in zmbv_decode_xor_8()
135 tprev += c->width; in zmbv_decode_xor_8()
181 uint16_t *out, *tprev; in zmbv_decode_xor_16() local
192 tprev = prev + x + dx + dy * c->width; in zmbv_decode_xor_16()
199 memcpy(out, tprev, sizeof(*out) * bw2); in zmbv_decode_xor_16()
205 out[i] = tprev[i]; in zmbv_decode_xor_16()
209 tprev += c->width; in zmbv_decode_xor_16()
260 uint8_t *out, *tprev; in zmbv_decode_xor_24() local
271 tprev = prev + (x + dx) * 3 + dy * stride; in zmbv_decode_xor_24()
278 memcpy(out, tprev, 3 * bw2); in zmbv_decode_xor_24()
286 out[i * 3 + 0] = tprev[i * 3 + 0]; in zmbv_decode_xor_24()
287 out[i * 3 + 1] = tprev[i * 3 + 1]; in zmbv_decode_xor_24()
288 out[i * 3 + 2] = tprev[i * 3 + 2]; in zmbv_decode_xor_24()
293 tprev += stride; in zmbv_decode_xor_24()
343 uint32_t *out, *tprev; in zmbv_decode_xor_32() local
354 tprev = prev + x + dx + dy * c->width; in zmbv_decode_xor_32()
361 memcpy(out, tprev, sizeof(*out) * bw2); in zmbv_decode_xor_32()
367 out[i] = tprev[i]; in zmbv_decode_xor_32()
371 tprev += c->width; in zmbv_decode_xor_32()