Home | History | Annotate | Download | only in audioflinger

Lines Matching defs:norm

84     static const float norm = 1. / (1 << 12);
85 return value * volume * norm;
90 static const float norm = 1. / (1 << 28);
91 return value * volume * norm;
106 static const float norm = 1. / (1 << (15 + 12));
107 return static_cast<float>(value) * static_cast<float>(volume) * norm;
112 static const float norm = 1. / (1ULL << (15 + 28));
113 return static_cast<float>(value) * static_cast<float>(volume) * norm;
191 static const float norm = 1. / (1 << 15);
192 *auxaccum += norm * value;
197 static const float norm = 1. / (1 << 27);
198 *auxaccum += norm * value;