Home
last modified time | relevance | path

Searched refs:excp (Results 1 – 4 of 4) sorted by relevance

/aosp12/frameworks/av/media/codecs/amrwb/dec/src/
H A Dpvamrwbdecoder.cpp309 int16 *excp = &code[L_SUBFR]; in pvDecoder_AmrWb() local
310 int16 *exc2 = &excp[L_SUBFR]; /* excitation vector */ in pvDecoder_AmrWb()
925 excp[i] = amr_wb_round(L_tmp); in pvDecoder_AmrWb()
1084 excp[i] = add_int16(excp[i], exc2[i]); in pvDecoder_AmrWb()
1086 agc2_amr_wb(exc2, excp, L_SUBFR); in pvDecoder_AmrWb()
1087 pv_memcpy((void *)exc2, (void *)excp, L_SUBFR*sizeof(*exc2)); in pvDecoder_AmrWb()
/aosp12/frameworks/av/media/codecs/amrnb/dec/src/
H A Ddec_amr.cpp1364 Word16 excp[L_SUBFR]; in Decoder_amr() local
2069 *(excp + i) = pv_round(L_temp, pOverflow); in Decoder_amr()
2276 *(excp + i) = add(*(excp + i), *(exc_enhanced + i), pOverflow); in Decoder_amr()
2279 agc2(exc_enhanced, excp, L_SUBFR, pOverflow); in Decoder_amr()
2281 Syn_filt(Az, excp, &synth[i_subfr], L_SUBFR, in Decoder_amr()
/aosp12/frameworks/opt/telephony/src/java/com/android/internal/telephony/sip/
H A DSipPhone.java530 CallStateException excp = null; in hangup() local
535 excp = e; in hangup()
538 if (excp != null) throw excp; in hangup()
/aosp12/hardware/google/graphics/common/libhwc2.1/libdevice/
H A DExynosDisplay.cpp4831 unsigned int excp; in handleWindowUpdate() local
4864 excp = getLayerRegion(mLayers[i], &damageRect, eDamageRegionByDamage); in handleWindowUpdate()
4865 if (excp == eDamageRegionPartial) { in handleWindowUpdate()
4870 else if (excp == eDamageRegionSkip) { in handleWindowUpdate()
4891 else if (excp == eDamageRegionFull) { in handleWindowUpdate()
4901 … DISPLAY_LOGD(eDebugWindowUpdate, "Partial canceled, Skip reason (layer %zu) : %d", i, excp); in handleWindowUpdate()