Searched refs:nTemp (Results 1 - 16 of 16) sorted by relevance

/external/sonivox/arm-fm-22k/lib_src/
H A Deas_fmengine.c210 EAS_I32 nTemp; local
233 nTemp = EG1_ONE + FMUL_15x15(COEFF_PAN_G2, nNetAngle);
234 nTemp = COEFF_PAN_G0 + FMUL_15x15(nTemp, nNetAngle);
236 if (nTemp > SYNTH_FULL_SCALE_EG1_GAIN)
237 nTemp = SYNTH_FULL_SCALE_EG1_GAIN;
238 else if (nTemp < 0)
239 nTemp = 0;
241 *pGainRight = (EAS_U16) nTemp;
244 nTemp
741 EAS_I32 nTemp; local
[all...]
H A Deas_math.c121 EAS_U16 nTemp; local
138 nTemp = (EAS_U16)((((nGain & 0x3ff) << 4) | 0x4000) >> nExp);
141 return nTemp;
H A Deas_reverb.c466 EAS_I32 nTemp; local
495 nTemp = EG1_ONE + MULT_EG1_EG1(REVERB_PAN_G2, nNetAngle);
496 nTemp = REVERB_PAN_G0 + MULT_EG1_EG1(nTemp, nNetAngle);
497 *pnSin = (EAS_I16) SATURATE_EG1(nTemp);
500 nTemp = -EG1_ONE + MULT_EG1_EG1(REVERB_PAN_G2, nNetAngle);
501 nTemp = REVERB_PAN_G0 + MULT_EG1_EG1(nTemp, nNetAngle);
502 *pnCos = (EAS_I16) SATURATE_EG1(nTemp);
/external/sonivox/arm-hybrid-22k/lib_src/
H A Deas_fmengine.c210 EAS_I32 nTemp; local
233 nTemp = EG1_ONE + FMUL_15x15(COEFF_PAN_G2, nNetAngle);
234 nTemp = COEFF_PAN_G0 + FMUL_15x15(nTemp, nNetAngle);
236 if (nTemp > SYNTH_FULL_SCALE_EG1_GAIN)
237 nTemp = SYNTH_FULL_SCALE_EG1_GAIN;
238 else if (nTemp < 0)
239 nTemp = 0;
241 *pGainRight = (EAS_U16) nTemp;
244 nTemp
741 EAS_I32 nTemp; local
[all...]
H A Deas_math.c121 EAS_U16 nTemp; local
138 nTemp = (EAS_U16)((((nGain & 0x3ff) << 4) | 0x4000) >> nExp);
141 return nTemp;
H A Deas_reverb.c466 EAS_I32 nTemp; local
495 nTemp = EG1_ONE + MULT_EG1_EG1(REVERB_PAN_G2, nNetAngle);
496 nTemp = REVERB_PAN_G0 + MULT_EG1_EG1(nTemp, nNetAngle);
497 *pnSin = (EAS_I16) SATURATE_EG1(nTemp);
500 nTemp = -EG1_ONE + MULT_EG1_EG1(REVERB_PAN_G2, nNetAngle);
501 nTemp = REVERB_PAN_G0 + MULT_EG1_EG1(nTemp, nNetAngle);
502 *pnCos = (EAS_I16) SATURATE_EG1(nTemp);
/external/sonivox/arm-wt-22k/lib_src/
H A Deas_math.c121 EAS_U16 nTemp; local
138 nTemp = (EAS_U16)((((nGain & 0x3ff) << 4) | 0x4000) >> nExp);
141 return nTemp;
H A Deas_reverb.c466 EAS_I32 nTemp; local
495 nTemp = EG1_ONE + MULT_EG1_EG1(REVERB_PAN_G2, nNetAngle);
496 nTemp = REVERB_PAN_G0 + MULT_EG1_EG1(nTemp, nNetAngle);
497 *pnSin = (EAS_I16) SATURATE_EG1(nTemp);
500 nTemp = -EG1_ONE + MULT_EG1_EG1(REVERB_PAN_G2, nNetAngle);
501 nTemp = REVERB_PAN_G0 + MULT_EG1_EG1(nTemp, nNetAngle);
502 *pnCos = (EAS_I16) SATURATE_EG1(nTemp);
/external/pdfium/core/src/fxcodec/jbig2/
H A DJBig2_ArithIntDecoder.cpp21 int nNeedBits, nTemp, i; local
62 nTemp = 0;
70 nTemp = (nTemp << 1) | D;
72 V += nTemp;
H A DJBig2_Context.cpp1671 FX_INT32 i, j, nTemp, nVal, nBits; local
1685 if(pStream->read1Bit(&nTemp) != 0) {
1688 nVal = (nVal << 1) | nTemp;
1704 if(pStream->readNBits(2, &nTemp) != 0) {
1707 run = nTemp + 3;
1709 if(pStream->readNBits(3, &nTemp) != 0) {
1712 run = nTemp + 3;
1714 if(pStream->readNBits(7, &nTemp) != 0) {
1717 run = nTemp + 11;
/external/chromium_org/third_party/sqlite/src/ext/fts3/
H A Dfts3_expr.c225 int nTemp = 0; local
238 zTemp = fts3ReallocOrFree(zTemp, nTemp + nToken);
250 memcpy(&zTemp[nTemp], zToken, nToken);
251 nTemp += nToken;
270 p = fts3ReallocOrFree(p, nByte + nTemp);
276 memcpy(zNew, zTemp, nTemp);
278 memset(p, 0, nByte+nTemp);
/external/chromium_org/third_party/sqlite/src/src/
H A Dvdbeaux.c852 static char *displayP4(Op *pOp, char *zTemp, int nTemp){ argument
854 assert( nTemp>=20 );
860 sqlite3_snprintf(nTemp, zTemp, "keyinfo(%d", pKeyInfo->nField);
866 if( i+n>nTemp-6 ){
876 }else if( i+4<nTemp-6 ){
883 assert( i<nTemp );
888 sqlite3_snprintf(nTemp, zTemp, "collseq(%.20s)", pColl->zName);
893 sqlite3_snprintf(nTemp, zTemp, "%s(%d)", pDef->zName, pDef->nArg);
897 sqlite3_snprintf(nTemp, zTemp, "%lld", *pOp->p4.pI64);
901 sqlite3_snprintf(nTemp, zTem
[all...]
/external/pdfium/fpdfsdk/src/fxedit/
H A Dfxet_list.cpp405 FX_INT32 nTemp = nEndIndex; local
407 nBeginIndex = nTemp;
427 FX_INT32 nTemp = nEndIndex; local
429 nBeginIndex = nTemp;
/external/sqlite/dist/orig/
H A Dsqlite3.c63230 displayP4(Op *pOp, char *zTemp, int nTemp) argument
133472 int nTemp = 0; local
[all...]
/external/sqlite/dist/
H A Dsqlite3.c63250 displayP4(Op *pOp, char *zTemp, int nTemp) argument
133504 int nTemp = 0; local
[all...]
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.c57977 displayP4(Op *pOp, char *zTemp, int nTemp) argument
117450 int nTemp = 0; local
[all...]

Completed in 1032 milliseconds