Home
last modified time | relevance | path

Searched full:fse (Results 1 – 25 of 97) sorted by relevance

1234

/external/mesa3d/src/gallium/auxiliary/draw/
Ddraw_pt_fetch_shade_emit.c74 struct fetch_shade_emit *fse = (struct fetch_shade_emit *)middle; in fse_prepare() local
75 struct draw_context *draw = fse->draw; in fse_prepare()
88 fse->vinfo = vinfo = draw->render->get_vertex_info(draw->render); in fse_prepare()
90 fse->key.output_stride = vinfo->size * 4; in fse_prepare()
91 fse->key.nr_outputs = vinfo->num_attribs; in fse_prepare()
92 fse->key.nr_inputs = num_vs_inputs; in fse_prepare()
94 fse->key.nr_elements = MAX2(fse->key.nr_outputs, /* outputs - translate to hw format */ in fse_prepare()
95 fse->key.nr_inputs); /* inputs - fetch from api format */ in fse_prepare()
97 fse->key.viewport = !draw->bypass_viewport; in fse_prepare()
98 fse->key.clip = draw->clip_xy || draw->clip_z || draw->clip_user; in fse_prepare()
[all …]
/external/zstd/doc/
Dzstd_compression_format.md91 - [FSE](#fse)
423 - Previous FSE decoding tables, required by `Repeat_Mode`
660 FSE tables used in `Repeat_Mode` aren't updated.
682 - `Predefined_Mode` : A predefined FSE distribution table is used, defined in
687 - `FSE_Compressed_Mode` : standard FSE compression.
689 …The format of this distribution table is described in [FSE Table Description](#fse-table-descripti…
706 _Codes_ are FSE compressed,
790 FSE bitstreams are read in reverse direction than written. In zstd,
808 FSE decoding requires a 'state' to be carried from symbol to symbol.
809 For more explanation on FSE decoding, see the [FSE section](#fse).
[all …]
Ddecompressor_errata.md26 The zstd decoder incorrectly expects FSE tables when there are 0 sequences present in the block
98 Tiny FSE Table & Block
/external/zstd/lib/common/
Dfse.h2 * FSE : Finite State Entropy codec
67 * FSE detailed API
110 …Provides the maximum possible size of an FSE normalized table, given 'maxSymbolValue' and 'tableLo…
205 (Note : these functions only decompress FSE-compressed blocks.
243 /* FSE buffer bounds */
245 #define FSE_BLOCKBOUND(size) ((size) + ((size)>>7) + 4 /* fse states */ + sizeof(size_t) /* bitCont…
248 /* It is possible to statically allocate FSE CTable/DTable as a table of FSE_CTable/FSE_DTable usin…
258 * FSE advanced API
294 * FSE symbol compression API
346 Your last FSE encoding operation shall be to flush your last state value(s).
[all …]
Dentropy_common.c6 * - FSE+HUF source repository : https://github.com/Cyan4973/FiniteStateEntropy
21 #include "fse.h"
39 * FSE NCount encoding-decoding
269 else { /* header compressed with FSE (normal case) */ in HUF_readStats_body()
Dfse_decompress.c2 * FSE : Finite State Entropy decoder
6 * - FSE source repository : https://github.com/Cyan4973/FiniteStateEntropy
23 #include "fse.h"
261 /* normal FSE decoding mode */ in FSE_decompress_wksp_body()
Ddebug.c3 * Part of FSE library
/external/zstd/doc/educational_decoder/
Dzstd_decompress.c140 /// Read bits from the end of a HUF or FSE bitstream. `offset` is in bits, so
199 /*** FSE PRIMITIVES *******************/
200 /// For more description of FSE see
203 // FSE table decoding uses exponential memory, so limit the maximum accuracy
208 /// The tables needed to decode FSE encoded streams
236 /// using an FSE decoding table. `src_len` must be the exact length of the
247 /// Decode an FSE header as defined in the Zstandard format specification and
252 /// Initialize an FSE table that will always return the same symbol and consume
258 /*** END FSE PRIMITIVES ***************/
904 // The weights are FSE encoded, decode them before we can construct the in decode_huf_table()
[all …]
Dzstd_decompress.h16 * This includes Huffman and FSE tables used for decoding and data on offsets
58 * Free internal Huffman tables, FSE tables, and dictionary content
DREADME.md11 It also contains implementations of Huffman and FSE table decoding.
/external/zstd/tests/fuzz/
Dfse_read_ncount.c12 * This fuzz target round trips the FSE normalized count with FSE_writeNCount()
26 #include "fse.h"
/external/zstd/lib/compress/
Dfse_compress.c2 * FSE : Finite State Entropy encoder
6 * - FSE source repository : https://github.com/Cyan4973/FiniteStateEntropy
24 #include "../common/fse.h"
94 * https://fastcompression.blogspot.fr/2014/02/fse-distributing-symbol-values.html */ in FSE_buildCTable_wksp()
221 * FSE NCount encoding
344 * FSE Compression Code
Dzstd_compress_sequences.h14 #include "../common/fse.h" /* FSE_repeat, FSE_CTable */
Dzstd_compress.c19 #include "../common/fse.h"
1914 bs->entropy.fse.offcode_repeatMode = FSE_repeat_none; in ZSTD_reset_compressedBlockState()
1915 bs->entropy.fse.matchlength_repeatMode = FSE_repeat_none; in ZSTD_reset_compressedBlockState()
1916 bs->entropy.fse.litlength_repeatMode = FSE_repeat_none; in ZSTD_reset_compressedBlockState()
2887 FSE_CTable* CTable_LitLength = nextEntropy->fse.litlengthCTable; in ZSTD_entropyCompressSeqStore_internal()
2888 FSE_CTable* CTable_OffsetBits = nextEntropy->fse.offcodeCTable; in ZSTD_entropyCompressSeqStore_internal()
2889 FSE_CTable* CTable_MatchLength = nextEntropy->fse.matchlengthCTable; in ZSTD_entropyCompressSeqStore_internal()
2946 ZSTD_memcpy(&nextEntropy->fse, &prevEntropy->fse, sizeof(prevEntropy->fse)); in ZSTD_entropyCompressSeqStore_internal()
2953 &prevEntropy->fse, &nextEntropy->fse, in ZSTD_entropyCompressSeqStore_internal()
3691 * Stores symbol compression modes and fse table to fseMetadata.
[all …]
Dzstd_compress_superblock.c18 #include "zstd_compress_internal.h" /* ZSTD_[huf|fse|entropy]CTablesMetadata_t */
193 /* seqHead : flags for FSE encoding type */ in ZSTD_compressSubBlock_sequences()
288 { size_t cSeqSize = ZSTD_compressSubBlock_sequences(&entropy->fse, in ZSTD_compressSubBlock()
412 … nbSeq, &entropy->fse, &entropyMetadata->fseMetadata, in ZSTD_estimateSubBlockSize()
Dhist.h7 * - FSE source repository : https://github.com/Cyan4973/FiniteStateEntropy
/external/zstd/contrib/snap/
Dsnapcraft.yaml8 Huff0 and FSE library
/external/zstd/contrib/linux-kernel/
Dzstd_common_module.c15 #include "common/fse.h"
/external/zstd/lib/legacy/
Dzstd_v06.c53 - FSE source repository : https://github.com/Cyan4973/FiniteStateEntropy
562 FSE : Finite State Entropy codec
604 * FSE simple functions
607 Decompress FSE data from buffer 'cSrc', of size 'cSrcSize',
632 * FSE detailed API
677 (Note : these functions only decompress FSE-compressed blocks.
710 Part of FSE library
945 FSE : Finite State Entropy coder
989 /* FSE buffer bounds */
994 /* It is possible to statically allocate FSE CTable/DTable as a table of unsigned using below macro…
[all …]
Dzstd_v04.c352 FSE : Finite State Entropy coder
370 * FSE simple functions
376 Decompress FSE data from buffer 'cSrc', of size 'cSrcSize',
396 * FSE detailed API
450 (Note : these functions only decompress FSE-compressed blocks.
724 FSE : Finite State Entropy coder
768 /* FSE buffer bounds */
773 /* It is possible to statically allocate FSE CTable/DTable as a table of unsigned using below macro…
779 * FSE advanced API
790 * FSE symbol decompression API
[all …]
Dzstd_v07.c214 - FSE source repository : https://github.com/Cyan4973/FiniteStateEntropy
383 Part of FSE library
614 FSE : Finite State Entropy codec
656 * FSE simple functions
660 Decompress FSE data from buffer 'cSrc', of size 'cSrcSize',
679 * FSE detailed API
723 (Note : these functions only decompress FSE-compressed blocks.
755 /* FSE buffer bounds */
759 /* It is possible to statically allocate FSE CTable/DTable as a table of unsigned using below macro…
764 * FSE advanced API
[all …]
/external/zstd/lib/decompress/
Dzstd_decompress_block.h53 * generate FSE decoding table for one symbol (ll, ml or off)
Dzstd_decompress_block.c22 #include "../common/fse.h"
354 /* Default FSE distribution tables.
355 …* These are pre-calculated FSE decoding tables using default distributions as defined in specifica…
363 /* Default FSE distribution table for Literal Lengths */
401 /* Default FSE distribution table for Offset Codes */
424 /* Default FSE distribution table for Match Lengths */
481 * generate FSE decoding table for one symbol (ll, ml or off)
672 /* prefetch FSE table if used */ in ZSTD_buildSeqTable()
728 /* FSE table descriptors */ in ZSTD_decodeSeqHeaders()
1336 /* don't update FSE state for last Sequence */ in ZSTD_decodeSequence()
/external/lzma/C/
DZstdDec.c1364 CZstdDecFseTables fse;
1986 #define FSE_TABLE(n) fse. n
1987 const CZstdDecFseTables fse = p->fse;
1989 CZstdDecFseTables fse;
1991 memcpy(fse. n, p->fse. n, (size_t)4 << p-> n ## _accuracy);
1997 #define FSE_TABLE(n) (p->fse. n)
2531 p->fse.ll,
2543 p->fse.of,
2557 p->fse.ml,
2570 p->fse.ml[0] += 3;
[all …]
/external/zstd/lib/
DBUCK109 ('common', 'fse.h'),

1234