Home
last modified time | relevance | path

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

/external/aac/libSACdec/src/
Dsac_smoothing.cpp252 FIXP_DBL tmpL, tmpR, tmp; in SpatialDecSmoothOPD() local
254 tmpL = self->PhaseLeft__FDK[pb]; in SpatialDecSmoothOPD()
257 while (tmpL > phaseLeftSmooth__FDK[pb] + PI__IPD) tmpL -= PI__IPD << 1; in SpatialDecSmoothOPD()
258 while (tmpL < phaseLeftSmooth__FDK[pb] - PI__IPD) tmpL += PI__IPD << 1; in SpatialDecSmoothOPD()
263 fMult(delta__FDK, tmpL) + in SpatialDecSmoothOPD()
269 tmp = (((tmpL >> 1) - (tmpR >> 1)) - ((phaseLeftSmooth__FDK[pb] >> 1) - in SpatialDecSmoothOPD()
277 phaseLeftSmooth__FDK[pb] = tmpL; in SpatialDecSmoothOPD()
/external/neven/Embedded/common/src/b_TensorEm/
DInt32Mat.c308 int32 tmpL = *row1PtrL; in bts_Int32Mat_solve2() local
310 *row2PtrL++ = tmpL; in bts_Int32Mat_solve2()
314 int32 tmpL = vecL[ jPivL ]; in bts_Int32Mat_solve2() local
316 vecL[ iPivL ] = tmpL; in bts_Int32Mat_solve2()
389 int32 tmpL = *( rowPtrL + jPivL ); in bts_Int32Mat_solve2() local
391 bbs_int32ReduceToNBits( &tmpL, &bbp_tmpL, 15 ); in bts_Int32Mat_solve2()
398 *rowPtrL++ -= ( ( ( tmpL * pivRowL[ jL ] ) >> ( shiftL - 1 ) ) + 1 ) >> 1; in bts_Int32Mat_solve2()
405 *rowPtrL++ -= ( tmpL * pivRowL[ jL ] ) << -shiftL; in bts_Int32Mat_solve2()
412 vecL[ iL ] -= ( ( ( tmpL * vecL[ jPivL ] ) >> ( shiftL - 1 ) ) + 1 ) >> 1; in bts_Int32Mat_solve2()
416 vecL[ iL ] -= ( tmpL * vecL[ jPivL ] ) << -shiftL; in bts_Int32Mat_solve2()
/external/neven/Embedded/common/src/b_ImageEm/
DUInt16BytePyrImage.c352 uint16 tmpL; in bim_UInt16BytePyrImage_recompute() local
367 tmpL = ( ( *srcL & 0x0FF ) + ( *srcL >> 8 ) + ( *( srcL + halfWidthL ) & 0x0FF ) + in bim_UInt16BytePyrImage_recompute()
370 *dstL = tmpL << 8; in bim_UInt16BytePyrImage_recompute()
372 *dstL = tmpL; in bim_UInt16BytePyrImage_recompute()
376 tmpL = ( ( *srcL & 0x0FF ) + ( *srcL >> 8 ) + ( *( srcL + halfWidthL ) & 0x0FF ) + in bim_UInt16BytePyrImage_recompute()
379 *dstL |= tmpL; in bim_UInt16BytePyrImage_recompute()
381 *dstL |= tmpL << 8; in bim_UInt16BytePyrImage_recompute()
/external/neven/Embedded/common/src/b_BitFeatureEm/
DLocalScanDetector.c669 int16 tmpL = idxArrL[ iL - 1 ]; in bbf_LocalScanDetector_process() local
671 idxArrL[ iL ] = tmpL; in bbf_LocalScanDetector_process()