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

  /frameworks/av/media/libeffects/lvm/lib/Common/lib/
LVM_Macros.h 26 MUL32x32INTO32(A,B,C,ShiftR)
27 C = (A * B) >> ShiftR
29 A, B and C are all 32 bit SIGNED numbers and ShiftR can vary from 0 to 64
36 #define MUL32x32INTO32(A,B,C,ShiftR) \
39 shiftValue = (ShiftR);\
64 MUL32x16INTO32(A,B,C,ShiftR)
65 C = (A * B) >> ShiftR
68 ShiftR can vary from 0 to 48
75 #define MUL32x16INTO32(A,B,C,ShiftR) \
78 shiftValue = (ShiftR);\
    [all...]
  /external/llvm/include/llvm/Support/
ScaledNumber.h 312 int32_t ShiftR = ScaleDiff - ShiftL;
313 if (ShiftR >= getWidth<DigitsT>()) {
320 RDigits >>= ShiftR;
323 RScale += ShiftR;

Completed in 138 milliseconds