MCPcopy Create free account

hub / github.com/Spatio-Temporal-Lab/elf / functions

Functions851 in github.com/Spatio-Temporal-Lab/elf

MethodtoString
()
src/main/java/gr/aueb/delorean/chimp/LinearFunctionBigDecimal.java:40
Methodupdate
(long true_value)
src/main/java/com/github/kutschkem/fpc/DfcmPredictor.java:27
Methodupdate
(long true_value)
src/main/java/com/github/kutschkem/fpc/FcmPredictor.java:26
Methodupdate
(long value)
src/main/java/fi/iki/yak/ts/compression/gorilla/predictors/DifferentialFCM.java:36
Methodupdate
(long value)
src/main/java/fi/iki/yak/ts/compression/gorilla/predictors/LastValuePredictor.java:15
MethodwriteBit
(boolean bit)
src/main/java/org/urbcomp/startdb/compress/elf/compressor32/ElfOnGorillaCompressor32OS.java:20
MethodwriteBit
(boolean bit)
src/main/java/org/urbcomp/startdb/compress/elf/compressor32/ElfCompressor32.java:19
MethodwriteBit
(boolean bit)
src/main/java/org/urbcomp/startdb/compress/elf/compressor32/ElfOnChimpCompressor32.java:19
MethodwriteBit
(boolean bit)
src/main/java/org/urbcomp/startdb/compress/elf/compressor32/ElfOnChimpNCompressor32.java:18
MethodwriteBit
(boolean bit)
src/main/java/org/urbcomp/startdb/compress/elf/compressor/ElfOnChimpCompressor.java:19
MethodwriteBit
(boolean bit)
src/main/java/org/urbcomp/startdb/compress/elf/compressor/ElfCompressor.java:19
MethodwriteBit
(boolean bit)
src/main/java/org/urbcomp/startdb/compress/elf/compressor/ElfOnGorillaCompressorOS.java:19
MethodwriteBit
(boolean bit)
src/main/java/org/urbcomp/startdb/compress/elf/compressor/ElfOnChimpNCompressor.java:18
MethodwriteBit
()
src/main/java/fi/iki/yak/ts/compression/gorilla/ByteBufferBitOutput.java:53
MethodwriteBit
Sets the next bit (or not) and moves the bit pointer.
src/main/java/fi/iki/yak/ts/compression/gorilla/LongArrayOutput.java:96
MethodwriteBits
Writes the given long to the stream using bits amount of meaningful bits. @param value Value to be written to the stream @param bits How many bits ar
src/main/java/fi/iki/yak/ts/compression/gorilla/ByteBufferBitOutput.java:72
MethodwriteBits
Writes the given long to the stream using bits amount of meaningful bits. This command does not check input values, so if they're larger than what can
src/main/java/fi/iki/yak/ts/compression/gorilla/LongArrayOutput.java:115
MethodwriteDelta
Writes a natural number in &delta; coding. The &delta; coding of a positive number of <var>k</var> bits is obtained writing <var>k</var>-1 in &gamma;
src/main/java/gr/aueb/delorean/chimp/OutputBitStream.java:895
MethodwriteDeltas
Writes a given amount of natural numbers in &delta; coding. @param a an array at least <code>count</code> natural numbers. @param count the number of
src/main/java/gr/aueb/delorean/chimp/OutputBitStream.java:928
MethodwriteFirst
(long value)
src/main/java/fi/iki/yak/ts/compression/gorilla/ValueCompressor.java:27
MethodwriteGammas
Writes a given amount of natural numbers in &gamma; coding. @param a an array at least <code>count</code> natural numbers. @param count the number of
src/main/java/gr/aueb/delorean/chimp/OutputBitStream.java:791
MethodwriteGolomb
Writes a natural number in Golomb coding. <p>Golomb coding with modulo <var>b</var> writes a natural number <var>x</var> as the quotient of the divis
src/main/java/gr/aueb/delorean/chimp/OutputBitStream.java:1045
MethodwriteLongDelta
Writes a long natural number in &delta; coding. @param x a long natural number. @return the number of bits written. @throws IllegalArgumentException
src/main/java/gr/aueb/delorean/chimp/OutputBitStream.java:911
MethodwriteLongGamma
Writes a long natural number in &gamma; coding. @param x a long natural number. @return the number of bits written. @throws IllegalArgumentException
src/main/java/gr/aueb/delorean/chimp/OutputBitStream.java:814
MethodwriteLongGolomb
Writes a long natural number in Golomb coding. @param x a long natural number. @param b the modulus for the coding. @return the number of bits writte
src/main/java/gr/aueb/delorean/chimp/OutputBitStream.java:1087
MethodwriteLongNibble
Writes a long natural number in variable-length nibble coding. @param x a long natural number. @return the number of bits written. @throws IllegalArg
src/main/java/gr/aueb/delorean/chimp/OutputBitStream.java:1267
MethodwriteLongShiftedGamma
Writes a long natural number in shifted &gamma; coding. @param x a natural number. @return the number of bits written. @throws IllegalArgumentExcepti
src/main/java/gr/aueb/delorean/chimp/OutputBitStream.java:851
MethodwriteLongSkewedGolomb
Writes a long natural number in skewed Golomb coding. <P>This method implements also the case in which <code>b</code> is 0: in this case, the argumen
src/main/java/gr/aueb/delorean/chimp/OutputBitStream.java:1159
MethodwriteLongZeta
Writes a long natural number in &zeta; coding. @param x a long natural number. @param k the shrinking factor. @return the number of bits written. @th
src/main/java/gr/aueb/delorean/chimp/OutputBitStream.java:1219
MethodwriteNibble
Writes a natural number in variable-length nibble coding. <P>Variable-length nibble coding records a natural number by padding its binary representat
src/main/java/gr/aueb/delorean/chimp/OutputBitStream.java:1246
MethodwriteShiftedGamma
Writes a natural number in shifted &gamma; coding. The shifted &gamma; coding of 0 is 1. The coding of a positive number of <var>k</var> bits is obta
src/main/java/gr/aueb/delorean/chimp/OutputBitStream.java:835
MethodwriteShiftedGammas
Writes a given amount of natural numbers in shifted &gamma; coding. @param a an array at least <code>count</code> natural numbers. @param count the n
src/main/java/gr/aueb/delorean/chimp/OutputBitStream.java:868
MethodwriteSkewedGolomb
Writes a natural number in skewed Golomb coding. <P>This method implements also the case in which <code>b</code> is 0: in this case, the argument <co
src/main/java/gr/aueb/delorean/chimp/OutputBitStream.java:1131
MethodwriteZeta
Writes a natural number in &zeta; coding. <P>&zeta; coding (with modulo <var>k</var>) records positive numbers in the intervals [1,2<sup><var>k</var>
src/main/java/gr/aueb/delorean/chimp/OutputBitStream.java:1196
MethodwrittenBits
Returns the number of bits written to this bit stream. @return the number of bits written so far.
src/main/java/gr/aueb/delorean/chimp/OutputBitStream.java:354
MethodxorCompress
(int vPrimeInt)
src/main/java/org/urbcomp/startdb/compress/elf/compressor32/ElfOnGorillaCompressor32OS.java:26
MethodxorCompress
(int vPrimeInt)
src/main/java/org/urbcomp/startdb/compress/elf/compressor32/ElfCompressor32.java:25
MethodxorCompress
(int vInt)
src/main/java/org/urbcomp/startdb/compress/elf/compressor32/ElfOnChimpCompressor32.java:25
MethodxorCompress
(int vPrimeInt)
src/main/java/org/urbcomp/startdb/compress/elf/compressor32/ElfOnChimpNCompressor32.java:24
MethodxorCompress
(long vPrimeLong)
src/main/java/org/urbcomp/startdb/compress/elf/compressor/ElfOnChimpCompressor.java:25
MethodxorCompress
(long vPrimeLong)
src/main/java/org/urbcomp/startdb/compress/elf/compressor/ElfCompressor.java:25
MethodxorCompress
(long vPrimeLong)
src/main/java/org/urbcomp/startdb/compress/elf/compressor/ElfOnGorillaCompressorOS.java:25
MethodxorCompress
(long vPrimeLong)
src/main/java/org/urbcomp/startdb/compress/elf/compressor/ElfOnChimpNCompressor.java:24
MethodxorDecompress
()
src/main/java/org/urbcomp/startdb/compress/elf/decompressor32/ElfOnChimpNDecompressor32.java:14
MethodxorDecompress
()
src/main/java/org/urbcomp/startdb/compress/elf/decompressor32/ElfDecompressor32.java:15
MethodxorDecompress
()
src/main/java/org/urbcomp/startdb/compress/elf/decompressor32/ElfOnChimpDecompressor32.java:15
MethodxorDecompress
()
src/main/java/org/urbcomp/startdb/compress/elf/decompressor32/ElfOnGorillaDecompressor32OS.java:16
MethodxorDecompress
()
src/main/java/org/urbcomp/startdb/compress/elf/decompressor/ElfOnChimpDecompressor.java:15
MethodxorDecompress
()
src/main/java/org/urbcomp/startdb/compress/elf/decompressor/ElfDecompressor.java:15
MethodxorDecompress
()
src/main/java/org/urbcomp/startdb/compress/elf/decompressor/ElfOnGorillaDecompressorOS.java:16
MethodxorDecompress
()
src/main/java/org/urbcomp/startdb/compress/elf/decompressor/ElfOnChimpNDecompressor.java:15
← previous801–851 of 851, ranked by callers