Home
last modified time | relevance | path

Searched refs:outCh (Results 1 – 5 of 5) sorted by relevance

/external/aac/libPCMutils/src/
Dpcmdmx_lib.cpp848 INT mixScales[(8)][(8)], const unsigned int outCh) { in dmxInitChannel() argument
851 if (inCh == outCh) { in dmxInitChannel()
852 mixFactors[outCh][inCh] = FL2FXCONST_DMX(0.5f); in dmxInitChannel()
853 mixScales[outCh][inCh] = 1; in dmxInitChannel()
855 mixFactors[outCh][inCh] = FL2FXCONST_DMX(0.0f); in dmxInitChannel()
856 mixScales[outCh][inCh] = 0; in dmxInitChannel()
870 INT mixScales[(8)][(8)], const unsigned int outCh) { in dmxClearChannel() argument
871 FDK_ASSERT((outCh >= 0) && (outCh < (8))); in dmxClearChannel()
872 FDKmemclear(&mixFactors[outCh], (8) * sizeof(FIXP_DMX)); in dmxClearChannel()
873 FDKmemclear(&mixScales[outCh], (8) * sizeof(INT)); in dmxClearChannel()
[all …]
/external/aac/libSACdec/src/
Dsac_process.cpp896 int outCh = FDK_chMapDescr_getMapValue(mapDescr, mapChannel(self, ch), in SpatialDecSynthesis() local
904 FDK_ASSERT((self->pQmfDomain->QmfDomainOut[outCh].fb.outGain_m == in SpatialDecSynthesis()
906 (self->pQmfDomain->QmfDomainOut[outCh].fb.outGain_e == 0)); in SpatialDecSynthesis()
907 FDK_QmfDomain_GetWorkBuffer(&self->pQmfDomain->QmfDomainIn[outCh], ts, in SpatialDecSynthesis()
910 self->pQmfDomain->QmfDomainIn[outCh].workBuf_nBands); in SpatialDecSynthesis()
915 self->pQmfDomain->QmfDomainIn[outCh].scaling.lb_scale = in SpatialDecSynthesis()
917 self->pQmfDomain->QmfDomainIn[outCh].scaling.lb_scale -= in SpatialDecSynthesis()
918 self->pQmfDomain->QmfDomainIn[outCh].fb.filterScale; in SpatialDecSynthesis()
919 self->pQmfDomain->QmfDomainIn[outCh].scaling.lb_scale -= in SpatialDecSynthesis()
924 err = CalculateSpaceSynthesisQmf(&self->pQmfDomain->QmfDomainOut[outCh], in SpatialDecSynthesis()
[all …]
/external/aac/libSACenc/src/
Dsacenc_tree.cpp401 int i, inCh[2], outCh[2], win[2]; in fdk_sacenc_spaceTree_Apply() local
404 outCh[0] = pTTO->inCh3; in fdk_sacenc_spaceTree_Apply()
407 outCh[1] = pTTO->inCh4; in fdk_sacenc_spaceTree_Apply()
414 pppHybrid__FDK[inCh[i]], pppHybridIn__FDK[outCh[i]], nHybridBands, in fdk_sacenc_spaceTree_Apply()
/external/python/cpython2/Objects/
Dunicodeobject.c1690 Py_UNICODE outCh = (Py_UNICODE) in PyUnicode_DecodeUTF7Stateful() local
1694 assert(outCh <= 0xffff); in PyUnicode_DecodeUTF7Stateful()
1697 if (outCh >= 0xDC00 && outCh <= 0xDFFF) { in PyUnicode_DecodeUTF7Stateful()
1700 | (outCh & 0x3FF)) + 0x10000; in PyUnicode_DecodeUTF7Stateful()
1703 *p++ = outCh; in PyUnicode_DecodeUTF7Stateful()
1713 if (outCh >= 0xD800 && outCh <= 0xDBFF) { in PyUnicode_DecodeUTF7Stateful()
1715 surrogate = outCh; in PyUnicode_DecodeUTF7Stateful()
1718 *p++ = outCh; in PyUnicode_DecodeUTF7Stateful()
/external/python/cpython3/Objects/
Dunicodeobject.c4452 Py_UCS4 outCh = (Py_UCS4)(base64buffer >> (base64bits-16)); in PyUnicode_DecodeUTF7Stateful() local
4455 assert(outCh <= 0xffff); in PyUnicode_DecodeUTF7Stateful()
4458 if (Py_UNICODE_IS_LOW_SURROGATE(outCh)) { in PyUnicode_DecodeUTF7Stateful()
4459 Py_UCS4 ch2 = Py_UNICODE_JOIN_SURROGATES(surrogate, outCh); in PyUnicode_DecodeUTF7Stateful()
4471 if (Py_UNICODE_IS_HIGH_SURROGATE(outCh)) { in PyUnicode_DecodeUTF7Stateful()
4473 surrogate = outCh; in PyUnicode_DecodeUTF7Stateful()
4476 if (_PyUnicodeWriter_WriteCharInline(&writer, outCh) < 0) in PyUnicode_DecodeUTF7Stateful()