Home
last modified time | relevance | path

Searched refs:yLength (Results 1 – 3 of 3) sorted by relevance

/external/exoplayer/tree/library/core/src/main/java/com/google/android/exoplayer2/video/
DVideoDecoderOutputBuffer.java118 int yLength = yStride * height; in initForYuvFrame() local
120 int minimumYuvSize = yLength + (uvLength * 2); in initForYuvFrame()
121 if (!isSafeToMultiply(uvLength, 2) || minimumYuvSize < yLength) { in initForYuvFrame()
142 yuvPlanes[0].limit(yLength); in initForYuvFrame()
143 data.position(yLength); in initForYuvFrame()
146 data.position(yLength + uvLength); in initForYuvFrame()
/external/exoplayer/tree/extensions/vp9/src/main/jni/
Dvpx_jni.cc83 const int32_t uvHeight, const int32_t yLength, in convert_16_to_8_neon() argument
182 uint8_t* dstUBase = reinterpret_cast<uint8_t*>(data + yLength); in convert_16_to_8_neon()
183 uint8_t* dstVBase = reinterpret_cast<uint8_t*>(data + yLength + uvLength); in convert_16_to_8_neon()
249 const int32_t yLength, in convert_16_to_8_standard() argument
274 int8_t* destUBase = data + yLength + img->stride[VPX_PLANE_U] * y; in convert_16_to_8_standard()
276 data + yLength + uvLength + img->stride[VPX_PLANE_V] * y; in convert_16_to_8_standard()
578 const uint64_t yLength = img->stride[VPX_PLANE_Y] * img->d_h; in DECODER_FUNC() local
586 converted = convert_16_to_8_neon(img, data, uvHeight, yLength, uvLength); in DECODER_FUNC()
589 convert_16_to_8_standard(img, data, uvHeight, yLength, uvLength); in DECODER_FUNC()
595 memcpy(data, img->planes[VPX_PLANE_Y], yLength); in DECODER_FUNC()
[all …]
/external/mesa3d/src/gallium/drivers/swr/rasterizer/core/
Dbinner.cpp1712 Integer<SIMD_T> yLength = SIMD_T::abs_epi32(SIMD_T::sub_epi32(vYi[0], vYi[1])); in BinPostSetupLinesImpl() local
1713 Float<SIMD_T> vYmajorMask = SIMD_T::castsi_ps(SIMD_T::cmpgt_epi32(yLength, xLength)); in BinPostSetupLinesImpl()
1719 SIMD_T::and_si(vZeroLengthMask, SIMD_T::cmpeq_epi32(yLength, SIMD_T::setzero_si())); in BinPostSetupLinesImpl()