| /external/mesa3d/src/gallium/auxiliary/draw/ |
| D | draw_pt_fetch_shade_emit.c | 74 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/ |
| D | zstd_compression_format.md | 91 - [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 …]
|
| D | decompressor_errata.md | 26 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/ |
| D | fse.h | 2 * 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 …]
|
| D | entropy_common.c | 6 * - 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()
|
| D | fse_decompress.c | 2 * 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()
|
| D | debug.c | 3 * Part of FSE library
|
| /external/zstd/doc/educational_decoder/ |
| D | zstd_decompress.c | 140 /// 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 …]
|
| D | zstd_decompress.h | 16 * This includes Huffman and FSE tables used for decoding and data on offsets 58 * Free internal Huffman tables, FSE tables, and dictionary content
|
| D | README.md | 11 It also contains implementations of Huffman and FSE table decoding.
|
| /external/zstd/tests/fuzz/ |
| D | fse_read_ncount.c | 12 * This fuzz target round trips the FSE normalized count with FSE_writeNCount() 26 #include "fse.h"
|
| /external/zstd/lib/compress/ |
| D | fse_compress.c | 2 * 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
|
| D | zstd_compress_sequences.h | 14 #include "../common/fse.h" /* FSE_repeat, FSE_CTable */
|
| D | zstd_compress.c | 19 #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 …]
|
| D | zstd_compress_superblock.c | 18 #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()
|
| D | hist.h | 7 * - FSE source repository : https://github.com/Cyan4973/FiniteStateEntropy
|
| /external/zstd/contrib/snap/ |
| D | snapcraft.yaml | 8 Huff0 and FSE library
|
| /external/zstd/contrib/linux-kernel/ |
| D | zstd_common_module.c | 15 #include "common/fse.h"
|
| /external/zstd/lib/legacy/ |
| D | zstd_v06.c | 53 - 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 …]
|
| D | zstd_v04.c | 352 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 …]
|
| D | zstd_v07.c | 214 - 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/ |
| D | zstd_decompress_block.h | 53 * generate FSE decoding table for one symbol (ll, ml or off)
|
| D | zstd_decompress_block.c | 22 #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/ |
| D | ZstdDec.c | 1364 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/ |
| D | BUCK | 109 ('common', 'fse.h'),
|