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:bitStream
(Results
1 - 4
of
4
) sorted by relevance
/kernel/linux/linux-5.10/lib/zstd/
H
A
D
entropy_common.c
67
U32
bitStream
;
in FSE_readNCount()
local
74
bitStream
= ZSTD_readLE32(ip);
in FSE_readNCount()
75
nbBits = (
bitStream
& 0xF) + FSE_MIN_TABLELOG; /* extract tableLog */
in FSE_readNCount()
78
bitStream
>>= 4;
in FSE_readNCount()
88
while ((
bitStream
& 0xFFFF) == 0xFFFF) {
in FSE_readNCount()
92
bitStream
= ZSTD_readLE32(ip) >> bitCount;
in FSE_readNCount()
94
bitStream
>>= 16;
in FSE_readNCount()
98
while ((
bitStream
& 3) == 3) {
in FSE_readNCount()
100
bitStream
>>= 2;
in FSE_readNCount()
103
n0 +=
bitStream
in FSE_readNCount()
[all...]
H
A
D
fse_compress.c
213
U32
bitStream
;
in FSE_writeNCount_generic()
local
218
bitStream
= 0;
in FSE_writeNCount_generic()
221
bitStream
+= (tableLog - FSE_MIN_TABLELOG) << bitCount;
in FSE_writeNCount_generic()
236
bitStream
+= 0xFFFFU << bitCount;
in FSE_writeNCount_generic()
239
out[0] = (BYTE)
bitStream
;
in FSE_writeNCount_generic()
240
out[1] = (BYTE)(
bitStream
>> 8);
in FSE_writeNCount_generic()
242
bitStream
>>= 16;
in FSE_writeNCount_generic()
246
bitStream
+= 3 << bitCount;
in FSE_writeNCount_generic()
249
bitStream
+= (charnum - start) << bitCount;
in FSE_writeNCount_generic()
254
out[0] = (BYTE)
bitStream
;
in FSE_writeNCount_generic()
[all...]
/kernel/linux/linux-6.6/lib/zstd/common/
H
A
D
entropy_common.c
68
U32
bitStream
;
in FSE_readNCount_body()
local
88
bitStream
= MEM_readLE32(ip);
in FSE_readNCount_body()
89
nbBits = (
bitStream
& 0xF) + FSE_MIN_TABLELOG; /* extract tableLog */
in FSE_readNCount_body()
91
bitStream
>>= 4;
in FSE_readNCount_body()
105
int repeats = FSE_ctz(~
bitStream
| 0x80000000) >> 1;
in FSE_readNCount_body()
115
bitStream
= MEM_readLE32(ip) >> bitCount;
in FSE_readNCount_body()
116
repeats = FSE_ctz(~
bitStream
| 0x80000000) >> 1;
in FSE_readNCount_body()
119
bitStream
>>= 2 * repeats;
in FSE_readNCount_body()
123
assert((
bitStream
& 3) < 3);
in FSE_readNCount_body()
124
charnum +=
bitStream
in FSE_readNCount_body()
[all...]
/kernel/linux/linux-6.6/lib/zstd/compress/
H
A
D
fse_compress.c
244
U32
bitStream
= 0;
in FSE_writeNCount_generic()
local
251
bitStream
+= (tableLog-FSE_MIN_TABLELOG) << bitCount;
in FSE_writeNCount_generic()
266
bitStream
+= 0xFFFFU << bitCount;
in FSE_writeNCount_generic()
269
out[0] = (BYTE)
bitStream
;
in FSE_writeNCount_generic()
270
out[1] = (BYTE)(
bitStream
>>8);
in FSE_writeNCount_generic()
272
bitStream
>>=16;
in FSE_writeNCount_generic()
276
bitStream
+= 3 << bitCount;
in FSE_writeNCount_generic()
279
bitStream
+= (symbol-start) << bitCount;
in FSE_writeNCount_generic()
284
out[0] = (BYTE)
bitStream
;
in FSE_writeNCount_generic()
285
out[1] = (BYTE)(
bitStream
>>
in FSE_writeNCount_generic()
[all...]
Completed in 3 milliseconds