Searched refs:shrL (Results 1 - 5 of 5) sorted by relevance

/external/neven/Embedded/common/src/b_TensorEm/
H A DCompactAlt.c206 int32 shrL = expL - ptrA->vecExpE; local
207 int32 addL = ( int32 )1 << ( shrL - 1 );
208 for( iL = 0; iL < sizeL; iL++ ) outVecA[ iL ] = ( ( int32 )outVecA[ iL ] + ( ( ( int32 )vecL[ iL ] + addL ) >> shrL ) + 1 ) >> 1;
213 int32 shrL = ptrA->vecExpE - expL; local
214 int32 addL = ( int32 )1 << ( shrL - 1 );
215 for( iL = 0; iL < sizeL; iL++ ) outVecA[ iL ] = ( ( ( ( int32 )outVecA[ iL ] + addL ) >> shrL ) + vecL[ iL ] + 1 ) >> 1;
216 expL += 1 + shrL;
H A DFlt16Vec.c355 int32 shrL = 0; local
359 shrL++;
362 if( shrL > 0 )
364 valL = ( ( valL >> ( shrL - 1 ) ) + 1 ) >> 1;
365 expL += shrL;
467 uint32 shrL = ptrA->expE - srcPtrA->expE; local
469 for( iL = 0; iL < sizeL; iL++ ) dstL[ iL ] = ( ( dstL[ iL ] >> ( shrL - 1 ) ) + 1 ) >> 1;
475 uint32 shrL = srcPtrA->expE - ptrA->expE; local
477 for( iL = 0; iL < sizeL; iL++ ) dstL[ iL ] = ( ( dstL[ iL ] >> ( shrL - 1 ) ) + 1 ) >> 1;
H A DCompactMat.c542 int32 shrL = maxExpL - expArrL[ iL ]; local
543 if( shrL > 0 )
545 outVecA[ iL ] = ( ( outVecA[ iL ] >> ( shrL - 1 ) ) + 1 ) >> 1;
/external/neven/Embedded/common/src/b_ImageEm/
H A DFunctions.c122 uint32 shrL = invAltL.matE.bbpE - 16; local
123 mxxL = ( ( invAltL.matE.xxE >> ( shrL - 1 ) ) + 1 ) >> 1;
124 mxyL = ( ( invAltL.matE.xyE >> ( shrL - 1 ) ) + 1 ) >> 1;
125 myxL = ( ( invAltL.matE.yxE >> ( shrL - 1 ) ) + 1 ) >> 1;
126 myyL = ( ( invAltL.matE.yyE >> ( shrL - 1 ) ) + 1 ) >> 1;
137 uint32 shrL = invAltL.vecE.bbpE - 16; local
138 txL = ( ( invAltL.vecE.xE >> ( shrL - 1 ) ) + 1 ) >> 1;
139 tyL = ( ( invAltL.vecE.yE >> ( shrL - 1 ) ) + 1 ) >> 1;
454 uint32 shrL = invAltL.matE.bbpE - 16; local
455 mxxL = ( ( invAltL.matE.xxE >> ( shrL
469 uint32 shrL = invAltL.vecE.bbpE - 16; local
[all...]
/external/neven/Embedded/common/src/b_BasicEm/
H A DMath.c966 uint32 shrL = sumExpL - expL; local
967 prdL = ( ( prdL >> ( shrL - 1 ) ) + 1 ) >> 1;
971 uint32 shrL = expL - sumExpL; local
972 sumL = ( ( sumL >> ( shrL - 1 ) ) + 1 ) >> 1;
973 sumExpL += shrL;
1011 uint32 shrL = sumExpL; local
1012 prdL = ( ( prdL >> ( shrL - 1 ) ) + 1 ) >> 1;

Completed in 183 milliseconds