Lines Matching defs:src
3122 // Extract single values or pairs of consecutive values from src and store them in dst1 and dst2.
3123 // If ds2 is not null, src is processed as containing pairs of values.
3125 void unpackValues (const std::vector<uint64_t>& src, std::vector<uint64_t>* dst1, std::vector<uint64_t>* dst2)
3129 std::copy(begin(src), end(src), begin(*dst1));
3138 DE_ASSERT(src.size() % sz2 == sz0);
3140 for (size_t i = 0; i < src.size(); i += sz2)
3143 dst1->at(j) = src.at(i);
3144 dst2->at(j) = src.at(i + sz1);
4575 const auto src = source.str();
4578 programCollection.glslSources.add("vert-spv10") << glu::VertexSource(src);
4579 programCollection.glslSources.add("vert-spv15") << glu::VertexSource(src) << spv15Opts;