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

  /external/deqp/modules/gles2/functional/
es2fDitheringTests.cpp 179 const float scaledInput = inputClr[chanNdx] * (float)channelMax;
180 const bool useRoundingMargin = deFloatAbs(scaledInput - deFloatRound(scaledInput)) < 0.0001f;
183 channelChoices.push_back(de::min(channelMax, (int)deFloatCeil(scaledInput)));
184 channelChoices.push_back(de::max(0, (int)deFloatCeil(scaledInput) - 1));
189 if (scaledInput > deFloatRound(scaledInput))
190 channelChoices.push_back((int)deFloatCeil(scaledInput) - 2);
192 channelChoices.push_back((int)deFloatCeil(scaledInput) + 1);
220 << "Note: " << inputClr[chanNdx] << " * (" << channelMax + 1 << "-1) = " << scaledInput
    [all...]
  /external/deqp/modules/gles3/functional/
es3fDitheringTests.cpp 179 const float scaledInput = inputClr[chanNdx] * (float)channelMax;
180 const bool useRoundingMargin = deFloatAbs(scaledInput - deFloatRound(scaledInput)) < 0.0001f;
183 channelChoices.push_back(de::min(channelMax, (int)deFloatCeil(scaledInput)));
184 channelChoices.push_back(de::max(0, (int)deFloatCeil(scaledInput) - 1));
189 if (scaledInput > deFloatRound(scaledInput))
190 channelChoices.push_back((int)deFloatCeil(scaledInput) - 2);
192 channelChoices.push_back((int)deFloatCeil(scaledInput) + 1);
220 << "Note: " << inputClr[chanNdx] << " * (" << channelMax + 1 << "-1) = " << scaledInput
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/audio/
DynamicsCompressorKernel.cpp 386 float scaledInput = compressorInput;
387 float absInput = scaledInput > 0 ? scaledInput : -scaledInput;

Completed in 76 milliseconds