Lines Matching refs:dst_r
1272 uint16_t *dst_r, *dst_g, *dst_b, *dst_a; in decode_argxi() local
1275 dst_r = (uint16_t *)p->data[2]; in decode_argxi()
1284 dst_r[x] = get_bits(gb, 10); in decode_argxi()
1300 dst_r[x] = pred[0] = (r + pred[0]) & 0x3ff; in decode_argxi()
1306 dst_r += p->linesize[2] / 2; in decode_argxi()
1316 uint16_t *dst_r, *dst_g, *dst_b, *dst_a; in decode_argx() local
1319 dst_r = (uint16_t *)p->data[2]; in decode_argx()
1327 dst_r[x] = get_bits(gb, 10); in decode_argx()
1343 dst_r[x] = pred[0] = (r + pred[0]) & 0x3ff; in decode_argx()
1349 dst_r += p->linesize[2] / 2; in decode_argx()
1358 dst_r[x] = get_bits(gb, 10); in decode_argx()
1366 pred_TL[0] = pred_L[0] = dst_r[-p->linesize[2] / 2]; in decode_argx()
1372 pred_T[0] = dst_r[-p->linesize[2] / 2 + x]; in decode_argx()
1383 … dst_r[x] = pred_L[0] = (r + ((3 * (pred_T[0] + pred_L[0]) - 2 * pred_TL[0]) >> 2)) & 0x3ff; in decode_argx()
1394 dst_r += p->linesize[2] / 2; in decode_argx()
1404 uint16_t *dst_r, *dst_g, *dst_b; in decode_rgbxi() local
1407 dst_r = (uint16_t *)p->data[2]; in decode_rgbxi()
1414 dst_r[x] = get_bits(gb, 10); in decode_rgbxi()
1428 dst_r[x] = pred[0] = (r + pred[0]) & 0x3ff; in decode_rgbxi()
1434 dst_r += p->linesize[2] / 2; in decode_rgbxi()
1443 uint16_t *dst_r, *dst_g, *dst_b; in decode_rgbx() local
1446 dst_r = (uint16_t *)p->data[2]; in decode_rgbx()
1452 dst_r[x] = get_bits(gb, 10); in decode_rgbx()
1466 dst_r[x] = pred[0] = (r + pred[0]) & 0x3ff; in decode_rgbx()
1472 dst_r += p->linesize[2] / 2; in decode_rgbx()
1479 dst_r[x] = get_bits(gb, 10); in decode_rgbx()
1487 pred_TL[0] = pred_L[0] = dst_r[-p->linesize[2] / 2]; in decode_rgbx()
1492 pred_T[0] = dst_r[-p->linesize[2] / 2 + x]; in decode_rgbx()
1500 … dst_r[x] = pred_L[0] = (r + ((3 * (pred_T[0] + pred_L[0]) - 2 * pred_TL[0]) >> 2)) & 0x3ff; in decode_rgbx()
1510 dst_r += p->linesize[2] / 2; in decode_rgbx()