Lines Matching full:rnd
78 static tcu::Vector<float, Size> randomVector (de::Random& rnd, const tcu::Vector<float, Size>& minVal = tcu::Vector<float, Size>(0.0f), const tcu::Vector<float, Size>& maxVal = tcu::Vector<float, Size>(1.0f))
82 res[ndx] = rnd.getFloat(minVal[ndx], maxVal[ndx]);
147 de::Random rnd (deStringHash(getName()));
150 int x = rnd.getInt(0, renderTarget.getWidth() - width);
151 int y = rnd.getInt(0, renderTarget.getHeight() - height);
329 de::Random rnd (deStringHash(getName()));
340 Vec4 gMin = randomVector<4>(rnd, m_texFormatInfo.valueMin, m_texFormatInfo.valueMax);
341 Vec4 gMax = randomVector<4>(rnd, m_texFormatInfo.valueMin, m_texFormatInfo.valueMax);
367 de::Random rnd (deStringHash(getName()));
380 Vec4 gMin = randomVector<4>(rnd, m_texFormatInfo.valueMin, m_texFormatInfo.valueMax);
381 Vec4 gMax = randomVector<4>(rnd, m_texFormatInfo.valueMin, m_texFormatInfo.valueMax);
652 de::Random rnd (deStringHash(getName()));
679 const int w = rnd.getInt(1, levelW);
680 const int h = rnd.getInt(1, levelW);
681 const int d = rnd.getInt(1, m_depth);
682 const int x = rnd.getInt(0, levelW-w);
683 const int y = rnd.getInt(0, levelW-h);
684 const int z = rnd.getInt(0, m_depth-d);
688 const int cellSize = rnd.getInt(2, 16);