Home
last modified time | relevance | path

Searched refs:tmp_u (Results 1 – 9 of 9) sorted by relevance

/external/webrtc/sdk/android/src/jni/
Dnv12_buffer.cc67 uint8_t* tmp_u = tmp_buffer.data(); in JNI_NV12Buffer_CropAndScale() local
68 uint8_t* tmp_v = tmp_u + crop_chroma_height * tmp_stride_u; in JNI_NV12Buffer_CropAndScale()
70 libyuv::SplitUVPlane(src_uv, src_stride_uv, tmp_u, tmp_stride_u, tmp_v, in JNI_NV12Buffer_CropAndScale()
73 libyuv::I420Scale(src_y, src_stride_y, tmp_u, tmp_stride_u, tmp_v, in JNI_NV12Buffer_CropAndScale()
/external/webp/src/dsp/
Dyuv.c146 const int tmp_u = VP8RGBToU(r, g, b, YUV_HALF << 2); in WebPConvertARGBToUV_C() local
149 u[i] = tmp_u; in WebPConvertARGBToUV_C()
153 u[i] = (u[i] + tmp_u + 1) >> 1; in WebPConvertARGBToUV_C()
162 const int tmp_u = VP8RGBToU(r, g, b, YUV_HALF << 2); in WebPConvertARGBToUV_C() local
165 u[i] = tmp_u; in WebPConvertARGBToUV_C()
168 u[i] = (u[i] + tmp_u + 1) >> 1; in WebPConvertARGBToUV_C()
/external/webp/src/dec/
Dwebpi_dec.h37 uint8_t* tmp_y, *tmp_u, *tmp_v; // cache for the fancy upsampler member
Dio_dec.c65 const uint8_t* top_u = p->tmp_u; in EmitFancyRGB()
98 memcpy(p->tmp_u, cur_u, uv_w * sizeof(*p->tmp_u)); in EmitFancyRGB()
600 p->tmp_u = p->tmp_y + io->mb_w; in CustomSetup()
601 p->tmp_v = p->tmp_u + uv_width; in CustomSetup()
/external/libaom/third_party/libyuv/source/
Dconvert_to_i420.cc57 uint8_t* tmp_u = dst_u; in ConvertToI420() local
259 dst_stride_v, tmp_y, tmp_y_stride, tmp_u, tmp_u_stride, in ConvertToI420()
/external/libyuv/source/
Dconvert_to_i420.cc57 uint8_t* tmp_u = dst_u; in ConvertToI420() local
267 dst_stride_v, tmp_y, tmp_y_stride, tmp_u, tmp_u_stride, in ConvertToI420()
/external/libvpx/third_party/libyuv/source/
Dconvert_to_i420.cc57 uint8_t* tmp_u = dst_u; in ConvertToI420() local
264 dst_stride_v, tmp_y, tmp_y_stride, tmp_u, tmp_u_stride, in ConvertToI420()
/external/libyuv/unit_test/
Dconvert_test.cc2016 align_buffer_page_end(tmp_u, SUBSAMPLE(kWidth, 2) * SUBSAMPLE(kHeight, 2)); in TESTPTOB()
2027 kWidth, tmp_u, SUBSAMPLE(kWidth, 2), tmp_v, in TESTPTOB()
2029 libyuv::I420ToYUY2(tmp_y, kWidth, tmp_u, SUBSAMPLE(kWidth, 2), tmp_v, in TESTPTOB()
2046 free_aligned_buffer_page_end(tmp_u); in TESTPTOB()
/external/tensorflow/tensorflow/python/ops/linalg/
Dlinalg_impl.py218 tmp_u = (
221 matrix_u = math_ops.matmul(matrix, tmp_u)