Searched refs:normL (Results 1 - 6 of 6) sorted by relevance

/external/neven/Embedded/common/src/b_TensorEm/
H A DInt16Vec3D.c135 int32 normL = bbs_sqrt32( ( int32 ) ptrA->xE * ptrA->xE + local
139 int32 xL = ( ( int32 )ptrA->xE << 16 ) / normL;
140 int32 yL = ( ( int32 )ptrA->yE << 16 ) / normL;
141 int32 zL = ( ( int32 )ptrA->zE << 16 ) / normL;
H A DInt16Vec2D.c153 int32 normL = bbs_sqrt32( ( int32 ) ptrA->xE * ptrA->xE + ( int32 ) ptrA->yE * ptrA->yE ); local
154 int32 xL = ( ( int32 ) ptrA->xE << 16 ) / normL;
155 int32 yL = ( ( int32 ) ptrA->yE << 16 ) / normL;
H A DFlt16Vec.c281 uint32 normL = bts_Flt16Vec_norm( cpA, ptrA ); local
283 if( normL == 0 )
297 if( ( normL & 0xFFFE0000 ) != 0 )
299 while( ( ( normL >> -expL ) & 0xFFFE0000 ) != 0 ) expL--;
300 normL >>= -expL;
304 while( ( ( normL << expL ) & 0xFFFF0000 ) == 0 ) expL++;
305 normL <<= expL;
309 fL = ( uint32 )0xFFFFFFFF / normL;
H A DFlt16Vec3D.c235 int32 normL = bbs_sqrt32( ( int32 ) ptrA->xE * ptrA->xE + local
239 int32 xL = ( ( int32 ) ptrA->xE << 16 ) / normL;
240 int32 yL = ( ( int32 ) ptrA->yE << 16 ) / normL;
241 int32 zL = ( ( int32 ) ptrA->zE << 16 ) / normL;
H A DRBFMap2D.c227 int32 normL = 0; local
231 normL = bts_Int16Vec2D_norm( &vecL );
232 *ptrL++ = normL << internalShiftL;
501 int32 normL = 0; local
504 normL = bts_Int16Vec2D_norm( &vecL );
506 /* printf( "iL = %d, norm = %d\n", iL, normL ); */
508 xSumL += ( normL * ptrA->rbfCoeffClusterE.vecArrE[ iL ].xE ) >> shiftL;
509 ySumL += ( normL * ptrA->rbfCoeffClusterE.vecArrE[ iL ].yE ) >> shiftL;
H A DFlt16Vec2D.c225 int32 normL = bbs_sqrt32( ( int32 ) ptrA->xE * ptrA->xE + ( int32 ) ptrA->yE * ptrA->yE ); local
226 int32 xL = ( ( int32 ) ptrA->xE << 16 ) / normL;
227 int32 yL = ( ( int32 ) ptrA->yE << 16 ) / normL;

Completed in 161 milliseconds