Home | History | Annotate | Download | only in hash

Lines Matching refs:functions

35  * <p>A comparison of the various hash functions can be found
49 * <p><b>Warning:</b> a new random seed for these functions is chosen each time the {@code
417 ConcatenatedHashFunction(HashFunction... functions) {
418 super(functions);
420 for (HashFunction function : functions) {
446 if (bits != other.bits || functions.length != other.functions.length) {
449 for (int i = 0; i < functions.length; i++) {
450 if (!functions[i].equals(other.functions[i])) {
462 for (HashFunction function : functions) {