Home
last modified time | relevance | path

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

/external/aac/libPCMutils/src/
Dpcmutils_lib.cpp806 const unsigned int outCh in dmxInitChannel() argument
811 if (inCh == outCh) { in dmxInitChannel()
812 mixFactors[outCh][inCh] = FL2FXCONST_DMX(0.5f); in dmxInitChannel()
813 mixScales[outCh][inCh] = 1; in dmxInitChannel()
815 mixFactors[outCh][inCh] = FL2FXCONST_DMX(0.0f); in dmxInitChannel()
816 mixScales[outCh][inCh] = 0; in dmxInitChannel()
832 const unsigned int outCh in dmxClearChannel() argument
835 FDKmemclear(&mixFactors[outCh], PCM_DMX_MAX_CHANNELS*sizeof(FIXP_DMX)); in dmxClearChannel()
836 FDKmemclear(&mixScales[outCh], PCM_DMX_MAX_CHANNELS*sizeof(INT)); in dmxClearChannel()
938 unsigned int outCh, inCh, inChCfg = 0; in getMixFactors() local
[all …]
/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()