Lines Matching defs:rnd
444 void allocateTexture (de::Random& rnd);
445 void allocateBuffer (de::Random& rnd);
489 de::Random rnd(m_seed);
503 allocateTexture(rnd);
507 allocateBuffer(rnd);
512 if (rnd.getBool())
513 allocateBuffer(rnd);
515 allocateTexture(rnd);
573 void MemObjectAllocator::allocateTexture (de::Random& rnd)
578 int width = rnd.getInt(m_config.minTextureSize, m_config.maxTextureSize);
579 int height = rnd.getInt(m_config.minTextureSize, m_config.maxTextureSize);
664 void MemObjectAllocator::allocateBuffer (de::Random& rnd)
669 int size = rnd.getInt(m_config.minBufferSize, m_config.maxBufferSize);