Lines Matching refs:numScalars
246 int numScalars = type.getScalarSize(); in allocate() local
257 m_numAllocatedScalars += numScalars; in allocate()
267 int numScalars = variable->getType().getScalarSize(); in setStorage() local
272 m_numAllocatedShaderInScalars -= numScalars; in setStorage()
276 m_numAllocatedUniformScalars -= numScalars; in setStorage()
281 m_numAllocatedShaderInScalars += numScalars; in setStorage()
285 m_numAllocatedUniformScalars += numScalars; in setStorage()
374 void VariableManager::reserve (ReservedScalars& store, int numScalars) in reserve() argument
376 DE_ASSERT(store.numScalars == 0); in reserve()
377 store.numScalars = numScalars; in reserve()
378 m_numAllocatedScalars += numScalars; in reserve()
383 m_numAllocatedScalars -= store.numScalars; in release()
384 store.numScalars = 0; in release()