HomeSort by relevance Sort by last modified time
    Searched refs:shrL (Results 1 - 5 of 5) sorted by null

  /external/neven/Embedded/common/src/b_TensorEm/
CompactAlt.c 206 int32 shrL = expL - ptrA->vecExpE;
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;
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;
Flt16Vec.c 355 int32 shrL = 0;
359 shrL++;
362 if( shrL > 0 )
364 valL = ( ( valL >> ( shrL - 1 ) ) + 1 ) >> 1;
365 expL += shrL;
467 uint32 shrL = ptrA->expE - srcPtrA->expE;
469 for( iL = 0; iL < sizeL; iL++ ) dstL[ iL ] = ( ( dstL[ iL ] >> ( shrL - 1 ) ) + 1 ) >> 1;
475 uint32 shrL = srcPtrA->expE - ptrA->expE;
477 for( iL = 0; iL < sizeL; iL++ ) dstL[ iL ] = ( ( dstL[ iL ] >> ( shrL - 1 ) ) + 1 ) >> 1;
CompactMat.c 542 int32 shrL = maxExpL - expArrL[ iL ];
543 if( shrL > 0 )
545 outVecA[ iL ] = ( ( outVecA[ iL ] >> ( shrL - 1 ) ) + 1 ) >> 1;
  /external/neven/Embedded/common/src/b_ImageEm/
Functions.c 122 uint32 shrL = invAltL.matE.bbpE - 16;
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;
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;
455 mxxL = ( ( invAltL.matE.xxE >> ( shrL - 1 ) ) + 1 ) >> 1
    [all...]
  /external/neven/Embedded/common/src/b_BasicEm/
Math.c 433 "shrl $4, %%ecx\n\t"
966 uint32 shrL = sumExpL - expL;
967 prdL = ( ( prdL >> ( shrL - 1 ) ) + 1 ) >> 1;
971 uint32 shrL = expL - sumExpL;
972 sumL = ( ( sumL >> ( shrL - 1 ) ) + 1 ) >> 1;
973 sumExpL += shrL;
1011 uint32 shrL = sumExpL;
1012 prdL = ( ( prdL >> ( shrL - 1 ) ) + 1 ) >> 1;
    [all...]

Completed in 31 milliseconds