OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:FSE_CTable
(Results
1 - 4
of
4
) sorted by relevancy
/src/external/bsd/zstd/dist/lib/common/
fse.h
122
/*! Constructor and Destructor of
FSE_CTable
.
123
Note that
FSE_CTable
size depends on 'tableLog' and 'maxSymbolValue' */
124
typedef unsigned
FSE_CTable
; /* don't allocate that. It's only meant to be more restrictive than void* */
129
FSE_PUBLIC_API size_t FSE_buildCTable(
FSE_CTable
* ct, const short* normalizedCounter, unsigned maxSymbolValue, unsigned tableLog);
136
FSE_PUBLIC_API size_t FSE_compress_usingCTable (void* dst, size_t dstCapacity, const void* src, size_t srcSize, const
FSE_CTable
* ct);
248
/* It is possible to statically allocate FSE CTable/DTable as a table of
FSE_CTable
/FSE_DTable using below macros */
253
#define FSE_CTABLE_SIZE(maxTableLog, maxSymbolValue) (FSE_CTABLE_SIZE_U32(maxTableLog, maxSymbolValue) * sizeof(
FSE_CTable
))
264
size_t FSE_buildCTable_rle (
FSE_CTable
* ct, unsigned char symbolValue);
265
/**< build a fake
FSE_CTable
, designed to compress always the same symbolValue */
274
size_t FSE_buildCTable_wksp(
FSE_CTable
* ct, const short* normalizedCounter, unsigned maxSymbolValue, unsigned tableLog, void* workSpace, (…)
[
all
...]
/src/external/bsd/zstd/dist/lib/legacy/
zstd_v01.c
58
typedef unsigned
FSE_CTable
; /* don't allocate that. It's just a way to be more restrictive than void* */
zstd_v03.c
541
Constructor and Destructor of type
FSE_CTable
543
typedef unsigned
FSE_CTable
; /* don't allocate that. It's just a way to be more restrictive than void* */
zstd_v02.c
540
Constructor and Destructor of type
FSE_CTable
542
typedef unsigned
FSE_CTable
; /* don't allocate that. It's just a way to be more restrictive than void* */
Completed in 20 milliseconds
Indexes created Fri Mar 06 19:51:54 UTC 2026