Home | History | Annotate | Download | only in mips

Lines Matching refs:temp64

58     opus_int64 temp64;
138 temp64 = corr_QC[ 0 ];
139 temp64 = __builtin_mips_shilo(temp64, val);
141 lsh = silk_CLZ64( temp64 ) - 35;
147 temp64 = corr_QC[ i ];
148 //temp64 = __builtin_mips_shilo(temp64, val);
149 temp64 = (val >= 0) ? (temp64 >> val) : (temp64 << -val);
150 corr[ i ] = (opus_int32)silk_CHECK_FIT32( __builtin_mips_shilo( temp64, -lsh ) );
154 temp64 = corr_QC[ i ];
155 //temp64 = __builtin_mips_shilo(temp64, val);
156 temp64 = (val >= 0) ? (temp64 >> val) : (temp64 << -val);
157 corr[ i ] = (opus_int32)silk_CHECK_FIT32( __builtin_mips_shilo( temp64, -lsh ) );