Lines Matching refs:Hash
35 uint64_t Hash = FunctionSamples::getCallSiteHash(CalleeName, CallSite); in getChildContext() local
36 auto It = AllChildContext.find(Hash); in getChildContext()
69 uint64_t Hash = in moveContextSamples() local
73 assert(!AllChildContext.count(Hash) && "Node to remove must exist"); in moveContextSamples()
74 AllChildContext[Hash] = NodeToMove; in moveContextSamples()
75 ContextTrieNode &NewNode = AllChildContext[Hash]; in moveContextSamples()
107 uint64_t Hash = FunctionSamples::getCallSiteHash(CalleeName, CallSite); in removeChildContext() local
109 AllChildContext.erase(Hash); in removeChildContext()
181 uint64_t Hash = FunctionSamples::getCallSiteHash(CalleeName, CallSite); in getOrCreateChildContext() local
182 auto It = AllChildContext.find(Hash); in getOrCreateChildContext()
192 AllChildContext[Hash] = ContextTrieNode(this, CalleeName, nullptr, CallSite); in getOrCreateChildContext()
193 return &AllChildContext[Hash]; in getOrCreateChildContext()