Searched refs:hashcode (Results 1 – 4 of 4) sorted by relevance
141 int32_t hashcode, in _uhash_setElement() argument172 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() argument339 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 …]
99 int32_t hashcode; member
305 protected int hashcode; field in SemanticContext.CommutativePredicate322 hashcode = calculateHashCode(); in CommutativePredicate()335 hashcode = calculateHashCode(); in CommutativePredicate()413 return hashcode; in hashCode()485 int hashcode = 0; in calculateHashCode() local487 hashcode = hashcode ^ context.hashCode(); in calculateHashCode()490 return hashcode; in calculateHashCode()533 int hashcode = 0; in calculateHashCode() local535 hashcode = ~hashcode ^ context.hashCode(); in calculateHashCode()538 return hashcode; in calculateHashCode()
51 public static int hashCode(final int seed, final int hashcode) { in hashCode() argument52 return seed * HASH_OFFSET + hashcode; in hashCode()