Home
Sort by
last modified time
|
relevance
|
path
Repository(s)
applications
arkcompiler
base
build
commonlibrary
developtools
device
docs
domains
drivers
foundation
ide
interface
kernel
napi_generator
productdefine
test
third_party
vendor
select all
invert selection
clear
Full Search
Search through all text tokens(words,strings,identifiers,numbers) in index.
Definition
Only finds symbol definitions(where e.g a variable(function,...) is defined).
Symbol
Only finds symbol(e.g. methods classes,function,variables).
File Path
Path of the source file(use "/").If you want just exact path,enclose it in "".Source files end with: .jar/.bz2/.a/.h/.java...
History
History log comments.
Type
Any
Bzip(2)
C
Clojure
C#
C++
ELF
Erlang
Image file
Fortran
Golang
GZIP
Haskell
Jar
Java
Java class
JavaScript
Lisp
Lua
Pascal
Perl
PHP
Plain Text
PL/SQL
Python
Rust
Scala
Shell script
SQL
Tar
Tcl
Troff
UUEncoded
Visual Basic
XML
Zip
Type of analyzer used to filter file types include with selected(e.g. just C sources).
Help
Searched
refs:BIT_highbit32
(Results
1 - 12
of
12
) sorted by relevance
/kernel/linux/linux-5.10/lib/zstd/
H
A
D
entropy_common.c
219
U32 const tableLog =
BIT_highbit32
(weightTotal) + 1;
in HUF_readStats_wksp()
227
U32 const verif = 1 <<
BIT_highbit32
(rest);
in HUF_readStats_wksp()
228
U32 const lastWeight =
BIT_highbit32
(rest) + 1;
in HUF_readStats_wksp()
H
A
D
bitstream.h
148
ZSTD_STATIC unsigned
BIT_highbit32
(register U32 val) { return 31 - __builtin_clz(val); }
in BIT_highbit32()
function
252
bitD->bitsConsumed = lastByte ? 8 -
BIT_highbit32
(lastByte) : 0; /* ensures bitsConsumed is always set */
in BIT_initDStream()
276
bitD->bitsConsumed = lastByte ? 8 -
BIT_highbit32
(lastByte) : 0;
in BIT_initDStream()
H
A
D
fse_compress.c
181
U32 const maxBitsOut = tableLog -
BIT_highbit32
(normalizedCounter[s] - 1);
in FSE_buildCTable_wksp()
487
U32 minBitsSrc =
BIT_highbit32
((U32)(srcSize - 1)) + 1;
in FSE_minTableLog()
488
U32 minBitsSymbols =
BIT_highbit32
(maxSymbolValue) + 2;
in FSE_minTableLog()
495
U32 maxBitsSrc =
BIT_highbit32
((U32)(srcSize - 1)) - minus;
in FSE_optimalTableLog_internal()
H
A
D
huf_compress.c
332
U32 nBitsToDecrease =
BIT_highbit32
(totalCost) + 1;
in HUF_setMaxHeight()
396
U32 r =
BIT_highbit32
(count[n] + 1);
in HUF_sort()
405
U32 const r =
BIT_highbit32
(c + 1) + 1;
in HUF_sort()
H
A
D
fse_decompress.c
152
tableDecode[u].nbBits = (BYTE)(tableLog -
BIT_highbit32
((U32)nextState));
in FSE_buildDTable_wksp()
/kernel/linux/linux-6.6/lib/zstd/common/
H
A
D
entropy_common.c
181
nbBits =
BIT_highbit32
(remaining) + 1;
in FSE_readNCount_body()
304
{ U32 const tableLog =
BIT_highbit32
(weightTotal) + 1;
in HUF_readStats_body()
310
U32 const verif = 1 <<
BIT_highbit32
(rest);
in HUF_readStats_body()
311
U32 const lastWeight =
BIT_highbit32
(rest) + 1;
in HUF_readStats_body()
H
A
D
bitstream.h
130
MEM_STATIC unsigned
BIT_highbit32
(U32 val)
in BIT_highbit32()
function
269
bitD->bitsConsumed = lastByte ? 8 -
BIT_highbit32
(lastByte) : 0; /* ensures bitsConsumed is always set */
in BIT_initDStream()
297
bitD->bitsConsumed = lastByte ? 8 -
BIT_highbit32
(lastByte) : 0;
in BIT_initDStream()
H
A
D
fse_decompress.c
169
tableDecode[u].nbBits = (BYTE) (tableLog -
BIT_highbit32
(nextState) );
in FSE_buildDTable_internal()
/kernel/linux/linux-6.6/lib/zstd/compress/
H
A
D
fse_compress.c
194
{ U32 const maxBitsOut = tableLog -
BIT_highbit32
((U32)normalizedCounter[s]-1);
in FSE_buildCTable_wksp()
358
U32 minBitsSrc =
BIT_highbit32
((U32)(srcSize)) + 1;
in FSE_minTableLog()
359
U32 minBitsSymbols =
BIT_highbit32
(maxSymbolValue) + 2;
in FSE_minTableLog()
367
U32 maxBitsSrc =
BIT_highbit32
((U32)(srcSize - 1)) - minus;
in FSE_optimalTableLog_internal()
H
A
D
huf_compress.c
354
U32 nBitsToDecrease =
BIT_highbit32
((U32)totalCost) + 1;
in HUF_setMaxHeight()
452
#define RANK_POSITION_DISTINCT_COUNT_CUTOFF RANK_POSITION_LOG_BUCKETS_BEGIN +
BIT_highbit32
(RANK_POSITION_LOG_BUCKETS_BEGIN) /* == 166 */
460
:
BIT_highbit32
(count) + RANK_POSITION_LOG_BUCKETS_BEGIN;
in HUF_getIndex()
807
size_t const dirtyBits = nbBits == 0 ? 0 :
BIT_highbit32
((U32)nbBits) + 1;
in HUF_addBits()
/kernel/linux/linux-6.6/lib/zstd/decompress/
H
A
D
huf_decompress.c
141
size_t const bitsConsumed = lastByte ? 8 -
BIT_highbit32
(lastByte) : 0;
in HUF_initDStream()
H
A
D
zstd_decompress_block.c
554
tableDecode[u].nbBits = (BYTE) (tableLog -
BIT_highbit32
(nextState) );
in ZSTD_buildFSETable_body()
Completed in 18 milliseconds