Package | Description |
---|---|
com.googlecode.javaewah32 |
Modifier and Type | Class and Description |
---|---|
(package private) class |
IntArray
Int array wrapper.
|
(package private) class |
IntBufferWrapper
java.nio.IntBuffer wrapper.
|
Modifier and Type | Field and Description |
---|---|
(package private) Buffer32 |
EWAHCompressedBitmap32.buffer
The buffer
|
private Buffer32 |
IteratingBufferedRunningLengthWord32.buffer |
private Buffer32 |
ChunkIteratorImpl32.buffer |
private Buffer32 |
ClearIntIterator32.buffer |
private Buffer32 |
ReverseIntIterator32.buffer |
private Buffer32 |
IntIteratorImpl32.buffer |
(package private) Buffer32 |
RunningLengthWord32.buffer
The array of words.
|
Modifier and Type | Method and Description |
---|---|
Buffer32 |
ReverseEWAHIterator32.buffer()
Access to the buffer
|
Buffer32 |
EWAHIterator32.buffer()
Access to the buffer
|
Buffer32 |
Buffer32.clone()
Creates and returns a copy of the buffer
|
Modifier and Type | Method and Description |
---|---|
void |
EWAHCompressedBitmap32.addStreamOfLiteralWords(Buffer32 buffer,
int start,
int number)
if you have several literal words to copy over, this might be faster.
|
void |
BitmapStorage32.addStreamOfLiteralWords(Buffer32 buffer,
int start,
int number)
if you have several literal words to copy over, this might be faster.
|
void |
NonEmptyVirtualStorage32.addStreamOfLiteralWords(Buffer32 buffer,
int start,
int number)
throws a NonEmptyException exception when number is greater than 0
|
void |
BitCounter32.addStreamOfLiteralWords(Buffer32 buffer,
int start,
int number)
virtually add several literal words.
|
void |
EWAHCompressedBitmap32.addStreamOfNegatedLiteralWords(Buffer32 buffer,
int start,
int number)
Same as addStreamOfLiteralWords, but the words are negated.
|
void |
BitmapStorage32.addStreamOfNegatedLiteralWords(Buffer32 buffer,
int start,
int number)
Like "addStreamOfLiteralWords" but negates the words being added.
|
void |
NonEmptyVirtualStorage32.addStreamOfNegatedLiteralWords(Buffer32 buffer,
int start,
int number)
throws a NonEmptyException exception when number is greater than 0
|
void |
BitCounter32.addStreamOfNegatedLiteralWords(Buffer32 buffer,
int start,
int number)
virtually add several negated literal words.
|
(package private) static int |
RunningLengthWord32.getNumberOfLiteralWords(Buffer32 buffer,
int position) |
(package private) static boolean |
RunningLengthWord32.getRunningBit(Buffer32 buffer,
int position) |
(package private) static int |
RunningLengthWord32.getRunningLength(Buffer32 buffer,
int position) |
void |
IntBufferWrapper.negative_push_back(Buffer32 buffer,
int start,
int number) |
void |
IntArray.negative_push_back(Buffer32 buffer,
int start,
int number) |
void |
Buffer32.negative_push_back(Buffer32 buffer,
int start,
int number)
Same as push_back, but the words are negated.
|
void |
IntBufferWrapper.push_back(Buffer32 buffer,
int start,
int number) |
void |
IntArray.push_back(Buffer32 buffer,
int start,
int number) |
void |
Buffer32.push_back(Buffer32 buffer,
int start,
int number)
Appends the specified buffer words to the end of the buffer.
|
(package private) static void |
RunningLengthWord32.setNumberOfLiteralWords(Buffer32 buffer,
int position,
int number) |
(package private) static void |
RunningLengthWord32.setRunningBit(Buffer32 buffer,
int position,
boolean b) |
(package private) static void |
RunningLengthWord32.setRunningLength(Buffer32 buffer,
int position,
int number) |
void |
IntBufferWrapper.swap(Buffer32 other) |
void |
IntArray.swap(Buffer32 other) |
void |
Buffer32.swap(Buffer32 other)
Swap the content of the buffer with another.
|
Constructor and Description |
---|
EWAHCompressedBitmap32(Buffer32 buffer) |
EWAHIterator32(Buffer32 buffer)
Instantiates a new eWAH iterator.
|
ReverseEWAHIterator32(Buffer32 buffer)
Instantiates a new reverse EWAH iterator.
|
RunningLengthWord32(Buffer32 buffer,
int p)
Instantiates a new running length word.
|