Method Decode
Decode(Int64[], Int32, Int64[], Int32, Int32)
Read iterations * BlockCount
blocks from blocks
,
decode them and write iterations * ValueCount
values into
values
.
Declaration
void Decode(long[] blocks, int blocksOffset, long[] values, int valuesOffset, int iterations)
Parameters
Type | Name | Description |
---|---|---|
System.Int64[] | blocks | The long blocks that hold packed integer values. |
System.Int32 | blocksOffset | The offset where to start reading blocks. |
System.Int64[] | values | The values buffer. |
System.Int32 | valuesOffset | The offset where to start writing values. |
System.Int32 | iterations | Controls how much data to decode. |
Decode(Byte[], Int32, Int64[], Int32, Int32)
Read 8 * iterations * BlockCount
blocks from blocks
,
decode them and write iterations * ValueCount
values into
values
.
Declaration
void Decode(byte[] blocks, int blocksOffset, long[] values, int valuesOffset, int iterations)
Parameters
Type | Name | Description |
---|---|---|
System.Byte[] | blocks | The long blocks that hold packed integer values. |
System.Int32 | blocksOffset | The offset where to start reading blocks. |
System.Int64[] | values | The values buffer. |
System.Int32 | valuesOffset | The offset where to start writing values. |
System.Int32 | iterations | Controls how much data to decode. |
Decode(Int64[], Int32, Int32[], Int32, Int32)
Read iterations * BlockCount
blocks from blocks
,
decode them and write iterations * ValueCount
values into
values
.
Declaration
void Decode(long[] blocks, int blocksOffset, int[] values, int valuesOffset, int iterations)
Parameters
Type | Name | Description |
---|---|---|
System.Int64[] | blocks | The long blocks that hold packed integer values. |
System.Int32 | blocksOffset | The offset where to start reading blocks. |
System.Int32[] | values | The values buffer. |
System.Int32 | valuesOffset | The offset where to start writing values. |
System.Int32 | iterations | Controls how much data to decode. |
Decode(Byte[], Int32, Int32[], Int32, Int32)
Read 8 * iterations * BlockCount
blocks from blocks
,
decode them and write iterations * ValueCount
values into
values
.
Declaration
void Decode(byte[] blocks, int blocksOffset, int[] values, int valuesOffset, int iterations)
Parameters
Type | Name | Description |
---|---|---|
System.Byte[] | blocks | The long blocks that hold packed integer values. |
System.Int32 | blocksOffset | The offset where to start reading blocks. |
System.Int32[] | values | The values buffer. |
System.Int32 | valuesOffset | The offset where to start writing values. |
System.Int32 | iterations | Controls how much data to decode. |