Home
last modified time | relevance | path

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

/dalvik/vm/hprof/
DHprofString.c59 u4 hashValue; in hprofLookupStringId() local
63 hashValue = computeUtf8Hash(str); in hprofLookupStringId()
64 val = dvmHashTableLookup(gStringHashTable, hashValue, (void *)str, in hprofLookupStringId()
70 val = dvmHashTableLookup(gStringHashTable, hashValue, (void *)newStr, in hprofLookupStringId()
DHprofStackFrame.c144 u4 hashValue; in hprofLookupStackFrameId() local
157 hashValue = computeStackFrameHash(stackFrameEntry); in hprofLookupStackFrameId()
158 val = dvmHashTableLookup(gStackFrameHashTable, hashValue, in hprofLookupStackFrameId()
164 val = dvmHashTableLookup(gStackFrameHashTable, hashValue, in hprofLookupStackFrameId()
DHprofStack.c119 u4 hashValue; in hprofLookupStackSerialNumber() local
133 hashValue = computeStackTraceHash(stackTrace); in hprofLookupStackSerialNumber()
134 val = dvmHashTableLookup(gStackTraceHashTable, hashValue, (void *)stackTrace, in hprofLookupStackSerialNumber()
141 val = dvmHashTableLookup(gStackTraceHashTable, hashValue, in hprofLookupStackSerialNumber()
/dalvik/vm/
DHash.c148 int hashValue = pHashTable->pEntries[i].hashValue; in resizeHash() local
152 newIdx = hashValue & (newSize-1); in resizeHash()
156 pNewEntries[newIdx].hashValue = hashValue; in resizeHash()
191 pEntry->hashValue == itemHash && in dvmHashTableLookup()
211 pEntry->hashValue = itemHash; in dvmHashTableLookup()
359 pEntry->hashValue == itemHash && in countProbes()
DHash.h62 u4 hashValue; member
DInit.c630 int hashValue; in processXjitmethod() local
637 hashValue = dvmComputeUtf8Hash(start); in processXjitmethod()
639 dvmHashTableLookup(gDvmJit.methodTable, hashValue, in processXjitmethod()
/dalvik/vm/compiler/
DFrontend.c191 int hashValue = dvmComputeUtf8Hash(method->name); in analyzeMethodBody() local
198 realMethodEntry = dvmHashTableLookup(gDvmJit.methodStatsTable, hashValue, in analyzeMethodBody()
215 dvmHashTableLookup(gDvmJit.methodStatsTable, hashValue, in analyzeMethodBody()
281 int hashValue = dvmComputeUtf8Hash(fullSignature); in dvmCompileTrace() local
290 dvmHashTableLookup(gDvmJit.methodTable, hashValue, in dvmCompileTrace()
297 int hashValue = dvmComputeUtf8Hash(desc->method->clazz->descriptor); in dvmCompileTrace() local
299 dvmHashTableLookup(gDvmJit.methodTable, hashValue, in dvmCompileTrace()
305 int hashValue = dvmComputeUtf8Hash(desc->method->name); in dvmCompileTrace() local
307 dvmHashTableLookup(gDvmJit.methodTable, hashValue, in dvmCompileTrace()