HomeSort by relevance Sort by last modified time
    Searched refs:hashValue (Results 1 - 12 of 12) sorted by null

  /dalvik/vm/hprof/
HprofString.c 59 u4 hashValue;
63 hashValue = computeUtf8Hash(str);
64 val = dvmHashTableLookup(gStringHashTable, hashValue, (void *)str,
70 val = dvmHashTableLookup(gStringHashTable, hashValue, (void *)newStr,
HprofStack.c 119 u4 hashValue;
133 hashValue = computeStackTraceHash(stackTrace);
134 val = dvmHashTableLookup(gStackTraceHashTable, hashValue, (void *)stackTrace,
141 val = dvmHashTableLookup(gStackTraceHashTable, hashValue,
HprofStackFrame.c 144 u4 hashValue;
157 hashValue = computeStackFrameHash(stackFrameEntry);
158 val = dvmHashTableLookup(gStackFrameHashTable, hashValue,
164 val = dvmHashTableLookup(gStackFrameHashTable, hashValue,
  /bootable/recovery/minzip/
Hash.c 152 int hashValue = pHashTable->pEntries[i].hashValue;
156 newIdx = hashValue & (newSize-1);
160 pNewEntries[newIdx].hashValue = hashValue;
195 pEntry->hashValue == itemHash &&
215 pEntry->hashValue = itemHash;
331 pEntry->hashValue == itemHash &&
Hash.h 50 unsigned int hashValue;
  /external/webkit/JavaScriptCore/
create_hash_table 55 sub hashValue($);
98 push(@hashes, hashValue($key));
137 my $h = hashValue($key) % $pefectHashSize;
162 my $h = hashValue($key) % $compactHashSize;
183 sub hashValue($) {
  /dalvik/vm/
Hash.c 148 int hashValue = pHashTable->pEntries[i].hashValue;
152 newIdx = hashValue & (newSize-1);
156 pNewEntries[newIdx].hashValue = hashValue;
191 pEntry->hashValue == itemHash &&
211 pEntry->hashValue = itemHash;
359 pEntry->hashValue == itemHash &&
Hash.h 62 u4 hashValue;
Init.c 633 int hashValue;
640 hashValue = dvmComputeUtf8Hash(start);
642 dvmHashTableLookup(gDvmJit.methodTable, hashValue,
    [all...]
  /external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/
X509CRLEntryObject.java 43 private int hashValue;
196 hashValue = super.hashCode();
200 return hashValue;
X509CertificateObject.java 64 private int hashValue;
574 hashValue = calculateHashCode();
578 return hashValue;
  /dalvik/vm/compiler/
Frontend.c 274 int hashValue = dvmComputeUtf8Hash(method->name);
281 realMethodEntry = dvmHashTableLookup(gDvmJit.methodStatsTable, hashValue,
292 dvmHashTableLookup(gDvmJit.methodStatsTable, hashValue,
387 int hashValue = dvmComputeUtf8Hash(method->name);
389 dvmHashTableLookup(gDvmJit.methodTable, hashValue,
471 int hashValue = dvmComputeUtf8Hash(fullSignature);
480 dvmHashTableLookup(gDvmJit.methodTable, hashValue,
487 int hashValue = dvmComputeUtf8Hash(desc->method->clazz->descriptor);
489 dvmHashTableLookup(gDvmJit.methodTable, hashValue,
495 int hashValue = dvmComputeUtf8Hash(desc->method->name)
    [all...]

Completed in 186 milliseconds