sun.java2d.marlin.ArrayCacheConst.BucketStats Java Examples

The following examples show how to use sun.java2d.marlin.ArrayCacheConst.BucketStats. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: ByteArrayCache.java    From Bytecoder with Apache License 2.0 5 votes vote down vote up
Bucket(final boolean clean, final int arraySize,
       final int capacity, final BucketStats stats)
{
    this.arraySize = arraySize;
    this.clean = clean;
    this.stats = stats;
    this.arrays = new byte[capacity][];
}
 
Example #2
Source File: IntArrayCache.java    From Bytecoder with Apache License 2.0 5 votes vote down vote up
Bucket(final boolean clean, final int arraySize,
       final int capacity, final BucketStats stats)
{
    this.arraySize = arraySize;
    this.clean = clean;
    this.stats = stats;
    this.arrays = new int[capacity][];
}
 
Example #3
Source File: FloatArrayCache.java    From Bytecoder with Apache License 2.0 5 votes vote down vote up
Bucket(final boolean clean, final int arraySize,
       final int capacity, final BucketStats stats)
{
    this.arraySize = arraySize;
    this.clean = clean;
    this.stats = stats;
    this.arrays = new float[capacity][];
}
 
Example #4
Source File: DoubleArrayCache.java    From Bytecoder with Apache License 2.0 5 votes vote down vote up
Bucket(final boolean clean, final int arraySize,
       final int capacity, final BucketStats stats)
{
    this.arraySize = arraySize;
    this.clean = clean;
    this.stats = stats;
    this.arrays = new double[capacity][];
}
 
Example #5
Source File: ByteArrayCache.java    From openjdk-jdk9 with GNU General Public License v2.0 5 votes vote down vote up
Bucket(final boolean clean, final int arraySize,
       final int capacity, final BucketStats stats)
{
    this.arraySize = arraySize;
    this.clean = clean;
    this.stats = stats;
    this.arrays = new byte[capacity][];
}
 
Example #6
Source File: IntArrayCache.java    From openjdk-jdk9 with GNU General Public License v2.0 5 votes vote down vote up
Bucket(final boolean clean, final int arraySize,
       final int capacity, final BucketStats stats)
{
    this.arraySize = arraySize;
    this.clean = clean;
    this.stats = stats;
    this.arrays = new int[capacity][];
}
 
Example #7
Source File: FloatArrayCache.java    From openjdk-jdk9 with GNU General Public License v2.0 5 votes vote down vote up
Bucket(final boolean clean, final int arraySize,
       final int capacity, final BucketStats stats)
{
    this.arraySize = arraySize;
    this.clean = clean;
    this.stats = stats;
    this.arrays = new float[capacity][];
}
 
Example #8
Source File: ByteArrayCache.java    From jdk8u_jdk with GNU General Public License v2.0 5 votes vote down vote up
Bucket(final boolean clean, final int arraySize,
       final int capacity, final BucketStats stats)
{
    this.arraySize = arraySize;
    this.clean = clean;
    this.stats = stats;
    this.arrays = new byte[capacity][];
}
 
Example #9
Source File: IntArrayCache.java    From jdk8u_jdk with GNU General Public License v2.0 5 votes vote down vote up
Bucket(final boolean clean, final int arraySize,
       final int capacity, final BucketStats stats)
{
    this.arraySize = arraySize;
    this.clean = clean;
    this.stats = stats;
    this.arrays = new int[capacity][];
}
 
Example #10
Source File: FloatArrayCache.java    From jdk8u_jdk with GNU General Public License v2.0 5 votes vote down vote up
Bucket(final boolean clean, final int arraySize,
       final int capacity, final BucketStats stats)
{
    this.arraySize = arraySize;
    this.clean = clean;
    this.stats = stats;
    this.arrays = new float[capacity][];
}
 
Example #11
Source File: DoubleArrayCache.java    From jdk8u_jdk with GNU General Public License v2.0 5 votes vote down vote up
Bucket(final boolean clean, final int arraySize,
       final int capacity, final BucketStats stats)
{
    this.arraySize = arraySize;
    this.clean = clean;
    this.stats = stats;
    this.arrays = new double[capacity][];
}