Home
last modified time | relevance | path

Searched refs:mStructIdRefCounts (Results 1 – 1 of 1) sorted by relevance

/external/angle/src/compiler/translator/tree_ops/
DRemoveUnreferencedVariables.cpp29 RefCountMap &getStructIdRefCounts() { return mStructIdRefCounts; } in getStructIdRefCounts()
46 RefCountMap mStructIdRefCounts; member in sh::__anon7515e2060111::CollectVariableRefCountsTraverser
74 auto structIter = mStructIdRefCounts.find(structure->uniqueId().get()); in incrementStructTypeRefCount()
75 if (structIter == mStructIdRefCounts.end()) in incrementStructTypeRefCount()
77 mStructIdRefCounts[structure->uniqueId().get()] = 1u; in incrementStructTypeRefCount()
143 CollectVariableRefCountsTraverser::RefCountMap *mStructIdRefCounts; member in sh::__anon7515e2060111::RemoveUnreferencedVariablesTraverser
153 mStructIdRefCounts(structIdRefCounts), in RemoveUnreferencedVariablesTraverser()
162 ASSERT(mStructIdRefCounts->find(structure->uniqueId().get()) != mStructIdRefCounts->end()); in decrementStructTypeRefCount()
163 unsigned int structRefCount = --(*mStructIdRefCounts)[structure->uniqueId().get()]; in decrementStructTypeRefCount()
191 if ((*mStructIdRefCounts)[structId] > structRefCountInThisDeclarator) in removeVariableDeclaration()