HomeSort by relevance Sort by last modified time
    Searched refs:mult_high (Results 1 - 2 of 2) sorted by null

  /frameworks/av/media/libstagefright/codecs/aacdec/
esc_iquant_scaling.cpp 177 mult_high = ( (Int32) b_high * scale );
181 coef[i] = (Int32) (mult_high + mult_low);
209 b_low = (mult_high & 0xFFFF);
210 b_high = (mult_high >> 16);
213 mult_high = ( (Int32) b_high * scale );
217 coef[i] = (Int32) (mult_high + mult_low);
453 Int32 mult_high; local
506 mult_high = (x * (inverseQuantTable[absX] >> shift));
507 coef[i] = fxp_mul32_by_16(mult_high, scale) << 1;
513 mult_high = y * (inverseQuantTable[absX] >> shift)
    [all...]
tns_decode_coef.cpp 317 Int32 mult_high; local
352 mult_high = fxp_mul32_Q31(*(temp_ptr--), sin_result);
357 * (mult_high <<1) eliminates extra sign bit
360 *(pB++) = *(pA++) + (mult_high << 1);

Completed in 494 milliseconds