Home
last modified time | relevance | path

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

/external/aac/libPCMutils/src/
Dpcmdmx_lib.cpp876 INT mixScales[(8)][(8)], const unsigned int outCh) { in dmxInitChannel() argument
879 if (inCh == outCh) { in dmxInitChannel()
880 mixFactors[outCh][inCh] = FL2FXCONST_DMX(0.5f); in dmxInitChannel()
881 mixScales[outCh][inCh] = 1; in dmxInitChannel()
883 mixFactors[outCh][inCh] = FL2FXCONST_DMX(0.0f); in dmxInitChannel()
884 mixScales[outCh][inCh] = 0; in dmxInitChannel()
898 INT mixScales[(8)][(8)], const unsigned int outCh) { in dmxClearChannel() argument
899 FDK_ASSERT((outCh >= 0) && (outCh < (8))); in dmxClearChannel()
900 FDKmemclear(&mixFactors[outCh], (8) * sizeof(FIXP_DMX)); in dmxClearChannel()
901 FDKmemclear(&mixScales[outCh], (8) * sizeof(INT)); in dmxClearChannel()
[all …]
/external/aac/libSACdec/src/
Dsac_process.cpp914 int outCh = FDK_chMapDescr_getMapValue(mapDescr, mapChannel(self, ch), in SpatialDecSynthesis() local
922 FDK_ASSERT((self->pQmfDomain->QmfDomainOut[outCh].fb.outGain_m == in SpatialDecSynthesis()
924 (self->pQmfDomain->QmfDomainOut[outCh].fb.outGain_e == 0)); in SpatialDecSynthesis()
925 FDK_QmfDomain_GetWorkBuffer(&self->pQmfDomain->QmfDomainIn[outCh], ts, in SpatialDecSynthesis()
928 self->pQmfDomain->QmfDomainIn[outCh].workBuf_nBands); in SpatialDecSynthesis()
933 self->pQmfDomain->QmfDomainIn[outCh].scaling.lb_scale = in SpatialDecSynthesis()
935 self->pQmfDomain->QmfDomainIn[outCh].scaling.lb_scale -= in SpatialDecSynthesis()
936 self->pQmfDomain->QmfDomainIn[outCh].fb.filterScale; in SpatialDecSynthesis()
937 self->pQmfDomain->QmfDomainIn[outCh].scaling.lb_scale -= in SpatialDecSynthesis()
940 self->pQmfDomain->QmfDomainIn[outCh].scaling.lb_scale -= (1); 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.c4606 Py_UCS4 outCh = (Py_UCS4)(base64buffer >> (base64bits-16)); in PyUnicode_DecodeUTF7Stateful() local
4609 assert(outCh <= 0xffff); in PyUnicode_DecodeUTF7Stateful()
4612 if (Py_UNICODE_IS_LOW_SURROGATE(outCh)) { in PyUnicode_DecodeUTF7Stateful()
4613 Py_UCS4 ch2 = Py_UNICODE_JOIN_SURROGATES(surrogate, outCh); in PyUnicode_DecodeUTF7Stateful()
4625 if (Py_UNICODE_IS_HIGH_SURROGATE(outCh)) { in PyUnicode_DecodeUTF7Stateful()
4627 surrogate = outCh; in PyUnicode_DecodeUTF7Stateful()
4630 if (_PyUnicodeWriter_WriteCharInline(&writer, outCh) < 0) in PyUnicode_DecodeUTF7Stateful()