Home
last modified time | relevance | path

Searched full:fse (Results 1 – 25 of 82) 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()
89 fse->vinfo = vinfo = draw->render->get_vertex_info(draw->render); in fse_prepare()
91 fse->key.output_stride = vinfo->size * 4; in fse_prepare()
92 fse->key.nr_outputs = vinfo->num_attribs; in fse_prepare()
93 fse->key.nr_inputs = num_vs_inputs; in fse_prepare()
95 fse->key.nr_elements = MAX2(fse->key.nr_outputs, /* outputs - translate to hw format */ in fse_prepare()
96 fse->key.nr_inputs); /* inputs - fetch from api format */ in fse_prepare()
98 fse->key.viewport = !draw->bypass_viewport; in fse_prepare()
99 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`
634 The FSE tables used in `Repeat_Mode` aren't updated.
658 - `Predefined_Mode` : A predefined FSE distribution table is used, defined in
663 - `FSE_Compressed_Mode` : standard FSE compression.
665 …The format of this distribution table is described in [FSE Table Description](#fse-table-descripti…
682 _Codes_ are FSE compressed,
766 FSE bitstreams are read in reverse direction than written. In zstd,
784 FSE decoding requires a 'state' to be carried from symbol to symbol.
785 For more explanation on FSE decoding, see the [FSE section](#fse).
[all …]
/external/zstd/lib/common/
Dfse.h2 * FSE : Finite State Entropy codec
57 * FSE simple functions
71 Decompress FSE data from buffer 'cSrc', of size 'cSrcSize',
95 * FSE advanced functions
109 * FSE detailed API
152 …Provides the maximum possible size of an FSE normalized table, given 'maxSymbolValue' and 'tableLo…
265 (Note : these functions only decompress FSE-compressed blocks.
302 /* FSE buffer bounds */
304 #define FSE_BLOCKBOUND(size) ((size) + ((size)>>7) + 4 /* fse states */ + sizeof(size_t) /* bitCont…
307 /* It is possible to statically allocate FSE CTable/DTable as a table of FSE_CTable/FSE_DTable usin…
[all …]
Dentropy_common.c6 * - FSE+HUF source repository : https://github.com/Cyan4973/FiniteStateEntropy
21 #include "fse.h"
39 * FSE NCount encoding-decoding
297 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"
334 /* normal FSE decoding mode */ in FSE_decompress_wksp_body()
Ddebug.c3 * Part of FSE library
Dhuf.h61 * Note : in contrast with FSE, HUF_decompress can regenerate
115 #include "fse.h"
178 …count symbol occurrence from source[] into table count[] using FSE_count() (exposed within "fse.h")
Ddebug.h3 * 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"
93 * http://fastcompression.blogspot.fr/2014/02/fse-distributing-symbol-values.html */ in FSE_buildCTable_wksp()
220 * FSE NCount encoding
342 * FSE Compression Code
Dzstd_compress.c18 #include "../common/fse.h"
1673 bs->entropy.fse.offcode_repeatMode = FSE_repeat_none; in ZSTD_reset_compressedBlockState()
1674 bs->entropy.fse.matchlength_repeatMode = FSE_repeat_none; in ZSTD_reset_compressedBlockState()
1675 bs->entropy.fse.litlength_repeatMode = FSE_repeat_none; in ZSTD_reset_compressedBlockState()
2585 FSE_CTable* CTable_LitLength = nextEntropy->fse.litlengthCTable; in ZSTD_entropyCompressSeqStore_internal()
2586 FSE_CTable* CTable_OffsetBits = nextEntropy->fse.offcodeCTable; in ZSTD_entropyCompressSeqStore_internal()
2587 FSE_CTable* CTable_MatchLength = nextEntropy->fse.matchlengthCTable; in ZSTD_entropyCompressSeqStore_internal()
2642 ZSTD_memcpy(&nextEntropy->fse, &prevEntropy->fse, sizeof(prevEntropy->fse)); in ZSTD_entropyCompressSeqStore_internal()
2650 &prevEntropy->fse, &nextEntropy->fse, in ZSTD_entropyCompressSeqStore_internal()
3170 * 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 */
189 /* seqHead : flags for FSE encoding type */ in ZSTD_compressSubBlock_sequences()
283 { size_t cSeqSize = ZSTD_compressSubBlock_sequences(&entropy->fse, in ZSTD_compressSubBlock()
402 … nbSeq, &entropy->fse, &entropyMetadata->fseMetadata, in ZSTD_estimateSubBlockSize()
Dzstd_compress_sequences.h14 #include "../common/fse.h" /* FSE_repeat, FSE_CTable */
Dhist.h7 * - FSE source repository : https://github.com/Cyan4973/FiniteStateEntropy
/external/zstd/contrib/snap/
Dsnapcraft.yaml8 Huff0 and FSE library
/external/zstd/lib/legacy/
Dzstd_v06.c52 - FSE source repository : https://github.com/Cyan4973/FiniteStateEntropy
618 FSE : Finite State Entropy codec
660 * FSE simple functions
663 Decompress FSE data from buffer 'cSrc', of size 'cSrcSize',
688 * FSE detailed API
733 (Note : these functions only decompress FSE-compressed blocks.
766 Part of FSE library
1001 FSE : Finite State Entropy coder
1045 /* FSE buffer bounds */
1050 /* It is possible to statically allocate FSE CTable/DTable as a table of unsigned using below macro…
[all …]
Dzstd_v04.c408 FSE : Finite State Entropy coder
426 * FSE simple functions
432 Decompress FSE data from buffer 'cSrc', of size 'cSrcSize',
452 * FSE detailed API
506 (Note : these functions only decompress FSE-compressed blocks.
780 FSE : Finite State Entropy coder
824 /* FSE buffer bounds */
829 /* It is possible to statically allocate FSE CTable/DTable as a table of unsigned using below macro…
835 * FSE advanced API
846 * FSE symbol decompression API
[all …]
Dzstd_v07.c213 - FSE source repository : https://github.com/Cyan4973/FiniteStateEntropy
438 Part of FSE library
669 FSE : Finite State Entropy codec
711 * FSE simple functions
715 Decompress FSE data from buffer 'cSrc', of size 'cSrcSize',
734 * FSE detailed API
778 (Note : these functions only decompress FSE-compressed blocks.
810 /* FSE buffer bounds */
814 /* It is possible to statically allocate FSE CTable/DTable as a table of unsigned using below macro…
819 * FSE advanced API
[all …]
Dzstd_v03.c58 - FSE source repository : https://github.com/Cyan4973/FiniteStateEntropy
610 FSE : Finite State Entropy coder
651 /* FSE buffer bounds */
656 /* You can statically allocate FSE CTable/DTable as a table of unsigned using below macro */
662 * FSE advanced API
672 * FSE symbol decompression API
689 * FSE unsafe API
947 FSE : Finite State Entropy coder
976 - FSE source repository : https://github.com/Cyan4973/FiniteStateEntropy
1166 * FSE helper functions
[all …]
/external/zstd/lib/decompress/
Dzstd_decompress_block.h53 * generate FSE decoding table for one symbol (ll, ml or off)
/external/zstd/lib/
DBUCK109 ('common', 'fse.h'),
/external/python/cffi/cffi/
Dpkgconfig.py104 fse = sys.getfilesystemencoding()

1234