HomeSort by relevance Sort by last modified time
    Searched refs:choose (Results 1 - 25 of 53) sorted by null

1 2 3

  /external/deqp/modules/glshared/
glsInteractionTestUtil.cpp 47 float r = rnd.choose<float>(DE_ARRAY_BEGIN(components), DE_ARRAY_END(components));
48 float g = rnd.choose<float>(DE_ARRAY_BEGIN(components), DE_ARRAY_END(components));
49 float b = rnd.choose<float>(DE_ARRAY_BEGIN(components), DE_ARRAY_END(components));
50 float a = rnd.choose<float>(DE_ARRAY_BEGIN(components), DE_ARRAY_END(components));
174 state.stencil[ndx].function = rnd.choose<deUint32>(DE_ARRAY_BEGIN(compareFuncs), DE_ARRAY_END(compareFuncs));
177 state.stencil[ndx].stencilFailOp = rnd.choose<deUint32>(DE_ARRAY_BEGIN(stencilOps), DE_ARRAY_END(stencilOps));
178 state.stencil[ndx].depthFailOp = rnd.choose<deUint32>(DE_ARRAY_BEGIN(stencilOps), DE_ARRAY_END(stencilOps));
179 state.stencil[ndx].depthPassOp = rnd.choose<deUint32>(DE_ARRAY_BEGIN(stencilOps), DE_ARRAY_END(stencilOps));
186 state.depthFunc = rnd.choose<deUint32>(DE_ARRAY_BEGIN(compareFuncs), DE_ARRAY_END(compareFuncs));
194 state.blendRGBState.equation = rnd.choose<deUint32>(DE_ARRAY_BEGIN(blendEquationsES2), DE_ARRAY_END(blendEquationsES2))
    [all...]
glsRandomUniformBlockCase.cpp 107 layoutFlags |= rnd.choose<deUint32>(layoutFlagCandidates.begin(), layoutFlagCandidates.end());
112 layoutFlags |= rnd.choose<deUint32>(&matrixCandidates[0], &matrixCandidates[DE_LENGTH_OF_ARRAY(matrixCandidates)]);
233 glu::DataType type = rnd.choose<glu::DataType>(typeCandidates.begin(), typeCandidates.end());
240 flags |= rnd.choose<deUint32>(&precisionCandidates[0], &precisionCandidates[DE_LENGTH_OF_ARRAY(precisionCandidates)]);
  /external/deqp/framework/delibs/decpp/
deRandom.hpp 58 void choose (InputIter first, InputIter last, OutputIter result, int numItems);
61 T choose (InputIter first, InputIter last);
103 void Random::choose (InputIter first, InputIter last, OutputIter result, int numItems) function in class:de::Random
126 T Random::choose (InputIter first, InputIter last) function in class:de::Random
130 choose(first, last, &val, 1);
deRandom.cpp 107 // choose(first, last, resultOut, num)
130 rnd.choose(DE_ARRAY_BEGIN(items), DE_ARRAY_END(items), &itemsDst[0], numItemsPicked);
136 // choose(first, last)
144 DE_TEST_ASSERT(expected[i] == rnd.choose<int>(DE_ARRAY_BEGIN(items), DE_ARRAY_END(items)));
  /ndk/sources/cxx-stl/gnu-libstdc++/
Android.mk 20 # For armeabi*, choose thumb mode unless LOCAL_ARM_MODE := arm
33 # For armeabi*, choose thumb mode unless LOCAL_ARM_MODE := arm
  /ndk/sources/cxx-stl/gabi++/
Android.mk 10 # For armeabi*, choose thumb mode unless LOCAL_ARM_MODE := arm
24 # For armeabi*, choose thumb mode unless LOCAL_ARM_MODE := arm
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_pkgimport.py 10 self.package_name += random.choose(string.letters)
62 var += random.choose(string.letters)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_pkgimport.py 10 self.package_name += random.choose(string.letters)
62 var += random.choose(string.letters)
  /ndk/sources/cxx-stl/stlport/
Android.mk 80 # For armeabi*, choose thumb mode unless LOCAL_ARM_MODE := arm
93 # For armeabi*, choose thumb mode unless LOCAL_ARM_MODE := arm
  /external/deqp/modules/egl/
teglMemoryStressTests.cpp 159 ObjectType type = m_rnd.choose<ObjectType>(types.begin(), types.end());
218 EGLContext context = m_rnd.choose<EGLContext>(m_contexts.begin(), m_contexts.end());
282 EGLSurface surface = m_rnd.choose<EGLSurface>(m_pbuffers.begin(), m_pbuffers.end());
teglChooseConfigTests.cpp 21 * \brief Choose config tests.
379 return rnd.choose<EGLint>(types, types+DE_LENGTH_OF_ARRAY(types));
385 return rnd.choose<EGLint>(caveats, caveats+DE_LENGTH_OF_ARRAY(caveats));
460 AttribSpec spec = rnd.choose<AttribSpec>(candidates.begin(), candidates.end());
  /external/deqp/modules/gles3/stress/
es3sLongShaderTests.cpp 249 m_rnd.choose(m_varNames.begin(), m_varNames.end(), inNames.begin(), (int)numVars);
269 return m_rnd.choose<std::string>(m_varNames.begin(), m_varNames.end());
288 const std::string op = std::string("") + m_rnd.choose<char>(operators.begin(), operators.end());
es3sSpecialFloatTests.cpp     [all...]
  /external/deqp/modules/gles2/functional/
