Home
last modified time | relevance | path

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

/external/libhevc/decoder/
Dihevcd_get_mv.c351 WORD32 tmp_x, tmp_y, mvd_x, mvd_y, mvp_x, mvp_y; in ihevcd_get_mv_ctb() local
378 tmp_y = (mvp_y + mvd_y + two_pow_16) & (two_pow_16 - 1); in ihevcd_get_mv_ctb()
379 tmp_y = tmp_y >= two_pow_15 ? in ihevcd_get_mv_ctb()
380 (tmp_y - two_pow_16) : tmp_y; in ihevcd_get_mv_ctb()
381 ps_pu->mv.s_l0_mv.i2_mvy = tmp_y; in ihevcd_get_mv_ctb()
395 tmp_y = (mvp_y + mvd_y + two_pow_16) & (two_pow_16 - 1); in ihevcd_get_mv_ctb()
396 tmp_y = tmp_y >= two_pow_15 ? in ihevcd_get_mv_ctb()
397 (tmp_y - two_pow_16) : tmp_y; in ihevcd_get_mv_ctb()
398 ps_pu->mv.s_l1_mv.i2_mvy = tmp_y; in ihevcd_get_mv_ctb()
/external/webp/src/dec/
Dio_dec.c82 upsample(p->tmp_y, cur_y, top_u, top_v, cur_u, cur_v, in EmitFancyRGB()
102 memcpy(p->tmp_y, cur_y, mb_w * sizeof(*p->tmp_y)); in EmitFancyRGB()
586 p->tmp_y = (uint8_t*)p->memory; in CustomSetup()
587 p->tmp_u = p->tmp_y + io->mb_w; in CustomSetup()
Dwebpi_dec.h36 uint8_t* tmp_y, *tmp_u, *tmp_v; // cache for the fancy upsampler member
/external/libyuv/files/source/
Dconvert_to_i420.cc56 uint8* tmp_y = y; in ConvertToI420() local
250 r = I420Rotate(y, y_stride, u, u_stride, v, v_stride, tmp_y, tmp_y_stride, in ConvertToI420()
/external/libvpx/libvpx/third_party/libyuv/source/
Dconvert_to_i420.cc56 uint8_t* tmp_y = dst_y; in ConvertToI420() local
264 dst_stride_v, tmp_y, tmp_y_stride, tmp_u, tmp_u_stride, in ConvertToI420()
/external/libaom/libaom/third_party/libyuv/source/
Dconvert_to_i420.cc48 uint8* tmp_y = y; in ConvertToI420() local
325 tmp_y, tmp_y_stride, in ConvertToI420()
/external/mesa3d/src/gallium/state_trackers/nine/
Dnine_ff.c588 struct ureg_dst tmp_y = ureg_writemask(tmp, TGSI_WRITEMASK_Y); in nine_ff_build_vs() local
604 ureg_RSQ(ureg, tmp_y, _X(tmp)); in nine_ff_build_vs()
605 ureg_MUL(ureg, tmp_y, _Y(tmp), _X(tmp)); in nine_ff_build_vs()
606 ureg_CMP(ureg, tmp_y, ureg_negate(_Y(tmp)), _Y(tmp), ureg_imm1f(ureg, 0.0f)); in nine_ff_build_vs()
778 struct ureg_dst tmp_y = ureg_writemask(tmp, TGSI_WRITEMASK_Y); in nine_ff_build_vs() local
837 ureg_RSQ(ureg, tmp_y, _X(tmp)); in nine_ff_build_vs()
868 ureg_DP3(ureg, tmp_y, ureg_negate(ureg_src(rHit)), cLDir); /* rho */ in nine_ff_build_vs()
873 ureg_SGE(ureg, tmp_y, _Y(tmp), cLPhi); /* if inside phi */ in nine_ff_build_vs()
891 ureg_DP3(ureg, ureg_saturate(tmp_y), vs->aNrm, ureg_src(rMid)); in nine_ff_build_vs()
898 ureg_DP3(ureg, ureg_saturate(tmp_y), vs->aNrm, ureg_src(rMid)); in nine_ff_build_vs()
[all …]
/external/v8/src/asmjs/
Dasm-parser.cc2292 TemporaryVariableScope tmp_y(this); in ValidateCall() local
2295 current_function_builder_->EmitTeeLocal(tmp_y.get()); in ValidateCall()
2305 current_function_builder_->EmitGetLocal(tmp_y.get()); in ValidateCall()