Searched refs:hashValue (Results 1 – 7 of 7) sorted by relevance
/dalvik/vm/hprof/ |
D | HprofString.c | 59 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()
|
D | HprofStackFrame.c | 144 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()
|
D | HprofStack.c | 119 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/ |
D | Hash.c | 148 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()
|
D | Hash.h | 62 u4 hashValue; member
|
D | Init.c | 630 int hashValue; in processXjitmethod() local 637 hashValue = dvmComputeUtf8Hash(start); in processXjitmethod() 639 dvmHashTableLookup(gDvmJit.methodTable, hashValue, in processXjitmethod()
|
/dalvik/vm/compiler/ |
D | Frontend.c | 191 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()
|