Searched refs:s_randMaximum (Results 1 - 1 of 1) sorted by relevance

/external/webkit/Source/WebCore/platform/graphics/filters/
H A DFETurbulence.cpp47 static const long s_randMaximum = 2147483647; // 2**31 - 1 member in namespace:WebCore
165 result += s_randMaximum;
184 // The seed value clamp to the range [1, s_randMaximum - 1].
186 paintingData.seed = -(paintingData.seed % (s_randMaximum - 1)) + 1;
187 if (paintingData.seed > s_randMaximum - 1)
188 paintingData.seed = s_randMaximum - 1;

Completed in 48 milliseconds