Lines Matching full:seed
516 static UniformCollection* random (const deUint32 seed)
518 Random rnd (seed);
904 static CaseShaderType randomCaseShaderType (const deUint32 seed)
906 return (CaseShaderType)Random(seed).getInt(0, CASESHADERTYPE_LAST-1);
943 UniformCase (Context& context, const char* name, const char* description, deUint32 seed); // \note Randomizes caseType, uniformCollection and features.
1055 static deUint32 randomFeatures (deUint32 seed);
1083 deUint32 UniformCase::randomFeatures (const deUint32 seed)
1093 Random rnd(seed);
1130 UniformCase::UniformCase (Context& context, const char* name, const char* description, const deUint32 seed)
1133 , m_features (randomFeatures(seed))
1134 , m_uniformCollection (UniformCollection::random(seed))
1135 , m_caseShaderType (randomCaseShaderType(seed))
2495 RandomUniformCase (Context& m_context, const char* name, const char* description, deUint32 seed);
2500 RandomUniformCase::RandomUniformCase (Context& context, const char* const name, const char* const description, const deUint32 seed)
2501 : UniformCase (context, name, description, seed ^ (deUint32)context.getTestContext().getCommandLine().getBaseSeed())