Lines Matching refs:std

58 static std::string sampleMaskToString (const std::vector<deUint32>& bitfield, int numBits)
60 std::string result(numBits, '0');
95 static std::vector<deUint32> genAllSetToNthBitSampleMask (int nthBit)
100 std::vector<deUint32> mask (numWords);
112 static std::vector<deUint32> genSetNthBitSampleMask (int nthBit)
117 std::vector<deUint32> mask (numWords);
126 std::string specializeShader (Context& context, const char* code)
130 std::map<std::string, std::string> specializationMap;
162 std::vector<Triangle> m_testTriangles;
170 std::vector<tcu::Vec2> m_samplePositions;
678 std::vector<tcu::Vec4> gridData(m_gridsize*m_gridsize*6);
738 const tcu::ScopedLogSection section(m_testCtx.getLog(), "Iteration", (m_currentSample == -1) ? ("Verifying with zero mask") : (std::string() + "Verifying sample " + de::toString(m_currentSample + 1) + "/" + de::toString(m_samples)));
798 std::map<std::string, std::string> args;
864 const std::vector<deUint32> bitmask = genSetNthBitSampleMask(sample);
865 const std::vector<deUint32> effectiveMask = genAllSetToNthBitSampleMask(m_samples);
866 std::vector<deUint32> totalBitmask (effectiveMask.size());
891 const std::vector<deUint32> bitmask = sample < 0 ? std::vector<deUint32>(m_effectiveSampleMaskWordCount, 0) : genSetNthBitSampleMask(sample);
1335 std::map<std::string, std::string> fragmentArguments;
1387 std::map<std::string, std::string> fragmentArguments;
1635 void getFormatSamples (glw::GLenum target, std::vector<int>& samples);
1665 std::vector<int> textureSamples;
1666 std::vector<int> rboSamples;
1857 void NegativeFramebufferCase::getFormatSamples (glw::GLenum target, std::vector<int>& samples)
1948 const tcu::ScopedLogSection scope(m_testCtx.getLog(), "Iteration", std::string() + "Testing parameter with " + types[m_iteration].name + " texture");
2157 tcu::TestCaseGroup* const sampleGroup = new tcu::TestCaseGroup(m_testCtx, (std::string("samples_") + de::toString(sampleCounts[sampleNdx])).c_str(), "Test with N samples");
2174 sampleGroup->addChild(new MultisampleTextureUsageCase(m_context, (std::string("use_") + textureTypes[typeNdx].name).c_str(), textureTypes[typeNdx].name, sampleCounts[sampleNdx], textureTypes[typeNdx].type));