lightning-core/src/main/java/org/apache/directmemory/lightning/internal/util/FastIntMap.java [47:66]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        if ( initialCapacity > 1 << 30 )
        {
            throw new IllegalArgumentException( "initialCapacity is too large." );
        }
        if ( initialCapacity < 0 )
        {
            throw new IllegalArgumentException( "initialCapacity must be greater than zero." );
        }
        if ( loadFactor <= 0 )
        {
            throw new IllegalArgumentException( "initialCapacity must be greater than zero." );
        }
        capacity = 1;
        while ( capacity < initialCapacity )
        {
            capacity <<= 1;
        }
        this.threshold = (int) ( capacity * loadFactor );
        this.table = new Entry[capacity];
        this.mask = capacity - 1;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



lightning-core/src/main/java/org/apache/directmemory/lightning/internal/util/FastLongMap.java [51:70]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        if ( initialCapacity > 1 << 30 )
        {
            throw new IllegalArgumentException( "initialCapacity is too large." );
        }
        if ( initialCapacity < 0 )
        {
            throw new IllegalArgumentException( "initialCapacity must be greater than zero." );
        }
        if ( loadFactor <= 0 )
        {
            throw new IllegalArgumentException( "initialCapacity must be greater than zero." );
        }
        capacity = 1;
        while ( capacity < initialCapacity )
        {
            capacity <<= 1;
        }
        this.threshold = (int) ( capacity * loadFactor );
        this.table = new Entry[capacity];
        this.mask = capacity - 1;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



