Home
last modified time | relevance | path

Searched refs:tmp_v (Results 1 – 8 of 8) sorted by relevance

/external/webrtc/webrtc/modules/audio_processing/aecm/
Daecm_core_neon.c38 uint32x2_t tmp_v; in AddLanes()
39 tmp_v = vadd_u32(vget_low_u32(v), vget_high_u32(v)); in AddLanes()
40 tmp_v = vpadd_u32(tmp_v, tmp_v); in AddLanes()
41 *(ptr) = vget_lane_u32(tmp_v, 0); in AddLanes()
/external/webp/src/dsp/
Dyuv.c142 const int tmp_v = VP8RGBToV(r, g, b, YUV_HALF << 2); in WebPConvertARGBToUV_C() local
145 v[i] = tmp_v; in WebPConvertARGBToUV_C()
149 v[i] = (v[i] + tmp_v + 1) >> 1; in WebPConvertARGBToUV_C()
158 const int tmp_v = VP8RGBToV(r, g, b, YUV_HALF << 2); in WebPConvertARGBToUV_C() local
161 v[i] = tmp_v; in WebPConvertARGBToUV_C()
164 v[i] = (v[i] + tmp_v + 1) >> 1; in WebPConvertARGBToUV_C()
/external/webp/src/dec/
Dwebpi_dec.h36 uint8_t* tmp_y, *tmp_u, *tmp_v; // cache for the fancy upsampler member
Dio_dec.c71 const uint8_t* top_v = p->tmp_v; in EmitFancyRGB()
104 memcpy(p->tmp_v, cur_v, uv_w * sizeof(*p->tmp_v)); in EmitFancyRGB()
588 p->tmp_v = p->tmp_u + uv_width; in CustomSetup()
/external/libyuv/files/source/
Dconvert_to_i420.cc58 uint8* tmp_v = v; in ConvertToI420() local
251 tmp_u, tmp_u_stride, tmp_v, tmp_v_stride, crop_width, in ConvertToI420()
/external/libvpx/libvpx/third_party/libyuv/source/
Dconvert_to_i420.cc58 uint8_t* tmp_v = dst_v; in ConvertToI420() local
265 tmp_v, tmp_v_stride, crop_width, abs_crop_height, in ConvertToI420()
/external/libaom/libaom/third_party/libyuv/source/
Dconvert_to_i420.cc50 uint8* tmp_v = v; in ConvertToI420() local
327 tmp_v, tmp_v_stride, in ConvertToI420()
/external/tensorflow/tensorflow/python/ops/linalg/
Dlinalg_impl.py214 tmp_v = b[12] * matrix_6 + b[10] * matrix_4 + b[8] * matrix_2
216 math_ops.matmul(matrix_6, tmp_v) + b[6] * matrix_6 + b[4] * matrix_4 +