/frameworks/base/media/libstagefright/codecs/aacdec/ |
pv_div.h | 62 Int32 quotient; member in struct:intg_div 65 typedef struct intg_div Quotient; 68 void pv_div(Int32 x, Int32 y, Quotient *quotient);
|
pv_div.cpp | 34 Quotient *result structure that hold result and shift factor 40 Implement division of two Int32 numbers, provides back quotient and a 104 void pv_div(Int32 x, Int32 y, Quotient *result) 109 Int32 quotient; local 167 quotient = (0x40000000 / (y >> 15)); 169 y_ov_y_hi = fxp_mul32_Q15(y, quotient); /* y*(1/y_hi) */ 172 y_ov_y_hi = fxp_mul32_Q14(quotient, y_ov_y_hi); 175 result->quotient = flag ? -i : i; 179 result->quotient = 0;
|
ps_pwr_transient_detection.cpp | 193 Quotient result; 330 *(aPower++) = (result.quotient >> (result.shift_factor)) << 1; /* in Q31 */
|
/external/llvm/include/llvm/ADT/ |
APInt.h | 175 APInt *Quotient, APInt *Remainder); 800 /// quotient and remainder. This function does both operations in the same 806 APInt &Quotient, APInt &Remainder); 809 APInt &Quotient, APInt &Remainder) { 812 APInt::udivrem(-LHS, -RHS, Quotient, Remainder); 814 APInt::udivrem(-LHS, RHS, Quotient, Remainder); 815 Quotient = -Quotient; 818 APInt::udivrem(LHS, -RHS, Quotient, Remainder); 819 Quotient = -Quotient [all...] |
/external/llvm/lib/Support/ |
APInt.cpp | [all...] |
/external/llvm/lib/Transforms/Scalar/ |
LoopStrengthReduce.cpp | [all...] |