Home
last modified time | relevance | path

Searched refs:lsh (Results 1 – 3 of 3) sorted by relevance

/external/libopus/silk/fixed/
Dwarped_autocorrelation_FIX.c53 opus_int n, i, lsh; in silk_warped_autocorrelation_FIX() local
80 lsh = silk_CLZ64( corr_QC[ 0 ] ) - 35; in silk_warped_autocorrelation_FIX()
81 lsh = silk_LIMIT( lsh, -12 - QC, 30 - QC ); in silk_warped_autocorrelation_FIX()
82 *scale = -( QC + lsh ); in silk_warped_autocorrelation_FIX()
84 if( lsh >= 0 ) { in silk_warped_autocorrelation_FIX()
86 corr[ i ] = (opus_int32)silk_CHECK_FIT32( silk_LSHIFT64( corr_QC[ i ], lsh ) ); in silk_warped_autocorrelation_FIX()
90 corr[ i ] = (opus_int32)silk_CHECK_FIT32( silk_RSHIFT64( corr_QC[ i ], -lsh ) ); in silk_warped_autocorrelation_FIX()
/external/libopus/silk/fixed/mips/
Dwarped_autocorrelation_FIX_mipsr1.h54 opus_int n, i, lsh; in silk_warped_autocorrelation_FIX() local
141 lsh = silk_CLZ64( temp64 ) - 35; in silk_warped_autocorrelation_FIX()
142 lsh = silk_LIMIT( lsh, -12 - QC, 30 - QC ); in silk_warped_autocorrelation_FIX()
143 *scale = -( QC + lsh ); in silk_warped_autocorrelation_FIX()
145 if( lsh >= 0 ) { in silk_warped_autocorrelation_FIX()
150 corr[ i ] = (opus_int32)silk_CHECK_FIT32( __builtin_mips_shilo( temp64, -lsh ) ); in silk_warped_autocorrelation_FIX()
157 corr[ i ] = (opus_int32)silk_CHECK_FIT32( __builtin_mips_shilo( temp64, -lsh ) ); in silk_warped_autocorrelation_FIX()
/external/compiler-rt/lib/builtins/
Dint_lib.h119 uint32_t lsh = (uint32_t)(value & 0xFFFFFFFF); in __builtin_clzll() local
122 return 32 + __builtin_clz(lsh); in __builtin_clzll()