Home | History | Annotate | Download | only in b_BasicEm

Lines Matching refs:indexL

130 	uint32 indexL = 0;
142 indexL = ( valL >> 24 ) & 0xFE;
144 return ( bbs_fastSqrt32_tableG[ indexL ] + offsL * bbs_fastSqrt32_tableG[ indexL + 1 ] ) >> ( 28 - ( expL >> 1 ) );
185 uint32 indexL = 0;
197 indexL = ( valL >> 24 ) & 0xFE;
199 return ( bbs_invSqrt32_tableG[ indexL ] - offsL * bbs_invSqrt32_tableG[ indexL + 1 ] ) >> ( expL >> 1 );
225 uint32 indexL = 0;
238 indexL = ( valL >> 24 ) & 0xFE;
240 return signL * ( ( ( ( bbs_inv32_tableG[ indexL ] - offsL * bbs_inv32_tableG[ indexL + 1 ] ) >> ( expL - 1 ) ) + 1 ) >> 1 );
281 uint16 indexL = ( ( valA & 0xFC000000 ) >> 26 ) << 1;
282 return bbs_pow2M1_tableG[ indexL ] + offsL * bbs_pow2M1_tableG[ indexL + 1 ];
731 uint32 indexL = ( ( valA >> 15 ) + 20 ) << 1;
735 return ( bbs_fermi_tableG[ indexL ] + offsL * bbs_fermi_tableG[ indexL + 1 ] );