Searched defs:initval (Results 1 - 1 of 1) sorted by relevance

/lucene-3.6.0/solr/solrj/src/java/org/apache/solr/common/util/
H A DHash.java33 * <p>The hash value of a character sequence (a string) is defined to be the hash of its unicode code points, according to lookup3 hashword, with the initval biased by -(length*4).
38 * lookup3ycs(k,offset,length,initval) == lookup3(k,offset,length,initval-(length*4))
42 * lookup3ycs(k,offset,length,initval+(length*4)) == lookup3(k,offset,length,initval)
58 * @param initval initial value to fold into the hash
62 public static int lookup3(int[] k, int offset, int length, int initval) { argument
64 a = b = c = 0xdeadbeef + (length<<2) + initval;
111 * Identical to lookup3, except initval is biased by -(length&lt;&lt;2).
113 * {@code lookup3ycs(k,offset,length,initval)
117 lookup3ycs(int[] k, int offset, int length, int initval) argument
130 lookup3ycs(CharSequence s, int start, int end, int initval) argument
189 lookup3ycs64(CharSequence s, int start, int end, long initval) argument
[all...]

Completed in 1163 milliseconds