Home
last modified time | relevance | path

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

/external/icu4c/common/
Duhash.c141 int32_t hashcode, in _uhash_setElement() argument
172 e->hashcode = hashcode; in _uhash_setElement()
182 U_ASSERT(!IS_EMPTY_OR_DELETED(e->hashcode)); in _uhash_internalRemoveElement()
236 p->hashcode = HASH_EMPTY; in _uhash_allocate()
331 int32_t hashcode) { in _uhash_find() argument
339 hashcode &= 0x7FFFFFFF; /* must be positive */ in _uhash_find()
340 startIndex = theIndex = (hashcode ^ 0x4000000) % hash->length; in _uhash_find()
343 tableHash = elements[theIndex].hashcode; in _uhash_find()
344 if (tableHash == hashcode) { /* quick check */ in _uhash_find()
363 jump = (hashcode % (hash->length - 1)) + 1; in _uhash_find()
[all …]
Duhash.h99 int32_t hashcode; member
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
DSemanticContext.java305 protected int hashcode; field in SemanticContext.CommutativePredicate
322 hashcode = calculateHashCode(); in CommutativePredicate()
335 hashcode = calculateHashCode(); in CommutativePredicate()
413 return hashcode; in hashCode()
485 int hashcode = 0; in calculateHashCode() local
487 hashcode = hashcode ^ context.hashCode(); in calculateHashCode()
490 return hashcode; in calculateHashCode()
533 int hashcode = 0; in calculateHashCode() local
535 hashcode = ~hashcode ^ context.hashCode(); in calculateHashCode()
538 return hashcode; in calculateHashCode()
/external/apache-http/src/org/apache/http/util/
DLangUtils.java51 public static int hashCode(final int seed, final int hashcode) { in hashCode() argument
52 return seed * HASH_OFFSET + hashcode; in hashCode()