• Home
  • Raw
  • Download

Lines Matching refs:BPS

22   0 +  0 * BPS,  4 +  0 * BPS, 8 +  0 * BPS, 12 +  0 * BPS,
23 0 + 4 * BPS, 4 + 4 * BPS, 8 + 4 * BPS, 12 + 4 * BPS,
24 0 + 8 * BPS, 4 + 8 * BPS, 8 + 8 * BPS, 12 + 8 * BPS,
25 0 + 12 * BPS, 4 + 12 * BPS, 8 + 12 * BPS, 12 + 12 * BPS
83 y_dst[j * BPS - 1] = 129; in ReconstructRow()
86 u_dst[j * BPS - 1] = 129; in ReconstructRow()
87 v_dst[j * BPS - 1] = 129; in ReconstructRow()
92 y_dst[-1 - BPS] = u_dst[-1 - BPS] = v_dst[-1 - BPS] = 129; in ReconstructRow()
96 memset(y_dst - BPS - 1, 127, 16 + 4 + 1); in ReconstructRow()
97 memset(u_dst - BPS - 1, 127, 8 + 1); in ReconstructRow()
98 memset(v_dst - BPS - 1, 127, 8 + 1); in ReconstructRow()
109 Copy32b(&y_dst[j * BPS - 4], &y_dst[j * BPS + 12]); in ReconstructRow()
112 Copy32b(&u_dst[j * BPS - 4], &u_dst[j * BPS + 4]); in ReconstructRow()
113 Copy32b(&v_dst[j * BPS - 4], &v_dst[j * BPS + 4]); in ReconstructRow()
124 memcpy(y_dst - BPS, top_yuv[0].y, 16); in ReconstructRow()
125 memcpy(u_dst - BPS, top_yuv[0].u, 8); in ReconstructRow()
126 memcpy(v_dst - BPS, top_yuv[0].v, 8); in ReconstructRow()
131 uint32_t* const top_right = (uint32_t*)(y_dst - BPS + 16); in ReconstructRow()
141 top_right[BPS] = top_right[2 * BPS] = top_right[3 * BPS] = top_right[0]; in ReconstructRow()
170 memcpy(top_yuv[0].y, y_dst + 15 * BPS, 16); in ReconstructRow()
171 memcpy(top_yuv[0].u, u_dst + 7 * BPS, 8); in ReconstructRow()
172 memcpy(top_yuv[0].v, v_dst + 7 * BPS, 8); in ReconstructRow()
183 memcpy(y_out + j * dec->cache_y_stride_, y_dst + j * BPS, 16); in ReconstructRow()
186 memcpy(u_out + j * dec->cache_uv_stride_, u_dst + j * BPS, 8); in ReconstructRow()
187 memcpy(v_out + j * dec->cache_uv_stride_, v_dst + j * BPS, 8); in ReconstructRow()