es2fDebugMarkerTests.cpp 82 dst[ndx] = rnd.choose<char>(DE_ARRAY_BEGIN(s_chars), DE_ARRAY_END(s_chars));
es2fDepthStencilTests.cpp 763 params.stencil[ndx].function = rnd.choose<deUint32>(DE_ARRAY_BEGIN(compareFuncs), DE_ARRAY_END(compareFuncs));
766 params.stencil[ndx].stencilFailOp = rnd.choose<deUint32>(DE_ARRAY_BEGIN(stencilOps), DE_ARRAY_END(stencilOps));
767 params.stencil[ndx].depthFailOp = rnd.choose<deUint32>(DE_ARRAY_BEGIN(stencilOps), DE_ARRAY_END(stencilOps));
768 params.stencil[ndx].depthPassOp = rnd.choose<deUint32>(DE_ARRAY_BEGIN(stencilOps), DE_ARRAY_END(stencilOps));
775 params.depthFunc = rnd.choose<deUint32>(DE_ARRAY_BEGIN(compareFuncs), DE_ARRAY_END(compareFuncs));
776 params.depth = rnd.choose<float>(DE_ARRAY_BEGIN(depthValues), DE_ARRAY_END(depthValues));
    [all...]
  /external/deqp/framework/randomshaders/
rsgExpression.cpp 339 // Choose
713 // Choose random
714 VariableType::Type inType = state.getRandom().choose<VariableType::Type>(&inTypes[0], &inTypes[0] + numInTypes);
835 // \todo [2011-02-28 pyry] Give lower weight to entries without range? Choose subtype range?
836 const ValueEntry* entry = state.getRandom().choose<const ValueEntry*>(state.getVariableManager().getBegin<IsWritableEntry>(), state.getVariableManager().getEnd<IsWritableEntry>());
872 ConstValueRangeAccess selectedRange = state.getRandom().choose<const ValueEntry*>(first, end)->getValueRange();
    [all...]
rsgBinaryOps.cpp 128 VariableType::Type baseType = state.getRandom().choose<VariableType::Type>(baseTypes.begin(), baseTypes.end());
135 // Choose type, allocate storage for execution
408 // Choose type, allocate storage for execution
412 // Choose random input type
414 VariableType::Type inBaseType = state.getRandom().choose<VariableType::Type>(&inBaseTypes[0], &inBaseTypes[DE_LENGTH_OF_ARRAY(inBaseTypes)]);
703 // Choose type, allocate storage for execution
707 // Choose random input type
709 VariableType::Type inBaseType = state.getRandom().choose<VariableType::Type>(&inBaseTypes[0], &inBaseTypes[DE_LENGTH_OF_ARRAY(inBaseTypes)]);
  /external/deqp/modules/gles31/functional/
es31fAdvancedBlendTests.cpp 372 const float a = rnd->choose<float>(DE_ARRAY_BEGIN(alphaValues), DE_ARRAY_END(alphaValues));
373 const float r = a * rnd->choose<float>(DE_ARRAY_BEGIN(rgbValues), DE_ARRAY_END(rgbValues));
374 const float g = a * rnd->choose<float>(DE_ARRAY_BEGIN(rgbValues), DE_ARRAY_END(rgbValues));
375 const float b = a * rnd->choose<float>(DE_ARRAY_BEGIN(rgbValues), DE_ARRAY_END(rgbValues));
  /ndk/sources/cxx-stl/llvm-libc++/
Android.mk 157 # For armeabi*, choose thumb mode unless LOCAL_ARM_MODE := arm
172 # For armeabi*, choose thumb mode unless LOCAL_ARM_MODE := arm
  /external/jemalloc/src/
jemalloc.c 564 unsigned i, choose, first_null; local
566 choose = 0;
573 * Choose the first arena that has the lowest
577 arenas[choose]->nthreads)
578 choose = i;
593 if (arenas[choose]->nthreads == 0
599 ret = arenas[choose];
602 choose = first_null;
603 ret = arena_init_locked(choose);
609 arena_bind_locked(tsd, choose);
    [all...]
  /external/deqp/modules/gles3/functional/
es3fDepthStencilTests.cpp 763 params.stencil[ndx].function = rnd.choose<deUint32>(DE_ARRAY_BEGIN(compareFuncs), DE_ARRAY_END(compareFuncs));
766 params.stencil[ndx].stencilFailOp = rnd.choose<deUint32>(DE_ARRAY_BEGIN(stencilOps), DE_ARRAY_END(stencilOps));
767 params.stencil[ndx].depthFailOp = rnd.choose<deUint32>(DE_ARRAY_BEGIN(stencilOps), DE_ARRAY_END(stencilOps));
768 params.stencil[ndx].depthPassOp = rnd.choose<deUint32>(DE_ARRAY_BEGIN(stencilOps), DE_ARRAY_END(stencilOps));
775 params.depthFunc = rnd.choose<deUint32>(DE_ARRAY_BEGIN(compareFuncs), DE_ARRAY_END(compareFuncs));
776 params.depth = rnd.choose<float>(DE_ARRAY_BEGIN(depthValues), DE_ARRAY_END(depthValues));
    [all...]
es3fFragmentOutputTests.cpp     [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
tempfile.py 138 choose = self.rng.choice
142 letters = [choose(c) for dummy in "123456"]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
tempfile.py 138 choose = self.rng.choice
142 letters = [choose(c) for dummy in "123456"]
  /external/deqp/modules/gles2/stress/
es2sSpecialFloatTests.cpp     [all...]

Completed in 1992 milliseconds

1 2 3