Home
last modified time | relevance | path

Searched refs:tmp_x (Results 1 – 4 of 4) 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
374 tmp_x = (mvp_x + mvd_x + two_pow_16) & (two_pow_16 - 1); in ihevcd_get_mv_ctb()
375 tmp_x = tmp_x >= two_pow_15 ? in ihevcd_get_mv_ctb()
376 (tmp_x - two_pow_16) : tmp_x; in ihevcd_get_mv_ctb()
377 ps_pu->mv.s_l0_mv.i2_mvx = tmp_x; in ihevcd_get_mv_ctb()
391 tmp_x = (mvp_x + mvd_x + two_pow_16) & (two_pow_16 - 1); in ihevcd_get_mv_ctb()
392 tmp_x = tmp_x >= two_pow_15 ? in ihevcd_get_mv_ctb()
393 (tmp_x - two_pow_16) : tmp_x; in ihevcd_get_mv_ctb()
394 ps_pu->mv.s_l1_mv.i2_mvx = tmp_x; in ihevcd_get_mv_ctb()
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/fix/source/
Dpitch_estimator_mips.c32 const int16_t* tmp_x = x; in WebRtcIsacfix_PCorr2Q32() local
81 [ysum32] "+r" (ysum32), [tmp_x] "+r" (tmp_x), [csum32] "+r" (csum32), in WebRtcIsacfix_PCorr2Q32()
104 const int16_t* tmp_x = x; in WebRtcIsacfix_PCorr2Q32() local
173 [csum32] "+r" (csum32), [tmp_x] "+r" (tmp_x), [ysum32] "+r" (ysum32), in WebRtcIsacfix_PCorr2Q32()
/external/mesa3d/src/gallium/state_trackers/nine/
Dnine_ff.c323 struct ureg_dst tmp_x = ureg_writemask(tmp, TGSI_WRITEMASK_X); in ureg_normalize3() local
325 ureg_DP3(ureg, tmp_x, src, src); in ureg_normalize3()
326 ureg_RSQ(ureg, tmp_x, _X(tmp)); in ureg_normalize3()
587 struct ureg_dst tmp_x = ureg_writemask(tmp, TGSI_WRITEMASK_X); in nine_ff_build_vs() local
603 ureg_DP3(ureg, tmp_x, vs->aVtx, vs->aVtx); in nine_ff_build_vs()
607 ureg_MAD(ureg, tmp_x, _Y(tmp), _YYYY(cPsz2), _XXXX(cPsz2)); in nine_ff_build_vs()
608 ureg_MAD(ureg, tmp_x, _Y(tmp), _X(tmp), _WWWW(cPsz1)); in nine_ff_build_vs()
609 ureg_RSQ(ureg, tmp_x, _X(tmp)); in nine_ff_build_vs()
610 ureg_MUL(ureg, tmp_x, _X(tmp), _Z(tmp)); in nine_ff_build_vs()
611 ureg_MUL(ureg, tmp_x, _X(tmp), _WWWW(_CONST(100))); in nine_ff_build_vs()
[all …]
/external/v8/src/asmjs/
Dasm-parser.cc2291 TemporaryVariableScope tmp_x(this); in ValidateCall() local
2294 current_function_builder_->EmitSetLocal(tmp_x.get()); in ValidateCall()
2296 current_function_builder_->EmitGetLocal(tmp_x.get()); in ValidateCall()
2303 current_function_builder_->EmitGetLocal(tmp_x.get()); in ValidateCall()