/frameworks/av/media/codecs/m4v_h263/enc/src/ |
D | fastidct.cpp | 329 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/codecs/m4v_h263/dec/src/ |
D | idct_vca.cpp | 47 int res, res2; in idctrow1() local 63 res2 = tmp + ((pred_word >> 8) & 0xFF); in idctrow1() 64 CLIP_RESULT(res2); in idctrow1() 65 dst_word = (res2 << 8) | res; in idctrow1() 77 res2 = tmp + ((pred_word >> 8) & 0xFF); in idctrow1() 78 CLIP_RESULT(res2); in idctrow1() 79 dst_word = (res2 << 8) | res; in idctrow1() 104 int res, res2; in idctrow2() local 132 res2 = (x0 + x2) >> 14; in idctrow2() 133 ADD_AND_CLIP2(res2); in idctrow2() [all …]
|
D | block_idct.cpp | 520 int res, res2; in idctrow() local 589 res2 = (x3 + x2) >> 14; in idctrow() 590 ADD_AND_CLIP2(res2); in idctrow() 591 dst_word = (res2 << 8) | res; in idctrow() 604 res2 = (x0 - x4) >> 14; in idctrow() 605 ADD_AND_CLIP2(res2); in idctrow() 606 dst_word = (res2 << 8) | res; in idctrow()
|
/frameworks/av/media/codecs/amrnb/enc/src/ |
D | spreproc.cpp | 186 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()
|
D | cbsearch.cpp | 191 Word16 res2[], /* i : Long term prediction residual, Q0 */ in cbsearch() argument 305 res2, in cbsearch() 364 res2, in cbsearch()
|
D | cl_ltp.cpp | 627 Word16 res2[], /* i/o : Long term prediction residual Q0 */ in cl_ltp() argument 760 res2[i] -= (Word16)L_temp; in cl_ltp()
|
D | cbsearch.h | 117 Word16 res2[], /* i : Long term prediction residual, Q0 */
|
D | spreproc.h | 123 Word16 res2[], /* o : long term prediction residual */
|
D | cl_ltp.h | 141 Word16 res2[], /* i/o : Long term prediction residual Q0 */
|
D | cod_amr.cpp | 1238 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/rs/tests/java_api/RSTest_CompatLibLegacy/src/com/android/rs/test/ |
D | clamp.rscript | 10 float2 res2 = clamp(src2, min2, max2); 11 _RS_ASSERT(res2.x == 1.0f); 12 _RS_ASSERT(res2.y == 2.0f);
|
/frameworks/av/media/codecs/amrnb/dec/src/ |
D | pstfilt.cpp | 247 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()
|
D | pstfilt.h | 104 Word16 res2[L_SUBFR]; member
|
/frameworks/rs/tests/java_api/RSUnitTests/src/com/android/rs/unittest/ |
D | clamp.rscript | 26 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/ |
D | clamp.rscript | 28 float2 res2 = clamp(src2, min2, max2); 29 _RS_ASSERT(res2.x == 1.0f); 30 _RS_ASSERT(res2.y == 2.0f);
|
/frameworks/av/media/libstagefright/ |
D | SimpleDecodingSource.cpp | 176 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/ |
D | ColorUtils.cpp | 234 status_t res2 = unwrapColorAspectsFromColorStandard( in convertPlatformColorAspectsToCodecAspects() local 237 return res1 != OK ? res1 : (res2 != OK ? res2 : res3); in convertPlatformColorAspectsToCodecAspects()
|
/frameworks/opt/telephony/tests/telephonytests/src/com/android/internal/telephony/ |
D | PhoneSwitcherTest.java | 1187 AsyncResult res2 = new AsyncResult(0, null, in testRetry_DDS_switch_Failure() local 1189 Message.obtain(mPhoneSwitcher, EVENT_MODEM_COMMAND_DONE, res2).sendToTarget(); in testRetry_DDS_switch_Failure()
|