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:cLitSize
(Results
1 - 3
of
3
) sorted by relevance
/kernel/linux/linux-6.6/lib/zstd/compress/
H
A
D
zstd_compress_literals.c
84
size_t
cLitSize
;
in ZSTD_compressLiterals()
local
105
cLitSize
= singleStream ?
in ZSTD_compressLiterals()
121
if ((
cLitSize
==0) || (
cLitSize
>= srcSize - minGain) || ERR_isError(
cLitSize
)) {
in ZSTD_compressLiterals()
125
if (
cLitSize
==1) {
in ZSTD_compressLiterals()
139
{ U32 const lhc = hType + ((!singleStream) << 2) + ((U32)srcSize<<4) + ((U32)
cLitSize
<<14);
in ZSTD_compressLiterals()
144
{ U32 const lhc = hType + (2 << 2) + ((U32)srcSize<<4) + ((U32)
cLitSize
<<18);
in ZSTD_compressLiterals()
149
{ U32 const lhc = hType + (3 << 2) + ((U32)srcSize<<4) + ((U32)
cLitSize
<<22);
in ZSTD_compressLiterals()
151
ostart[4] = (BYTE)(
cLitSize
>> 1
in ZSTD_compressLiterals()
[all...]
H
A
D
zstd_compress_superblock.c
54
size_t
cLitSize
= 0;
in ZSTD_compressSubBlock_literal()
local
75
cLitSize
+= hufMetadata->hufDesSize;
in ZSTD_compressSubBlock_literal()
83
cLitSize
+= cSize;
in ZSTD_compressSubBlock_literal()
89
if (!writeEntropy &&
cLitSize
>= litSize) {
in ZSTD_compressSubBlock_literal()
94
if (lhSize < (size_t)(3 + (
cLitSize
>= 1 KB) + (
cLitSize
>= 16 KB))) {
in ZSTD_compressSubBlock_literal()
95
assert(
cLitSize
> litSize);
in ZSTD_compressSubBlock_literal()
106
{ U32 const lhc = hType + ((!singleStream) << 2) + ((U32)litSize<<4) + ((U32)
cLitSize
<<14);
in ZSTD_compressSubBlock_literal()
111
{ U32 const lhc = hType + (2 << 2) + ((U32)litSize<<4) + ((U32)
cLitSize
<<18);
in ZSTD_compressSubBlock_literal()
116
{ U32 const lhc = hType + (3 << 2) + ((U32)litSize<<4) + ((U32)
cLitSize
<<2
in ZSTD_compressSubBlock_literal()
276
{ size_t
cLitSize
= ZSTD_compressSubBlock_literal((const HUF_CElt*)entropy->huf.CTable,
ZSTD_compressSubBlock()
local
[all...]
/kernel/linux/linux-5.10/lib/zstd/
H
A
D
compress.c
489
size_t
cLitSize
;
in ZSTD_compressLiterals()
local
506
cLitSize
= singleStream ? HUF_compress1X_repeat(ostart + lhSize, dstCapacity - lhSize, src, srcSize, 255, 11, zc->tmpCounters,
in ZSTD_compressLiterals()
518
if ((
cLitSize
== 0) | (
cLitSize
>= srcSize - minGain)) {
in ZSTD_compressLiterals()
522
if (
cLitSize
== 1) {
in ZSTD_compressLiterals()
531
U32 const lhc = hType + ((!singleStream) << 2) + ((U32)srcSize << 4) + ((U32)
cLitSize
<< 14);
in ZSTD_compressLiterals()
537
U32 const lhc = hType + (2 << 2) + ((U32)srcSize << 4) + ((U32)
cLitSize
<< 18);
in ZSTD_compressLiterals()
544
U32 const lhc = hType + (3 << 2) + ((U32)srcSize << 4) + ((U32)
cLitSize
<< 22);
in ZSTD_compressLiterals()
546
ostart[4] = (BYTE)(
cLitSize
>> 10);
in ZSTD_compressLiterals()
550
return lhSize +
cLitSize
;
in ZSTD_compressLiterals()
[all...]
Completed in 5 milliseconds