Home
last modified time | relevance | path

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

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