All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.openhft.collect.impl.hash.LHash Maven / Gradle / Ivy

The newest version!
/*
 * Copyright 2014 the original author or authors.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package net.openhft.collect.impl.hash;

public interface LHash extends Hash {

    /** = round(2 ^ 32 * (sqrt(5) - 1)), Java form of unsigned 2654435769 */
    static final int INT_PHI_MAGIC = -1640531527;
    /** ~= round(2 ^ 64 * (sqrt(5) - 1)), Java form of 11400714819323198485 */
    static final long LONG_PHI_MAGIC = -7046029254386353131L;

    static final int BYTE_MIX_SHIFT = 6;
    static final int CHAR_MIX_SHIFT = 10, SHORT_MIX_SHIFT = CHAR_MIX_SHIFT;
    static final int INT_MIX_SHIFT = 16, FLOAT_MIX_SHIFT = INT_MIX_SHIFT;


    static class SeparateKVByteKeyMixing {
        static int mix(byte key) {
            int h = key * INT_PHI_MAGIC;
            return h ^ (h >> BYTE_MIX_SHIFT);
        }
    }
    static class SeparateKVCharKeyMixing {
        static int mix(char key) {
            int h = key * INT_PHI_MAGIC;
            return h ^ (h >> CHAR_MIX_SHIFT);
        }
    }
    static class SeparateKVShortKeyMixing {
        static int mix(short key) {
            int h = key * INT_PHI_MAGIC;
            return h ^ (h >> SHORT_MIX_SHIFT);
        }
    }
    static class SeparateKVIntKeyMixing {
        static int mix(int key) {
            int h = key * INT_PHI_MAGIC;
            return h ^ (h >> INT_MIX_SHIFT);
        }
    }
    static class SeparateKVFloatKeyMixing {
        static int mix(int key) {
            int h = key * INT_PHI_MAGIC;
            return h ^ (h >> FLOAT_MIX_SHIFT);
        }
    }

    static class SeparateKVDoubleKeyMixing {
        static int mix(long key) {
            long h = key * LONG_PHI_MAGIC;
            h ^= h >> 32;
            return (int) (h ^ (h >> INT_MIX_SHIFT));
        }
    }
    static class SeparateKVLongKeyMixing {
        static int mix(long key) {
            long h = key * LONG_PHI_MAGIC;
            h ^= h >> 32;
            return (int) (h ^ (h >> INT_MIX_SHIFT));
        }
    }

    static class SeparateKVObjKeyMixing {
        static int mix(int hash) {
            return hash ^ (hash >> INT_MIX_SHIFT);
        }
    }


    static class ParallelKVByteKeyMixing {
        static int mix(byte key) {
            int h = key * INT_PHI_MAGIC;
            return h ^ (h >> BYTE_MIX_SHIFT);
        }
    }
    static class ParallelKVCharKeyMixing {
        static int mix(char key) {
            int h = key * INT_PHI_MAGIC;
            return h ^ (h >> CHAR_MIX_SHIFT);
        }
    }
    static class ParallelKVShortKeyMixing {
        static int mix(short key) {
            int h = key * INT_PHI_MAGIC;
            return h ^ (h >> SHORT_MIX_SHIFT);
        }
    }
    static class ParallelKVIntKeyMixing {
        static int mix(int key) {
            int h = key * INT_PHI_MAGIC;
            return h ^ (h >> INT_MIX_SHIFT);
        }
    }
    static class ParallelKVFloatKeyMixing {
        static int mix(int key) {
            int h = key * INT_PHI_MAGIC;
            return h ^ (h >> FLOAT_MIX_SHIFT);
        }
    }

    static class ParallelKVDoubleKeyMixing {
        static int mix(long key) {
            long h = key * LONG_PHI_MAGIC;
            h ^= h >> 32;
            return (int) (h ^ (h >> INT_MIX_SHIFT));
        }
    }
    static class ParallelKVLongKeyMixing {
        static int mix(long key) {
            long h = key * LONG_PHI_MAGIC;
            h ^= h >> 32;
            return (int) (h ^ (h >> INT_MIX_SHIFT));
        }
    }

    static class ParallelKVObjKeyMixing {
        static int mix(int hash) {
            return hash ^ (hash >> INT_MIX_SHIFT);
        }
    }

}





© 2015 - 2025 Weber Informatics LLC | Privacy Policy