Home | History | Annotate | Download | only in b_TensorEm

Lines Matching refs:shiftL

37 	int32 shiftL;
51 shiftL = bts_absIntLog2( maxL ) + 1 - nBitsA;
53 if( shiftL > 0 )
59 *ptrL = ( ( *ptrL >> ( shiftL - 1 ) ) + 1 ) >> 1;
63 *bbpPtrA -= shiftL;
264 int32 bbp_pivRowL, bbp_vecL, shiftL;
374 shiftL = 30 - bts_absIntLog2( vecL[ jPivL ] );
376 vecL[ jPivL ] = ( vecL[ jPivL ] << shiftL ) / maxL;
377 bbp_vecL = bbpL + shiftL - bbp_maxL;
393 shiftL = bbp_tmpL + bbp_pivRowL - bbpL;
394 if( shiftL > 0 )
398 *rowPtrL++ -= ( ( ( tmpL * pivRowL[ jL ] ) >> ( shiftL - 1 ) ) + 1 ) >> 1;
405 *rowPtrL++ -= ( tmpL * pivRowL[ jL ] ) << -shiftL;
409 shiftL = bbp_tmpL + bbp_vecL - bbpL;
410 if( shiftL > 0 )
412 vecL[ iL ] -= ( ( ( tmpL * vecL[ jPivL ] ) >> ( shiftL - 1 ) ) + 1 ) >> 1;
416 vecL[ iL ] -= ( tmpL * vecL[ jPivL ] ) << -shiftL;
422 shiftL = bbpL - bbp_pivRowL;
423 if( shiftL >= 0 )
427 pivRowL[ jL ] <<= shiftL;
432 shiftL = -shiftL;
435 pivRowL[ jL ] = ( ( pivRowL[ jL ] >> ( shiftL - 1 ) ) + 1 ) >> 1;
439 shiftL = bbpL - bbp_vecL;
440 if( shiftL >= 0 )
442 vecL[ jPivL ] <<= shiftL;
446 shiftL = -shiftL;
447 vecL[ jPivL ] = ( ( vecL[ jPivL ] >> ( shiftL - 1 ) ) + 1 ) >> 1;
459 int32 iL, shiftL;
468 shiftL = 30 - bts_absIntLog2( maxL );
469 if( shiftL < ( bbpA - bbpL ) )
480 shiftL = bbpA - bbpL;
481 for( iL = 0; iL < sizeL; iL++ ) vecL[ iL ] <<= shiftL;