Lines Matching refs:uv0
96 uint32_t u01, v01, y01, y23, y45, y67, uv0, uv1; in convertYUV420Planar16ToY410() local
113 uv0 = (u01 & 0x3FF) | ((v01 & 0x3FF) << 20); in convertYUV420Planar16ToY410()
116 *dstTop++ = 3 << 30 | ((y01 & 0x3FF) << 10) | uv0; in convertYUV420Planar16ToY410()
117 *dstTop++ = 3 << 30 | ((y01 >> 16) << 10) | uv0; in convertYUV420Planar16ToY410()
121 *dstBot++ = 3 << 30 | ((y45 & 0x3FF) << 10) | uv0; in convertYUV420Planar16ToY410()
122 *dstBot++ = 3 << 30 | ((y45 >> 16) << 10) | uv0; in convertYUV420Planar16ToY410()
134 uv0 = (u01 & 0x3FF) | ((v01 & 0x3FF) << 20); in convertYUV420Planar16ToY410()
135 *dstTop++ = ((y01 & 0x3FF) << 10) | uv0; in convertYUV420Planar16ToY410()
136 *dstTop++ = ((y01 >> 16) << 10) | uv0; in convertYUV420Planar16ToY410()
137 *dstBot++ = ((y45 & 0x3FF) << 10) | uv0; in convertYUV420Planar16ToY410()
138 *dstBot++ = ((y45 >> 16) << 10) | uv0; in convertYUV420Planar16ToY410()