Lines Matching defs:symbols
220 static vector<int> getScalarSizes (const vector<Symbol>& symbols)
222 vector<int> sizes(symbols.size());
223 for (int ndx = 0; ndx < (int)symbols.size(); ++ndx)
224 sizes[ndx] = symbols[ndx].varType.getScalarSize();
228 static int computeTotalScalarSize (const vector<Symbol>& symbols)
231 for (vector<Symbol>::const_iterator sym = symbols.begin(); sym != symbols.end(); ++sym)
236 static vector<void*> getInputOutputPointers (const vector<Symbol>& symbols, vector<deUint32>& data, const int numValues)
238 vector<void*> pointers (symbols.size());
241 for (int varNdx = 0; varNdx < (int)symbols.size(); ++varNdx)
243 const Symbol& var = symbols[varNdx];