Home
last modified time | relevance | path

Searched refs:res2 (Results 1 – 17 of 17) sorted by relevance

/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
Dfastidct.cpp329 int res, res2; in idct_row1Inter() local
343 res2 = tmp + ((pred_word >> 8) & 0xFF); in idct_row1Inter()
344 CLIP_RESULT(res2); in idct_row1Inter()
345 dst_word = (res2 << 8) | res; in idct_row1Inter()
357 res2 = tmp + ((pred_word >> 8) & 0xFF); in idct_row1Inter()
358 CLIP_RESULT(res2); in idct_row1Inter()
359 dst_word = (res2 << 8) | res; in idct_row1Inter()
376 int res, res2; in idct_row2Inter() local
402 res2 = (x0 + x2) >> 14; in idct_row2Inter()
403 ADD_AND_CLIP2(res2); in idct_row2Inter()
[all …]
/frameworks/av/media/libstagefright/codecs/m4v_h263/dec/src/
Didct_vca.cpp46 int res, res2; in idctrow1() local
62 res2 = tmp + ((pred_word >> 8) & 0xFF); in idctrow1()
63 CLIP_RESULT(res2); in idctrow1()
64 dst_word = (res2 << 8) | res; in idctrow1()
76 res2 = tmp + ((pred_word >> 8) & 0xFF); in idctrow1()
77 CLIP_RESULT(res2); in idctrow1()
78 dst_word = (res2 << 8) | res; in idctrow1()
102 int res, res2; in idctrow2() local
130 res2 = (x0 + x2) >> 14; in idctrow2()
131 ADD_AND_CLIP2(res2); in idctrow2()
[all …]
Dblock_idct.cpp519 int res, res2; in idctrow() local
588 res2 = (x3 + x2) >> 14; in idctrow()
589 ADD_AND_CLIP2(res2); in idctrow()
590 dst_word = (res2 << 8) | res; in idctrow()
603 res2 = (x0 - x4) >> 14; in idctrow()
604 ADD_AND_CLIP2(res2); in idctrow()
605 dst_word = (res2 << 8) | res; in idctrow()
/frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
Dspreproc.cpp186 Word16 res2[], /* o : long term prediction residual */ in subframePreProc() argument
221 Residu(Aq, speech, res2, L_SUBFR); in subframePreProc()
223 memcpy(exc, res2, L_SUBFR*sizeof(Word16)); in subframePreProc()
Dcbsearch.cpp191 Word16 res2[], /* i : Long term prediction residual, Q0 */ in cbsearch() argument
305 res2, in cbsearch()
364 res2, in cbsearch()
Dcl_ltp.cpp627 Word16 res2[], /* i/o : Long term prediction residual Q0 */ in cl_ltp() argument
760 res2[i] -= (Word16)L_temp; in cl_ltp()
Dcbsearch.h117 Word16 res2[], /* i : Long term prediction residual, Q0 */
Dspreproc.h123 Word16 res2[], /* o : long term prediction residual */
Dcl_ltp.h141 Word16 res2[], /* i/o : Long term prediction residual Q0 */
Dcod_amr.cpp1238 Word16 res2[L_SUBFR]; /* Long term (LTP) prediction residual */ in cod_amr() local
1481 memcpy(res2, res, L_SUBFR*sizeof(Word16)); in cod_amr()
1487 &st->exc[i_subfr], res2, xn, lsp_flag, xn2, y1, in cod_amr()
1507 cbsearch(xn2, st->h1, T0, st->sharp, gain_pit, res2, in cod_amr()
/frameworks/av/media/libstagefright/codecs/amrnb/dec/src/
Dpstfilt.cpp247 memset(state->res2, 0, sizeof(Word16)*L_SUBFR); in Post_Filter_reset()
487 Residu(Ap3, &syn_work[i_subfr], st->res2, L_SUBFR); in Post_Filter()
559 preemphasis(&(st->preemph_state), st->res2, temp2, L_SUBFR, pOverflow); in Post_Filter()
563 Syn_filt(Ap4, st->res2, &syn[i_subfr], L_SUBFR, st->mem_syn_pst, 1); in Post_Filter()
Dpstfilt.h104 Word16 res2[L_SUBFR]; member
/frameworks/rs/tests/java_api/RSTest_CompatLibLegacy/src/com/android/rs/test/
Dclamp.rscript10 float2 res2 = clamp(src2, min2, max2);
11 _RS_ASSERT(res2.x == 1.0f);
12 _RS_ASSERT(res2.y == 2.0f);
/frameworks/rs/tests/java_api/RSUnitTests/src/com/android/rs/unittest/
Dclamp.rscript26 float2 res2 = clamp(src2, min2, max2);
27 _RS_ASSERT(res2.x == 1.0f);
28 _RS_ASSERT(res2.y == 2.0f);
/frameworks/rs/tests/java_api/RSUnitTests/supportlibsrc_gen/com/android/rs/unittest/
Dclamp.rscript28 float2 res2 = clamp(src2, min2, max2);
29 _RS_ASSERT(res2.x == 1.0f);
30 _RS_ASSERT(res2.y == 2.0f);
/frameworks/av/media/libstagefright/
DSimpleDecodingSource.cpp176 status_t res2 = mSource->stop(); in stop() local
177 if (res1 == OK && res2 == OK) { in stop()
182 return res1 != OK ? res1 : res2; in stop()
/frameworks/av/media/libstagefright/foundation/
DColorUtils.cpp234 status_t res2 = unwrapColorAspectsFromColorStandard( in convertPlatformColorAspectsToCodecAspects() local
237 return res1 != OK ? res1 : (res2 != OK ? res2 : res3); in convertPlatformColorAspectsToCodecAspects()