Home
last modified time | relevance | path

Searched refs:symbolValue (Results 1 – 20 of 20) sorted by relevance

/freebsd/sys/contrib/openzfs/module/zstd/lib/common/
H A Dfse.h320 size_t FSE_buildCTable_rle (FSE_CTable* ct, unsigned char symbolValue);
332 size_t FSE_buildDTable_rle (FSE_DTable* dt, unsigned char symbolValue);
535 MEM_STATIC U32 FSE_getMaxNbBits(const void* symbolTTPtr, U32 symbolValue) in FSE_getMaxNbBits() argument
538 return (symbolTT[symbolValue].deltaNbBits + ((1<<16)-1)) >> 16; in FSE_getMaxNbBits()
545 MEM_STATIC U32 FSE_bitCost(const void* symbolTTPtr, U32 tableLog, U32 symbolValue, U32 accuracyLog) in FSE_bitCost() argument
548 U32 const minNbBits = symbolTT[symbolValue].deltaNbBits >> 16; in FSE_bitCost()
553 U32 const deltaFromThreshold = threshold - (symbolTT[symbolValue].deltaNbBits + tableSize); in FSE_bitCost()
556 assert(symbolTT[symbolValue].deltaNbBits + tableSize <= threshold); in FSE_bitCost()
H A Dfse_decompress.c122 size_t FSE_buildDTable_rle (FSE_DTable* dt, BYTE symbolValue) in FSE_buildDTable_rle() argument
133 cell->symbol = symbolValue; in FSE_buildDTable_rle()
H A Dhuf.h237 U32 HUF_getNbBits(const void* symbolTable, U32 symbolValue);
/freebsd/sys/contrib/zstd/lib/common/
H A Dfse.h333 size_t FSE_buildCTable_rle (FSE_CTable* ct, unsigned char symbolValue);
353 size_t FSE_buildDTable_rle (FSE_DTable* dt, unsigned char symbolValue);
561 MEM_STATIC U32 FSE_getMaxNbBits(const void* symbolTTPtr, U32 symbolValue) in FSE_getMaxNbBits() argument
564 return (symbolTT[symbolValue].deltaNbBits + ((1<<16)-1)) >> 16; in FSE_getMaxNbBits()
571 MEM_STATIC U32 FSE_bitCost(const void* symbolTTPtr, U32 tableLog, U32 symbolValue, U32 accuracyLog) in FSE_bitCost() argument
574 U32 const minNbBits = symbolTT[symbolValue].deltaNbBits >> 16; in FSE_bitCost()
579 U32 const deltaFromThreshold = threshold - (symbolTT[symbolValue].deltaNbBits + tableSize); in FSE_bitCost()
582 assert(symbolTT[symbolValue].deltaNbBits + tableSize <= threshold); in FSE_bitCost()
H A Dfse_decompress.c187 size_t FSE_buildDTable_rle (FSE_DTable* dt, BYTE symbolValue) in FSE_buildDTable_rle() argument
198 cell->symbol = symbolValue; in FSE_buildDTable_rle()
H A Dhuf.h253 U32 HUF_getNbBitsFromCTable(const HUF_CElt* symbolTable, U32 symbolValue);
/freebsd/contrib/llvm-project/llvm/include/llvm-c/
H A DSupport.h64 void LLVMAddSymbol(const char *symbolName, void *symbolValue);
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DDynamicLibrary.cpp251 void LLVMAddSymbol(const char *symbolName, void *symbolValue) { in LLVMAddSymbol() argument
252 return llvm::sys::DynamicLibrary::AddSymbol(symbolName, symbolValue); in LLVMAddSymbol()
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/
H A DDynamicLibrary.h146 static void AddSymbol(StringRef symbolName, void *symbolValue);
/freebsd/sys/contrib/openzfs/module/zstd/lib/compress/
H A Dfse_compress.c531 size_t FSE_buildCTable_rle (FSE_CTable* ct, BYTE symbolValue) in FSE_buildCTable_rle() argument
540 tableU16[-1] = (U16) symbolValue; in FSE_buildCTable_rle()
547 symbolTT[symbolValue].deltaNbBits = 0; in FSE_buildCTable_rle()
548 symbolTT[symbolValue].deltaFindState = 0; in FSE_buildCTable_rle()
H A Dhuf_compress.c200 U32 HUF_getNbBits(const void* symbolTable, U32 symbolValue) in HUF_getNbBits() argument
203 assert(symbolValue <= HUF_SYMBOLVALUE_MAX); in HUF_getNbBits()
204 return table[symbolValue].nbBits; in HUF_getNbBits()
/freebsd/sys/contrib/zstd/lib/compress/
H A Dfse_compress.c570 size_t FSE_buildCTable_rle (FSE_CTable* ct, BYTE symbolValue) in FSE_buildCTable_rle() argument
579 tableU16[-1] = (U16) symbolValue; in FSE_buildCTable_rle()
586 symbolTT[symbolValue].deltaNbBits = 0; in FSE_buildCTable_rle()
587 symbolTT[symbolValue].deltaFindState = 0; in FSE_buildCTable_rle()
H A Dhuf_compress.c273 U32 HUF_getNbBitsFromCTable(HUF_CElt const* CTable, U32 symbolValue) in HUF_getNbBitsFromCTable() argument
276 assert(symbolValue <= HUF_SYMBOLVALUE_MAX); in HUF_getNbBitsFromCTable()
277 return (U32)HUF_getNbBits(ct[symbolValue]); in HUF_getNbBitsFromCTable()
/freebsd/sys/contrib/zstd/lib/legacy/
H A Dzstd_v03.c667 static size_t FSE_buildDTable_rle (FSE_DTable* dt, unsigned char symbolValue);
1295 static size_t FSE_buildDTable_rle (FSE_DTable* dt, BYTE symbolValue) in FSE_buildDTable_rle() argument
1305 cell->symbol = symbolValue; in FSE_buildDTable_rle()
H A Dzstd_v02.c665 static size_t FSE_buildDTable_rle (FSE_DTable* dt, unsigned char symbolValue);
1294 static size_t FSE_buildDTable_rle (FSE_DTable* dt, BYTE symbolValue) in FSE_buildDTable_rle() argument
1304 cell->symbol = symbolValue; in FSE_buildDTable_rle()
H A Dzstd_v04.c840 static size_t FSE_buildDTable_rle (FSE_DTable* dt, unsigned char symbolValue);
1272 static size_t FSE_buildDTable_rle (FSE_DTable* dt, BYTE symbolValue) in FSE_buildDTable_rle() argument
1283 cell->symbol = symbolValue; in FSE_buildDTable_rle()
H A Dzstd_v01.c594 static size_t FSE_buildDTable_rle (FSE_DTable* dt, BYTE symbolValue) in FSE_buildDTable_rle() argument
604 cell->symbol = symbolValue; in FSE_buildDTable_rle()
H A Dzstd_v05.c955 size_t FSEv05_buildDTable_rle (FSEv05_DTable* dt, unsigned char symbolValue);
1380 size_t FSEv05_buildDTable_rle (FSEv05_DTable* dt, BYTE symbolValue) in FSEv05_buildDTable_rle() argument
1391 cell->symbol = symbolValue; in FSEv05_buildDTable_rle()
H A Dzstd_v06.c1063 size_t FSEv06_buildDTable_rle (FSEv06_DTable* dt, unsigned char symbolValue);
1523 size_t FSEv06_buildDTable_rle (FSEv06_DTable* dt, BYTE symbolValue) in FSEv06_buildDTable_rle() argument
1534 cell->symbol = symbolValue; in FSEv06_buildDTable_rle()
H A Dzstd_v07.c830 size_t FSEv07_buildDTable_rle (FSEv07_DTable* dt, unsigned char symbolValue);
1543 size_t FSEv07_buildDTable_rle (FSEv07_DTable* dt, BYTE symbolValue) in FSEv07_buildDTable_rle() argument
1554 cell->symbol = symbolValue; in FSEv07_buildDTable_rle()